/* Operational Resilience Page Styles */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color, #1f9968);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px auto;
    max-width: 300px;
}

.decoration-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #1f9968, transparent);
    flex: 1;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: #1f9968;
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1f9968 0%, #2d5a3d 100%);
    /* padding: 120px 0 80px; */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/earth.gif') center/cover no-repeat;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 20px;
    color: #e8f4fd;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Module Sections - Different Styles for Each */
.module-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Module 1: Tax Compliance - Card Grid Style */
.module-1 {
    background: #f8faf8;
}
/* 
.module-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(31, 153, 104, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(31, 153, 104, 0.03) 0%, transparent 50%);
    pointer-events: none;
} */

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    /* display: flex;
    justify-content: space-between; */

}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 153, 104, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f9968, #2d5a3d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1f9968, #2d5a3d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.card-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f9968;
    margin: 0;
    flex: 1;
}

.card-content{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.card-content>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content>ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.card-content>ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1f9968;
    font-weight: bold;
}

/* Module 2: Business Outsourcing - Timeline Style */
.module-2 {
    /* background: linear-gradient(135deg, #f0f8f4 0%, #e8f5e8 100%); */
}

/* .module-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(31, 153, 104, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(31, 153, 104, 0.05) 0%, transparent 50%);
    pointer-events: none;
} */

/* Timeline Container */
.timeline-container {
    position: relative;
    margin: 0 auto;
    padding: 40px 0;
    max-width: 1000px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    /* background: linear-gradient(180deg, #1f9968, #2d5a3d); */
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-icon {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #1f9968, #2d5a3d); */
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow);
    border: 4px solid #ffffff;
}

.timeline-content {
    width: 45%;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 153, 104, 1);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow:var(--shadow);
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.timeline-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1f9968;
    font-weight: bold;
}

/* Module 3: HR & Payroll - Accordion Style */
.module-3 {
    background: #f8faf8;
}
/* 
.module-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 40% 60%, rgba(31, 153, 104, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(31, 153, 104, 0.04) 0%, transparent 50%);
    pointer-events: none;
} */

/* Accordion Container */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(31, 153, 104, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: rgba(31, 153, 104, 0.02);
}

.accordion-icon {
    width: 50px;
    height: 50px;
    /* background: linear-gradient(135deg, #1f9968, #2d5a3d); */
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.accordion-header h4 {
    color: #1f9968;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.accordion-toggle {
    font-size: 24px;
    color: #1f9968;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    opacity: 1;
    padding: 0 30px 30px;
}

.accordion-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.accordion-content>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content>ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.accordion-content>ul li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

/* Module 4: Transfer Pricing - Feature Grid Style */
.module-4 {
    /* background: linear-gradient(135deg, #f2f8f5 0%, #eaf5ea 100%); */
}

/* .module-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 75%, rgba(31, 153, 104, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(31, 153, 104, 0.05) 0%, transparent 50%);
    pointer-events: none;
} */

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 153, 104, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 153, 104, 0.02) 0%, rgba(45, 90, 61, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
    box-shadow: var(--shadow);
}

.feature-item h4 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-highlights {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-highlights span {
    background: linear-gradient(135deg, #1f9968, var(--primary-color));
    color: #fff;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Decorative Elements - Different for Each Module */
.module-1::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -100px;
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    opacity: 0.1;
    /* border-radius: 50%; */
    transform: rotate(33deg);
    z-index: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.module-2::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -100px;
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    opacity: 0.1;
    /* border-radius: 50%; */
    transform: rotate(-30deg);
    z-index: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.module-3::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -100px;
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    opacity: 0.1;
    /* border-radius: 50%; */
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(33deg);
    z-index: 0;
}

.module-4::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -100px;
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    opacity: 0.1;
    /* border-radius: 50%; */
    transform: rotate(-30deg);
    z-index: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 30px;
    }

    .timeline-marker {
        left: 30px;
        transform: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .accordion-header {
        padding: 20px;
        gap: 15px;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 20px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 25px;
    }

    .service-card,
    .feature-item {
        padding: 20px;
    }

    .timeline-content {
        padding: 20px;
    }

    .accordion-header {
        padding: 15px;
    }

    .accordion-content {
        padding: 0 15px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 15px 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        /* width: 100%; */
        justify-content: center;
    }
}


.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text Content */
.text-content {
    order: 1;
}

.module-section:nth-child(even) .text-content {
    order: 2;
}

/* Service Icons - All Green Theme */
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    /* background: linear-gradient(135deg, #1f9968, #2d5a3d); */
    background: var(--primary-color);
    color: #ffffff;
    /* background: var(--primary-color); */
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow);
}

.service-item:hover .service-icon i {
    transform: scale(1.1);
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Service Items - Different Styles for Each Module */
.service-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: slideInUp 0.6s ease-out both;
}

/* Module 1: Clean Cards */
.module-1 .service-item {
    box-shadow: var(--shadow);
    border-left: 4px solid transparent;
}

.module-1 .service-item:hover {
    border-left-color: #1f9968;
}

/* Module 2: Rounded Cards with Green Border */
.module-2 .service-item {
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff, #f8faf8);
}

.module-2 .service-item:hover {
    border-color: #1f9968;
    transform: translateY(-5px);
}

/* Module 3: Elevated Cards */
.module-3 .service-item {
    box-shadow: var(--shadow);
    border-radius: 20px;
}

.module-3 .service-item:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Module 4: Modern Cards with Top Border */
.module-4 .service-item {
    box-shadow: var(--shadow);
    border-top: 3px solid transparent;
}

.module-4 .service-item:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-6px);
}

.service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f9968, #2d5a3d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    color: #1f9968;
}

