
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

header {
    background: #fff;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 90px; /* Add this line if you want a fixed header height */
}

header img {
    height: 60px;
}

/* Mobile optimization */
@media (max-width: 600px) {
    header img {
        height: 50px;
    }
}
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #0077b6;
    font-weight: 600;
}
main {
    padding: 40px 20px;
}
.hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}
h1, h2 {
    color: #0077b6;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #eee;
    font-size: 14px;
}
@media (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: column;
    }
    nav a {
        margin: 5px 0;
    }
}


.logo {
    height: 200px; /* or bigger, like 100px */
    width: auto; /* keeps aspect ratio */
}



.goal-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.goal-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.goal-content {
    display: flex;
    align-items: flex-start; /* top of text and top of image align */
    gap: 30px;
}

.goal-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.8;
}

.goal-image-wrapper img {
    width: 400px; /* or adjust size */
    height: auto;
    border-radius: 8px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .goal-content {
        flex-direction: column;
        align-items: center;
    }

    .goal-image-wrapper img {
        width: 80%;
        margin-top: 20px;
    }
}





.team-member {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 40px auto;
}

.member-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.8;
}

.member-photo img {
    width: 150px; /* Smaller photo */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        align-items: center;
    }

    .member-photo img {
        width: 60%;
        margin-top: 20px;
    }
}




.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #0077b6; /* blue */
    border-radius: 50%;
}



.just_a_box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 40px auto;
}

@media (max-width: 768px) {
    .just_a_box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}



.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #0077b6;
    color: white;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #005f8a;
}
