#module-sopchy_aboutpage-about .about-brand-content {
    padding-top: 0;
}

/* HERO */
#module-sopchy_aboutpage-about .about-hero {
    position: relative;
    margin-bottom: 3rem;
}

#module-sopchy_aboutpage-about .hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

#module-sopchy_aboutpage-about .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

#module-sopchy_aboutpage-about .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    /* text-shadow: 0 2px 4px rgba(0,0,0,0.5); */
    width: 90%;
    max-width: 800px;
}

#module-sopchy_aboutpage-about .hero-content img {
    filter: brightness(0) invert(1);
}

#module-sopchy_aboutpage-about .hero-content h1 {
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: white;
}

#module-sopchy_aboutpage-about .hero-content p {
    font-size: 16px;
    font-weight: 300;
}

#module-sopchy_aboutpage-about .hero-content p:last-of-type {
    line-height: 1.5;
    max-width: 720px;
    margin: 0 auto;
}

/* SECTIONS */
#module-sopchy_aboutpage-about.section {
    padding: 4rem 0;
}

#module-sopchy_aboutpage-about .section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 4rem; */
    align-items: center;
    margin-bottom: 48px;
}

#module-sopchy_aboutpage-about .section-grid.reverse {
    direction: rtl;
}

#module-sopchy_aboutpage-about .section-grid.reverse > * {
    direction: ltr;
}


#module-sopchy_aboutpage-about .section-text p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-gray);
}

#module-sopchy_aboutpage-about .section-text p b {
    font-weight: 500 !important;
}

#module-sopchy_aboutpage-about .section-text p:last-child {
    margin-bottom: 0;
}

#module-sopchy_aboutpage-about .section-image {
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
}

#module-sopchy_aboutpage-about .section-image img {
    width: 100%;
    height: auto;
    display: block;
}

#module-sopchy_aboutpage-about .hero-image:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: #00000075;
}


/* FEATURES */
#module-sopchy_aboutpage-about .section-features {
    text-align: center;
}

#module-sopchy_aboutpage-about .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

#module-sopchy_aboutpage-about .feature {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#module-sopchy_aboutpage-about .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


#module-sopchy_aboutpage-about .feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

#module-sopchy_aboutpage-about .feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}


#module-sopchy_aboutpage-about .section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#module-sopchy_aboutpage-about .section-text * {
    max-width: 400px;
    text-align: center;
}


/* CTA */
#module-sopchy_aboutpage-about .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#module-sopchy_aboutpage-about .cta-image {
    border-radius: 8px;
    overflow: hidden;
    max-height: 320px;
}

#module-sopchy_aboutpage-about .cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

#module-sopchy_aboutpage-about .cta-content {
    text-align: center;
}

#module-sopchy_aboutpage-about .cta-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-gray);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    #module-sopchy_aboutpage-about .hero-content h1 {
        font-size: 2.8rem;
    }
    
    #module-sopchy_aboutpage-about .hero-content p {
        font-size: 16px;
    }
    
    #module-sopchy_aboutpage-about .section-grid,
    #module-sopchy_aboutpage-about .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
}

@media (max-width: 768px) {

    #module-sopchy_aboutpage-about .hero-content img {
    max-width: 150px;
}

    #module-sopchy_aboutpage-about .hero-image {
        height: 300px;
    }
    
    #module-sopchy_aboutpage-about .hero-content h1 {
        font-size: 2.2rem;
    }
    
    #module-sopchy_aboutpage-about .hero-content p {
        font-size: 14px;
    }
    
    /* #module-sopchy_aboutpage-about .section {
        padding: 3rem 0;
    } */
    
    #module-sopchy_aboutpage-about .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    #module-sopchy_aboutpage-about .feature {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    #module-sopchy_aboutpage-about .hero-image {
        height: 250px;
    }
    
    #module-sopchy_aboutpage-about .hero-content h1 {
        font-size: 1.8rem;
    }

     #module-sopchy_aboutpage-about h2.section-title {
        font-size: 20px;
     }
    
    
    #module-sopchy_aboutpage-about .section-text p {
        font-size: 14px;
    }
    
    #module-sopchy_aboutpage-about .features-grid {
        grid-template-columns: 1fr;
    }

}



    #module-sopchy_aboutpage-about  .feature-content {
        flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    }

    #module-sopchy_aboutpage-about .feature-title {
    margin-bottom: 4px;
}


 #module-sopchy_aboutpage-about .feature-icon {
    width: 48px;
    height: 48px;
}