/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.leadership-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.text-section {
    flex: 1;
    padding: 20px;
    /* background: linear-gradient(90deg, #002c5e 50%, #ff6a00 50%); */
    color: #1a1919;
    border-radius: 8px 0 0 8px;
}

.text-section h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
}

.text-section h3 {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: normal;
}

.text-section ul {
    margin-top: 20px;
    padding-left: 20px;
}

.text-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.image-section {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.image-section img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
}
