*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   /* padding-top: 110px; */
    line-height: 1.6;
    color: #333;
    /* background: url(""); */
    /* background: linear-gradient(90deg, #a8e0f3, #b8e0d2); */
}
/*  */


/*  */
.about-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px;
    /* height: 400px; */
}
.about-header {
    background: url("./images/a\ \(3\).jpeg");
    color: black;
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    opacity: 0.9;
    background-size: cover;
    background-position: center;
    height: 450px;
    background-repeat: no-repeat;
    /* min-width: 100vw; */
}
.about-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.about-header p {
    font-size: 1.2rem;
    margin: 0;
    
}
/* .about-header img {
    position: absolute;
    right: 20px;
    bottom: -30px;
    width: 120px;
    opacity: 0.7;
} */
.about-section {
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    max-width: 1200px;

}
.about-section h2 {
    color: #2a9d8f;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.about-text {
    flex: 1;
    min-width: 300px;
}
.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}
.about-vision {
    background: #e9f5f4;
    padding: 20px;
    border-left: 5px solid #2a9d8f;
    border-radius: 8px;
    text-align: center;
}
.about-cta {
    text-align: center;
    margin: 40px 0;
}
.about-cta a {
    background: #264653;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    display: inline-block;
}
.about-cta a:hover {
    background: #2a9d8f;
}




@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }
    .about-header p {
        font-size: 1rem;
    }
    .about-header img {
        width: 80px;
    }
    .about-section {
        flex-direction: column;
        text-align: center;
    }
    .about-image img {
        margin: 0 auto;
    }
    .about-vision {
        text-align: left;
    }
}
@media (max-width: 480px) {
    .about-header h1 {
        font-size: 1.8rem;
    }
    .about-header p {
        font-size: 0.9rem;
    }
    .about-cta a {
        font-size: 1rem;
        padding: 10px 20px;
    }
}