/* Approach Hero */
.approach-hero {
    background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(0, 137, 123, 0.8)), url('https://images.unsplash.com/photo-1527515637-62b9a8ab4d12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.approach-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.approach-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.approach-hero .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid var(--primary-teal);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 137, 123, 0.2);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Quality Section */
.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 137, 123, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card cite {
    display: block;
    font-weight: 600;
    color: var(--primary-teal);
}





/* BEFORE & AFTER SUBSECTION – FULL-WIDTH IMAGES WITH GENEROUS SPACING */
.before-after-subsection {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 137, 123, 0.15);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.ba-pair {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 35px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.ba-pair:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 137, 123, 0.18);
}
/*
.ba-pair > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}*/

/* Increased vertical spacing between Before and After images */
.ba-images {
    display: flex;
    flex-direction: column;
    gap: 25px;              /* ← Increased from 25px to 50px for clear separation */
    margin-bottom: 10px;    /* Slightly more space before description */
    
}

.ba-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.ba-image-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ba-image-wrapper:hover img {
    transform: scale(1.1);
}

.ba-label {
    position: absolute;
    top: 18px;
    left: 18px;

    background: rgba(0, 137, 123, 0.9);
    color: white;

    padding: 7px 17px;       /* smaller pill */
    border-radius: 40px;

    font-weight: 600;
    font-size: 0.75rem;      /* reduced text size */
    letter-spacing: 0.4px;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}


.ba-description {
    text-align: center;
    font-size: 1.15rem;
    color: var(--navy-blue);
    line-height: 1.7;
    font-weight: 500;
    opacity: 0.95;
}

/* Responsive – Adjust spacing on smaller screens */
@media (max-width: 992px) {
    .before-after-grid {
        gap: 50px;
    }
    .ba-pair {
        padding: 30px;
    }
    .ba-images {
        gap: 40px; /* Slightly reduced but still generous */
    }
    .ba-image-wrapper img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    .ba-pair {
        padding: 25px;
    }
    .ba-images {
        gap: 35px;
    }
    .ba-image-wrapper img {
        height: 240px;
    }
    .ba-label {
        padding: 10px 22px;
        font-size: 0.95rem;
        top: 20px;
        left: 20px;
    }
}

/* FAQ */
/* FAQ Accordion – Matching Legal Design */
.faq-section .accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section .accordion-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 4px 20px rgba(0, 137, 123, 0.1);
}

.faq-section .accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-blue);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-section .accordion-header:hover {
    background: var(--sky-blue);
}

.faq-section .accordion-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-section .accordion-title i {
    font-size: 1.3rem;
    color: var(--primary-teal);
    min-width: 24px;
}

.faq-section .accordion-icon {
    font-size: 1.2rem;
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}

.faq-section .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.faq-section .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-section .accordion-item.active .accordion-content {
    max-height: 5000px;
    padding: 0 28px 28px;
}

.faq-section .accordion-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #4b5563;
}

/* Responsive – Matching Legal */
@media (max-width: 768px) {
    .faq-section .accordion-header {
        padding: 18px 20px;
        font-size: 1rem;
    }
    .faq-section .accordion-title i {
        font-size: 1.1rem;
    }
    .faq-section .accordion-content {
        padding: 0 20px;
    }
    .faq-section .accordion-item.active .accordion-content {
        padding: 0 20px 20px;
    }
}

/* Approach CTA */
.approach-cta {
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-top: 60px;
}

.cta-badge {
    background: rgba(255,255,255,0.15);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 25px;
    display: inline-block;
}

.approach-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.approach-cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 35px;
}

