/* About Us Section Styles */
.about-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-us-images {
    position: relative;
}

.about-main-image {
    position: relative;
    z-index: 2;
}

.about-main-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease;
}

.about-main-image:hover img {
    transform: translateY(-5px);
}

.about-secondary-image {
    position: relative;
    z-index: 1;
    max-width: 80%;
    margin-left: auto;
}

.about-secondary-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease;
}

.about-secondary-image:hover img {
    transform: translateY(-3px);
}

.about-us-content {
    padding-left: 30px;
}

/* Content without images - centered layout */
.about-us-content.mx-auto {
    padding-left: 0;
    max-width: 800px;
    text-align: center;
}

.about-us-content.mx-auto .section-title-main {
    text-align: center;
}

.about-us-content.mx-auto .about-content {
    text-align: center;
}

.section-subtitle {
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-main {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
}

.section-title-main span {
    color: #667eea;
}

.about-content {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content ul {
    padding-left: 0;
    list-style: none;
}

.about-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.about-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #667eea;
    font-weight: bold;
}

/* Centered content adjustments */
.about-us-content.mx-auto .about-content ul {
    text-align: left;
    display: inline-block;
    max-width: 100%;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-us-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-us-content.mx-auto {
        margin-top: 0;
        text-align: center;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .about-secondary-image {
        max-width: 70%;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 60px 0;
    }
    
    .section-title-main {
        font-size: 1.75rem;
    }
    
    .about-main-image img {
        max-height: 300px;
    }
    
    .about-secondary-image img {
        max-height: 200px;
    }
    
    .about-secondary-image {
        max-width: 85%;
        margin-top: 15px;
    }
    
    .about-us-content.mx-auto {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Animation Enhancements */
.image-anime figure {
    overflow: hidden;
    border-radius: 15px;
}

.image-anime img {
    transition: transform 0.5s ease, filter 0.3s ease;
}

.image-anime:hover img {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Loading State */
.about-us-images img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-us-images img.loaded {
    opacity: 1;
}