.service-item p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    font-size: 14px;
    color: #495057;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding-left: 24px;
    transition: all 0.3s ease;
}

.service-details li:hover {
    color: #1f9968;
    padding-left: 28px;
}

.service-details li:before {
    content: "✓";
    color: #1f9968;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 14px;
    background: rgba(31, 153, 104, 0.1);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details li:last-child {
    border-bottom: none;
}

/* Image Content */
.image-content {
    order: 2;
}

.module-section:nth-child(even) .image-content {
    order: 1;
}

/* Enhanced Image Wrapper - Different Styles */
.image-wrapper {
    text-align: center;
    position: relative;
}

/* Module 1: Clean Border */
.module-1 .image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, rgba(31, 153, 104, 0.1), rgba(45, 90, 61, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Module 2: Rounded Background */
.module-2 .image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(31, 153, 104, 0.08), rgba(45, 90, 61, 0.08));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Module 3: Hexagonal Pattern */
.module-3 .image-wrapper::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    background: linear-gradient(45deg, rgba(31, 153, 104, 0.06), rgba(45, 90, 61, 0.06));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Module 4: Modern Frame */
.module-4 .image-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: linear-gradient(45deg, rgba(31, 153, 104, 0.12), rgba(45, 90, 61, 0.12));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover::before {
    opacity: 1;
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

/* CTA Section */
.cta-section {
    /* background: linear-gradient(135deg, #1f9968 0%, #2d5a3d 100%); */
    padding: 80px 0;
    text-align: center;
    background-image: url('/assets/images/que-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    
}
.cta-content{
    position: relative;
    z-index: 9;
}
.cta-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button .layui-icon {
    font-size: 12px;
}

.cta-button.primary {
    background: #ffffff;
    color: var(--primary-color);
}

.cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: #1f9968;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-content,
    .image-content {
        order: 1;
    }

    .module-section:nth-child(even) .text-content,
    .module-section:nth-child(even) .image-content {
        order: 1;
    }

    .section-title {
        font-size: 28px;
    }

    .service-item {
        padding: 24px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-section,
    .module-section {
        padding: 40px 0;
    }
    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .service-item h4 {
        font-size: 18px;
    }

    .cta-button {
        padding: 16px 28px;
        font-size: 16px;
    }


    .hero-section {
        min-height: 200px;
    }

    .hero-content h1 {
        font-size: 23px;
        margin-bottom: 5px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .hero-section::before{
        animation: none;
    }

    .title-header h2{
        text-align: center;
        font-size: 30px;
        line-height: 35px;
    }
    .title-decoration{
        justify-content: center;
    }
    .decoration-line{
        width: 40px;
        flex: none;
    }
    .decoration-dot{
        width: 10px;
        height: 10px;
    }
    .title-header{
        margin-bottom: 20px;
    }
    .title-header p{
        font-size: 15px;
        text-align: center;
    }
    .module-1::after{
        width: 100px;
        height: 100px;
    }
    .module-2::after{
        width: 100px;
        height: 100px;
    }
    .module-3::after{
        width: 100px;
        height: 100px;
    }
    .module-4::after{
        width: 100px;
        height: 100px;
    }
    .timeline-item{
        flex-direction: column;
    }
    .timeline-content{
        width: 100%;
    }

    .section-header p{
        font-size: 15px;
    }
    .section-header{
        margin-bottom: 20px;
    }
    .service-grid{
        margin-top: 20px;
    }
    .service-icon{
        width: 40px;
        height: 40px;
    }

    .timeline-container::before{
        left: 10px;
    }
    .timeline-item{
        margin-left: 40px;
        width: calc(100% - 40px);

    }

    .marker-icon{
        width: 40px;
        height: 40px;
    }
    .marker-icon svg{
        width: 20px;
        height: 20px;
    }
    .timeline-content h4{
        font-size: 16px;
    }
    .timeline-content p{
        font-size: 14px;
    }
    .timeline-marker{
        left: -48px;
    }
    .timeline-item:nth-child(odd) .timeline-content{
        margin-right: 0;
    }
    .timeline-item:nth-child(even) .timeline-content{
        margin-left: 0;
    }
    .timeline-content{
        border-radius: 10px;
    }
    .timeline-container{
        padding: 0;
    }
    .module-section{
        padding-bottom: 20px;
    }

    .accordion-icon{
        width: 40px;
        height: 40px;
    }
    .accordion-icon svg{
        width: 20px;
        height: 20px;
    }
    .accordion-header h4{
        font-size: 16px;
    }
    .accordion-content p{
        font-size: 14px;
    }
    .accordion-toggle{
        font-size: 23px;
    }
    .accordion-header{
        gap: 10px;
    }
    .feature-grid{
        gap: 20px;
        margin-top: 20px;
    }
    .feature-icon{
        width: 50px;
        height: 50px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    .feature-icon svg{
        width: 25px;
        height: 25px;
    }
    .feature-item h4{
        font-size: 18px;
    }
    .feature-item p{
        font-size: 14px;
    }
    .feature-highlights{
        gap: 10px;
    }
    .feature-highlights span{
        font-size: 11px;
    }
    .module-4{
        padding-bottom: 40px;
    }

    .cta-section{
        padding: 50px 0;
     }
     .cta-content h3{
        font-size: 22px;
        margin-bottom: 10px;
     }
     .cta-content p{
        font-size: 14px;
        margin-bottom: 15px;
     }
     .cta-button{
        padding: 5px 20px;
        font-size: 14px;
     }
     .cta-button .layui-icon{
        font-size: 9px;
     }
     .cta-buttons{
        gap: 15px;
     }
}