.approach-cta .btn {
    padding: 16px 40px;
    background: var(--white);
    color: var(--primary-teal);
}


 .process-section {
            padding: 80px 0;
            background: var(--white);
            margin-bottom: 1px;
        }
        /* --- NEW STYLES FOR PROCESS FLOW --- */
        .process-flowchart {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .process-flow-step {
            flex: 1;
            text-align: center;
            position: relative;
            min-width: 200px; /* Ensure minimum width for each step */
        }

        .flow-step-wrapper {
            background: var(--white);
            border: 1.15px solid var(--sky-blue);
            border-radius: 12px;
            padding: 10px 5px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 245px; /* Fixed height for consistency */
        }

        .process-flow-step:hover .flow-step-wrapper {
            border-color: var(--primary-teal);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 137, 123, 0.15);
        }

        .flow-icon {
            font-size: 1.75rem;
            color: var(--primary-teal);
            margin-bottom: 5px;
        }

        .flow-number {
            font-size: 1.35rem;
            font-weight: 900;
            color: var(--teal-dark);
            opacity: 0.3;
            margin-bottom: 0.85px;
        }

        .flow-content h3 {
            font-size: 1.0rem;
            color: var(--navy-blue);
            margin-bottom: 7px;
            font-weight: 700;
        }

        .flow-content p {
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.35;
            margin-bottom: 10px;
            flex-grow: 1; /* Allow paragraph to take available space */
        }

        .flow-detail {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            color: var(--primary-teal);
            font-weight: 600;
            margin-top: auto; /* Push to bottom */
        }

        .flow-detail i {
            font-size: 1rem;
        }

        .flow-connector {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            width: 100px; /* Space for connector */
        }

        .connector-line {
            width: 2px;
            height: 70px;
            background: linear-gradient(to bottom, var(--primary-teal), var(--teal-dark));
            margin: 10px 0;
        }

        .connector-arrow {
            font-size: 1.45rem;
            color: var(--primary-teal);
            transform: rotate(90deg); /* Point right */
        }

        /* Process Benefits Banner */
        .process-benefits {
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: var(--sky-blue);
            padding: 40px 30px;
            border-radius: 12px;
            margin-top: 50px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
            color: var(--navy-blue);
            font-weight: 600;
        }

        .benefit-item i {
            color: var(--primary-teal);
            font-size: 1.8rem;
        }


        /* --- RESPONSIVE FOR PROCESS FLOW --- */
        @media (max-width: 992px) {
            .process-flowchart {
                flex-direction: column;
                gap: 40px;
                align-items: stretch; /* Make steps take full width */
            }

            .flow-connector {
                display: none; /* Hide connectors in column view */
            }

            .process-flow-step {
                min-width: unset; /* Reset minimum width */
                width: 100%;
            }

            .flow-step-wrapper {
                height: auto; /* Auto height for column view */
            }

            .flow-content p {
                margin-bottom: 15px; /* Ensure spacing */
            }

            .process-benefits {
                flex-direction: column;
                text-align: center;
            }

            .benefit-item {
                justify-content: center;
                width: 100%;
                margin-bottom: 20px;
            }

            .benefit-item:last-child {
                margin-bottom: 0;
            }
        }


        /* --- NEW STYLES FOR CIRCULAR PROCESS FLOW --- */
        .process-circle-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 0;
            position: relative;
            
        }

        .process-circle {
            position: relative;
            width: 400px;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .circle-step {
            position: absolute;
            width: 100px;
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: transform 0.5s ease-in-out;
        }

        .step-1 { transform: translate(0, -180px); }
        .step-2 { transform: translate(180px, 0); }
        .step-3 { transform: translate(0, 180px); }
        .step-4 { transform: translate(-180px, 0); }

        .circle-step:hover .step-card {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 137, 123, 0.15);
            border-color: var(--primary-teal);
        }

        .step-card {
            background: var(--white);
            border: 2px solid var(--sky-blue);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 160px; /* Adjust card width */
            height: 170px; /* Adjust card height */
            justify-content: space-between;
        }

        .step-icon { font-size: 2rem; color: var(--primary-teal); margin-bottom: 8px; }
        .step-number { font-size: 1.2rem; font-weight: 900; color: var(--teal-dark); opacity: 0.3; margin-bottom: 5px; }
        .step-card h3 { font-size: 1.1rem; color: var(--navy-blue); margin-bottom: 5px; font-weight: 700; }
        .step-card p { font-size: 0.85rem; color: var(--text-dark); line-height: 1.5; margin-bottom: 10px; }

        .step-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            color: var(--primary-teal);
            font-weight: 600;
        }

        .step-badge i { font-size: 0.8rem; }

        /* Circular connector styles */
        .circle-connector {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: visible; /* Ensure arrows are visible */
        }

        .animated-path {
            stroke-dasharray: 0; /* Initially hidden */
            stroke-dashoffset: 0;
            animation: drawPath 5s ease-in-out infinite;
        }

        .path-1 { animation-delay: 0s; }
        .path-2 { animation-delay: 0.2s; }
        .path-3 { animation-delay: 0.4s; }
        .path-4 { animation-delay: 0.6s; }

        @keyframes drawPath {
            from { stroke-dasharray: 0, 1000; stroke-dashoffset: 1000; }
            to { stroke-dasharray: 1000, 1000; stroke-dashoffset: 0; }
        }

        .center-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--primary-teal);
            z-index: 10;
        }

        .center-icon i {
            font-size: 3rem;
            margin-bottom: 10px;
            animation: rotateCenter 6s linear infinite;
        }

        .center-icon span {
            font-size: 0.9rem;
            font-weight: 600;
            opacity: 0.8;
        }

        @keyframes rotateCenter {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Adjustments for circular flow responsiveness */
        @media (max-width: 992px) {
            .process-circle { width: 300px; height: 300px; }
            .circle-step { width: 80px; height: 80px; }
            .step-1 { transform: translate(0, -140px); }
            .step-2 { transform: translate(140px, 0); }
            .step-3 { transform: translate(0, 140px); }
            .step-4 { transform: translate(-140px, 0); }

            .step-card { width: 140px; height: 150px; padding: 15px; }
            .step-icon { font-size: 1.6rem; }
            .step-number { font-size: 1rem; }
            .step-card h3 { font-size: 1rem; }
            .step-card p { font-size: 0.8rem; }
            .step-badge { font-size: 0.7rem; }
            .center-icon i { font-size: 2.5rem; }
            .center-icon span { font-size: 0.8rem; }
            .circle-connector { transform: scale(0.75); } /* Scale down the connector */
        }

        @media (max-width: 768px) {
            .process-circle-wrapper { display: none; } /* Hide circular flow on smaller screens */
            .process-flowchart { display: flex; } /* Show the linear flowchart */
        }


        /* --- CIRCULAR PROCESS FLOW --- */
.process-circular-container {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-flowchart-circular {
    position: relative;
    width: 800px; /* Increased from 650px to push cards apart */
    height: 800px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Icon Style */
.central-excellence {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--white);
}

.excellence-inner {
    text-align: center;
    color: var(--white);
}

.excellence-inner i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    display: block;
    margin-bottom: 5px;
}

.fa-spin-slow {
    animation: spin 8s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.excellence-inner span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Positioning Steps at Cardinal Points */
.process-flow-step {
    position: absolute;
    width: 280px; /* Slightly wider cards */
    z-index: 5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-top { top: -20px; left: 50%; transform: translateX(-50%); }
.step-right { right: -40px; top: 50%; transform: translateY(-50%); }
.step-bottom { bottom: -20px; left: 50%; transform: translateX(-50%); }
.step-left { left: -40px; top: 50%; transform: translateY(-50%); }

.flow-step-wrapper {
    background: var(--white);
    border: 2px solid var(--sky-blue);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.process-flow-step:hover .flow-step-wrapper {
    border-color: var(--primary-teal);
    transform: scale(1.05);
}

.step-top:hover { transform: translate(-50%, -15px); }
.step-right:hover { transform: translate(15px, -50%); }
.step-bottom:hover { transform: translate(-50%, 15px); }
.step-left:hover { transform: translate(-15px, -50%); }

/* SVG Arrows Styles */
.flow-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.arrow-path {
    fill: none;
    stroke: var(--primary-teal);
    stroke-width: 2;
    stroke-dasharray: 8;
    opacity: 0.3;
    /* We use a larger radius in the SVG viewbox (d="M 400...") */
}

@keyframes dash {
    to { stroke-dashoffset: -20; }
}

/* --- RESPONSIVE BEHAVIOR --- */
@media (max-width: 992px) {
    .process-flowchart-circular {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .process-flow-step, 
    .central-excellence, 
    .flow-arrows {
        position: static;
        transform: none !important;
    }

    .process-flow-step {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 90%;
        max-width: 400px;
    }

    .central-excellence {
        order: -1; /* Keep icon at top or hide on mobile */
        margin-bottom: 20px;
    }

    .flow-arrows { display: none; }
    
    .process-flow-step {
        width: 100%;
        max-width: 350px;
    }
}

  /* Process Benefits Banner */
        .process-benefits {
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: var(--sky-blue);
            padding: 40px 30px;
            border-radius: 12px;
            margin-top: 10px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
            color: var(--navy-blue);
            font-weight: 600;
        }

        .benefit-item i { 
            color: var(--primary-teal);
            background-color: var(--sky-blue);
            font-size: 1.8rem;
        }


        /* --- RESPONSIVE FOR PROCESS FLOW --- */
        @media (max-width: 992px) {
            .process-flowchart {
                flex-direction: column;
                gap: 40px;
                align-items: stretch; /* Make steps take full width */
            }

            .flow-connector {
                display: none; /* Hide connectors in column view */
            }

            .process-flow-step {
                min-width: unset; /* Reset minimum width */
                width: 100%;
            }

            .flow-step-wrapper {
                height: auto; /* Auto height for column view */
            }

            .flow-content p {
                margin-bottom: 15px; /* Ensure spacing */
            }

            .process-benefits {
                flex-direction: column;
                text-align: center;
            }

            .benefit-item {
                justify-content: center;
                width: 100%;
                margin-bottom: 20px;
            }

            .benefit-item:last-child {
                margin-bottom: 0;
            }
        }

/* Responsive Design for Flowchart */





         /* --- SERVICE PRICING SECTION --- */
        .service-pricing {
            padding: 30px 0;
            /* background: var(--sky-blue); */
             background: var(--sky-blue);
        }

        .category-pricing-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .category-pricing-header h2 {
            font-size: 2.8rem;
            color: var(--navy-blue);
            margin-bottom: 10px;
            font-weight: 800;
        }

        .category-pricing-header .subtitle {
            font-size: 1.2rem;
            color: var(--text-dark);
            opacity: 0.8;
        }

        .service-pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .service-pricing-card {
            background: var(--white);
            border: 2px solid var(--sky-blue);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .service-pricing-card:hover {
            border-color: var(--primary-teal);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 137, 123, 0.15);
        }

        .service-pricing-card i {
            font-size: 3rem;
            color: var(--primary-teal);
            margin-bottom: 20px;
        }

        .service-pricing-card h3 {
            font-size: 1.3rem;
            color: var(--navy-blue);
            margin-bottom: 15px;
        }

        .service-pricing-card p {
            color: var(--text-dark);
            line-height: 1.7;
        }



/* PREMIUM QUALITY ASSURANCE CARDS */
.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.quality-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 137, 123, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quality-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 137, 123, 0.18);
    border-color: var(--primary-teal);
}

.quality-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 137, 123, 0.3);
}

.quality-icon-wrapper i {
    font-size: 2.8rem;
    color: white;
}

.quality-card h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 18px;
    font-weight: 700;
}

.quality-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
}

/* Enhanced FAQ Accordion */
.faq-accordion details {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.faq-accordion summary {
    padding: 25px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
}

.faq-accordion details[open] summary {
    border-bottom: 1px solid rgba(0, 137, 123, 0.15);
    border-radius: 16px 16px 0 0;
}

.faq-accordion details p {
    padding: 0 35px 30px;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 992px) {
    .quality-card {
        padding: 40px 25px;
    }
    .quality-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    .quality-icon-wrapper i {
        font-size: 2.4rem;
    }
}