.about-us{
    width: 100%;
    min-height: 90%;
    background-color: #ede5db;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-us .shape1{
    top: 12%;
    right: 5%;
    left: unset;
}
.about-us .shape2 {
    top: 10%;
    left: 5%;
    right: unset;
}
.about-us h1{
    font-size: 45px;
}
.about-us .hero-content{
    padding: 3% 5%;
    text-align: justify;
}
.vision-mission-section {
    padding: 80px 0;
    text-align: justify;
}
.image-container {
    position: relative;
    margin: 30px 0;
    border: 1px solid #b6b6b6;
    border-radius: 4px;
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

.orange-backdrop {
    position: absolute;
    background-color: #f4a261;
    width: 100%;
    height: 100%;
    top: 20px;
    left: -20px;
    z-index: 1;
    border-radius: 4px;
}

.blue-backdrop {
    position: absolute;
    background-color: #2a9d8f;
    width: 100%;
    height: 100%;
    top: 20px;
    right: -20px;
    z-index: 1;
    border-radius: 8px;
}

.vision-mission-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #264653;
}

.vision-mission-section p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 30px;
    }
    
    h2 {
        font-size: 2rem;
    }

    .image-container {
        margin: 15px 0;
    }

    .orange-backdrop, .blue-backdrop {
        top: 10px;
        right: -10px;
    }

    .blue-backdrop {
        left: -10px;
        right: auto;
    }
}