/* General Body */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.header {
    position: relative;
}


.logo {
    position: absolute; 
    left: 20px; 
    top: 50%; 
    transform: translateY(-50%); /
}

.logo img {
    height: 100px;
    width: auto;
    position: relative;
    left: 50px;
    top: 50px;
}

/* Header and Footer */
.header {
    text-align: center;
    /* padding: 50px 0; */
    background-color: #f1f1f1;
}


.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 0;
    flex: 1; 
    text-align: center;
}


h1 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

section p {
    padding: 10px;
}


p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.4;
    text-align: justify;
    text-justify: inter-word;
}

p strong {
    font-weight: bold;
    color: #333;
}

p:last-child {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}


.team-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
}

.footer {
    width: 100%;
    overflow: hidden;
}

.footer-image {
    width: 100%;
    height: 310px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {

    .footer-image {
        width: 100em;
        height: 310px;
        display: block;
    }

    .content-container {
        padding: 20px;
    }

    .logo img {
        height: 100px;
        width: auto;
        left: 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    p:last-child {
        font-size: 1.1rem;
    }

    section {
        padding: 80px 15px 15px 15px;
    }

   

}
