.top-section {
    display: flex;
    gap: 5rem;
    padding-right: 120px;
    align-items: center;
    padding-top: 3rem;
    /* Increased from 1rem to move content down */
}

.content-left {
    display: flex;
    align-items: flex-start;
    flex: 1.5;
    max-width: 520px;
    /* Increased for wider paragraph */
}

.content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
    margin-left: -50px;
    /* Increased from -40px to shift more left */
}

.about h1,
.about p {
    text-align: justify;
}

.about h1 {
    font-size: 2.2rem;
    color: #2E7D32;
    margin-bottom: 0.8rem;
}

.about p {
    font-size: 1rem;
    line-height: 1.5;
}

.question-mark {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.question-mark-image {
    width: 100%;
    height: auto;
    display: block;
}

.why-us {
    background-color: #F8FF2C;
    text-align: center;
    height: 50px;
    width: 340px;
    /* Increased from 280px to match design */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -25px;
    z-index: 2;
    position: relative;
    padding: 0 1.5rem;
}

.why-us h1 {
    font-size: 1.4rem;
    margin: 0;
    white-space: nowrap;
}

/* Features section with wider, more prominent styling */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    /* Reduced from 1.5rem for tighter spacing */
    background-color: #E8F5E9;
    padding: 2.5rem 2rem;
    margin-top: -15px;
    /* Reduced to bring closer to yellow bar */
    max-width: 950px;
    border-radius: 0;
    /* Changed to 0 for square background */
}

.feature-card {
    position: relative;
    height: 280px;
    /* Increased to accommodate larger circles */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    background-color: #2E7D32;
    width: 90px;
    /* Increased from 65px to match design */
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.feature-icon img {
    width: 42px;
    /* Proportionally increased */
    height: 42px;
    filter: brightness(0) invert(1);
}

/* Larger circles with thicker borders to match design */
.feature-circle {
    position: absolute;
    width: 250px;
    /* Increased from 190px - much more prominent */
    height: 250px;
    background-color: white;
    border: 5px solid #2E7D32;
    /* Increased from 3px - bolder look */
    border-radius: 50%;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.feature-text {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78%;
    text-align: center;
    font-size: 1rem;
    /* Increased from 0.9rem */
    line-height: 1.4;
    z-index: 2;
    padding: 0 0.5rem;
    display: block !important;
}


@media (max-width: 968px) {
    /* About Section Mobile - EXACT DESIGN MATCH */

    /* Override global section styling for About section */
    #section2 {
        height: auto !important;
        min-height: 100vh;
        overflow: visible !important;
    }

    /* CRITICAL FIX: Reset container width and padding for mobile */
    #section2 .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .top-section {
        flex-direction: column;
        padding: 2rem 1.5rem 1rem;
        gap: 1rem;
        align-items: flex-start;
    }

    .content-left {
        order: 1;
        max-width: 100%;
        width: 100%;
    }

    .content-right {
        order: 2;
        align-items: flex-end;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        position: relative;
        justify-content: flex-end;
        gap: 0;
    }

    /* Title - left aligned */
    .about h1 {
        font-size: 1.6rem;
        text-align: left;
        margin-bottom: 0.8rem;
        color: #2E7D32;
    }

    /* Description - left aligned, justified */
    .about p {
        font-size: 0.85rem;
        line-height: 1.5;
        text-align: justify;
        color: #2E7D32;
    }

    /* Question mark illustration - right side */
    .question-mark {
        max-width: 150px;
        margin: 0;
        position: relative;
        z-index: 1;
    }

    .question-mark-image {
        width: 100%;
        height: auto;
    }

    /* Yellow label "Kenapa Pilih Kami?" */
    .why-us {
        position: absolute;
        bottom: 0;
        right: 0;
        width: auto;
        max-width: 200px;
        margin: 0;
        background-color: #FFD700;
        padding: 8px 15px;
        border-radius: 8px;
        z-index: 2;
    }

    .why-us h1 {
        font-size: 0.9rem;
        font-weight: 700;
        color: #000;
        margin: 0;
        white-space: nowrap;
    }

    /* Hide desktop grid view on mobile */
    .desktop-view {
        display: none !important;
    }

    /* Show mobile carousel on mobile */
    .mobile-view {
        display: block !important;
        margin-top: 2rem;
        max-width: 100vw;
        overflow: hidden;
        background-color: #E8F5E9;
        padding: 2.5rem 0;
    }

    /* Mobile Swiper Styling */
    .features-mobile {
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
        overflow: visible;
        display: block !important;
    }

    .swiper {
        width: 100%;
        max-width: 100vw;
        padding-bottom: 70px;
        overflow: visible;
        position: relative;
    }

    .swiper-wrapper {
        align-items: center;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Carousel card container */
    .feature-card-mobile {
        position: relative;
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Circle card with green border */
    .feature-circle-mobile {
        width: 250px;
        height: 250px;
        background-color: #2E7D32;
        border: 5px solid #2E7D32;
        border-radius: 50%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3rem 1.5rem;
        box-sizing: border-box;
    }

    /* Icon at top of circle */
    .feature-icon-mobile {
        width: 70px;
        height: 70px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
        border: 3px solid #2E7D32;
    }

    .feature-icon-mobile img {
        width: 36px;
        height: 36px;
        filter: brightness(0) saturate(100%) invert(26%) sepia(74%) saturate(890%) hue-rotate(99deg) brightness(94%) contrast(93%);
    }

    /* Text inside circle - WHITE */
    .feature-text-mobile {
        text-align: center;
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.4;
        margin: 0;
        padding: 0;
    }

    /* Swiper arrows - OUTSIDE card */
    .swiper-button-next,
    .swiper-button-prev {
        color: #2E7D32 !important;
        width: 30px !important;
        height: 30px !important;
        top: 50% !important;
        transform: translateY(-50%);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 24px !important;
        font-weight: bold;
    }

    .swiper-button-prev {
        left: 10px !important;
    }

    .swiper-button-next {
        right: 10px !important;
    }

    /* Pagination dots */
    .swiper-pagination {
        position: static !important;
        width: auto !important;
        margin: 1rem 0.5rem 0;
        text-align: center;
    }

    .swiper-pagination-bullet {
        background-color: #2E7D32 !important;
        opacity: 0.4;
        width: 10px;
        height: 10px;
    }

    .swiper-pagination-bullet-active {
        background-color: #2E7D32 !important;
        opacity: 1;
    }

    /* Mobile Navigation Buttons */
    .mobile-nav-buttons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        gap: 0.5rem;
    }

    .btn-nav-mobile {
        background-color: #2E7D32;
        color: white;
        padding: 10px 15px;
        border-radius: 25px;
        font-size: 0.75rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
        font-weight: 600;
    }
}

/* Default: Hide mobile view on desktop */
.mobile-view {
    display: none;
}

.desktop-view {
    display: grid;
}