/* Reset & Base */
:root {
    --primary-color: #2F6BFF;
    --primary-hover: #2558d6;
    --text-dark: #1F2333;
    --text-gray: #666666;
    --text-light: #999999;
    --text-secondary: #414b61;
    --bg-light: #F5F7FA;
    --white: #FFFFFF;
    --border-radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --container-width: 1200px;
    --font-family: Inter, 'PingFang SC', 'Helvetica Neue', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(47, 107, 255, 0.4);
}

.bg-gray {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    height: 70px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    /* 33_547 */
    width: 92px;
    height: 29px;
}

.nav-menu {
    display: flex;
    gap: 30px; /* Adjust if Figma Group 59 specifies otherwise, keeping 30px as reasonable default */
}

.nav-link {
    /* 7_110 - 7_117 */
    font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    font-weight: 400; /* Regular */
    letter-spacing: 0;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header-register {
    /* 87_12 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 35px;
    background-color: #e9ecf0;
    border-radius: 4px;
    padding: 0; /* Remove default padding to use fixed dimensions */
    
    font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    letter-spacing: 0;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-header-register:hover {
    background-color: #dce1e8;
}

/* Hero Section - Exact Replica of Rectangle 1 */
.hero-section {
    /* Padding based on Figma: 152px top, 505px right, 96px bottom, 372px left */
    padding: 152px 505px 96px 443px;
    background-color: #f5f7fa;
    background-image: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align content */
    justify-content: flex-start;
}

.hero-content {
    /* Override container styles for strict 1:1 layout */
    max-width: 816px; /* Exact width based on design space (1440 - 119 - 505) */
    width: 100%;
    margin: 0; /* Remove centering margin */
    padding: 0;
    text-align: left; /* Left align text */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align children */
}

.hero-text {
    max-width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align children to the left */
    text-align: left; /* Ensure text alignment is left */
}

.hero-text h1 {
    /* Text 6 */
    font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 26px;
    line-height: 31px;
    letter-spacing: 0;
    color: #000000;
    margin-bottom: 0;
    margin-left: 0; /* Removed left margin */
    font-weight: 400; 
}

.hero-text .hero-desc {
    /* Text 7 */
    font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0;
    color: #414b61;
    margin-top: 21px; /* Precise margin */
    margin-bottom: 0;
    max-width: 100%;
}

/* Specific Hero Button */
.btn-hero {
    /* Rectangle 22 / Group 60 (87_13) */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px; /* Exact width */
    height: 35px; /* Exact height */
    padding: 0; /* Remove padding to use fixed dimensions */
    background-color: #e9ecf0;
    border-radius: 4px;
    margin-top: 21px; /* Precise margin */
    
    /* Text 5 */
    font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    font-weight: 400;
    box-shadow: none;
    border: none;
}

.btn-hero:hover {
    background-color: #dce1e8; /* Slight darken for hover */
    transform: none; /* Remove lift effect if strict flat design */
    color: #000000;
    box-shadow: none;
}

.btn-hero:active {
    background-color: #cfd5de;
}

.hero-certification {
    display: none; /* Hide for now as it wasn't in Rectangle 1 scope or needs moving */
}

.hero-image {
    display: none; /* Hide as Rectangle 1 seems text focused or background */
}

/* Certification Section */
.certification-section {
    padding: 80px 0; /* Standard section padding, or adjust based on Figma if specific (Text 8 margin top was 26px but that's relative to container) */
    /* Based on 7_95 structure: Text 8 margin-top 26px, Text 9 margin-top 15px, Image margin-top 9px.
       But here we are making a dedicated section. Let's use clean spacing.
    */
    background-color: #fff;
}

.certification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certification-content .section-title {
    /* Text 8 (34_14) */
    font-size: 26px;
    line-height: 31px;
    color: #000000;
    margin-bottom: 15px; /* Based on Text 9 margin-top 15px */
    font-weight: 400; /* Assuming regular */
}

.certification-content .section-desc {
    /* Text 9 (34_15) */
    font-size: 16px;
    line-height: 19px;
    color: #414b61;
    text-align: center;
    width: 861px; /* Exact width from 34_15 */
    max-width: 100%; /* Responsive */
    margin-bottom: 20px; /* Spacer before image */
}

.cert-image-wrapper {
    /* Image (34_17) */
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 9px; /* Exact from 7_95/34_17 context if applicable */
}

.cert-main-chart {
    /* 34_17 */
    width: 435px;
    height: 415px;
    max-width: 100%;
    height: auto;
}

/* Advantages Section & Tab Component */
.advantages-section {
    padding: 80px 0;
}

.tab-component-wrapper {
    display: flex;
    background: var(--white);
    /* border-radius: var(--border-radius); */ /* The design seems to imply a large container but let's stick to the content */
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    /* box-shadow: var(--shadow-md); */
    height: 500px; /* Fixed height as per design specs */
    overflow: hidden; /* Ensure content doesn't spill */
}

.tab-image-area {
    flex: 0 0 400px; /* Adjust based on "padding: 204px 151px..." - The left side seems to be the image container */
    /* Based on scss: rectangle9 padding is huge, implying the image is small in center */
    /* rectangle9 padding: 204px 151px 204px 152px; width ~400px total? */
    /* The scss says rectangle8 width 1200px. */
    /* If rectangle9 is left part, it has padding. */
    background-image: linear-gradient(180deg, #ffffff 0%, #e5ecf7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tab-image-area .image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-image-area img {
    max-width: 80%;
    max-height: 80%;
    transition: opacity 0.3s ease;
}

.tab-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px 35px 30px 50px; /* padding-right 35px from scss */
}

.tab-navigation {
    display: flex;
    gap: 60px; /* Space between tabs */
    position: relative;
    margin-bottom: 0;
    padding-bottom: 15px;
}

.tab-nav-item {
    font-size: 16px;
    color: #000000; /* As per scss */
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
    font-weight: 400;
    transition: color 0.3s, font-weight 0.3s;
    font-family: var(--font-family);
}

.tab-nav-item:hover {
    color: var(--primary-color);
}

.tab-nav-item.active {
    font-weight: 600; /* Make it slightly bolder */
}

/* Active line indicator */
.tab-active-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #000000;
    width: 95px; /* Fixed width from scss */
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tab-nav-divider {
    height: 1px;
    background-color: #dee4ed;
    width: 100%;
    margin-top: -1px; /* Overlap with padding-bottom of nav */
    margin-bottom: 40px;
}

.tab-panels {
    flex: 1;
    position: relative;
    overflow-y: auto; /* Allow scrolling if content overflows, though design is fixed height */
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.features-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px; /* Row gap 40px, Col gap 60px */
}

.feature-detail-card-flat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon-circle {
    flex-shrink: 0;
    width: 42px; /* 12px padding + 15px icon width ~ 40px */
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.3); /* #0000004d */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.detail-icon-circle img {
    width: 15px;
    height: 16px;
}

.detail-text h3 {
    font-size: 16px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 19px;
}

.detail-text p {
    font-size: 13px;
    color: var(--text-secondary); /* #414b61 */
    line-height: 1.6; /* 16px line-height roughly */
}


/* Modules Section */
.modules-section {
    padding: 80px 0;
}

.module-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.module-tab {
    padding: 10px 24px;
    border-radius: 20px;
    background: #F0F2F5;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.module-tab:hover, .module-tab.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.2);
}

.module-content-area {
    display: flex;
    gap: 40px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.module-list {
    flex: 0 0 250px;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.module-item {
    padding: 15px 20px;
    margin-bottom: 8px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.2s;
}

.module-item:hover {
    background: #F5F7FA;
    color: var(--primary-color);
}

.module-item.active {
    background: rgba(47, 107, 255, 0.1);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.module-display {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.module-image {
    flex: 1;
}

.module-description {
    flex: 1;
}

.module-description h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.module-description p {
    color: var(--text-gray);
    font-size: 16px;
}

/* AI Section */
.ai-section {
    padding: 80px 0;
    /* Removed bg-gray here as it's not in new requirements, or cards are gray */
    /* If the section background is white, then cards should be gray */
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    /* To fit roughly 3 cards (440px each) but we want responsiveness.
       Let's set a fixed width or max-width if we want exactly 3 items visible.
       However, to be "strictly 440px", we should probably allow the track to slide.
       If container is 1200px, 3x440 = 1320px > 1200px.
       So we can show 2 full cards and parts of the side ones, or 2 cards with gaps.
       Let's assume the design wants 2-3 cards visible.
    */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    gap: 20px;
    padding: 20px 0; /* Add vertical padding for shadow */
}

.carousel-slide {
    flex: 0 0 440px; /* Fixed width as requested */
    width: 440px;
}

.ai-card {
    background: #f5f7fa; /* Updated background */
    border-radius: 8px;
    padding: 30px 30px 150px; /* Updated padding */
    width: 440px; /* Fixed width */
    height: 440px; /* Fixed height */
    position: relative;
    overflow: hidden;
    /* box-shadow: var(--shadow-sm); Removed default shadow if flat, but design usually has shadow on hover */
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; Removed to follow new layout */
    text-align: left; /* Ensure left align */
}

.ai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff; /* Often cards turn white on hover in this style, or remain gray? Let's assume highlight */
}

.ai-content h3 {
    font-size: 18px; /* Updated font size */
    margin-bottom: 10px;
    color: #000000;
    line-height: 22px;
    font-weight: 500; /* Assuming Inter/PingFang regular/medium */
}

.ai-content p {
    font-size: 14px; /* Updated font size */
    color: #414b61; /* Updated color */
    line-height: 1.6;
    width: 380px; /* Fixed width constraint from scss */
    max-width: 100%;
}

.ai-icon {
    width: 97px;
    height: 97px;
    position: absolute;
    bottom: 30px; /* Adjusted based on 440px height and padding-bottom 150px is actually huge space for image? */
    /* The scss said padding-bottom: 150px. The image was margin-top: 97px.
       Let's position it absolute or relative.
       In scss:
       padding: 30px 30px 150px;
       .frame margin-top: 97px; margin-left: 142px;
       This implies the image is below the text.
    */
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px; /* Approximation */
    opacity: 1; /* Ensure visible */
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.prev-btn {
    left: -20px; /* Pull out slightly */
}

.next-btn {
    right: -20px;
}

/* Dots Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.current-slide {
    background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 350px; /* Scale down slightly for tablets if needed, or keep scrolling */
        width: 350px;
    }
    .ai-card {
        width: 350px;
        height: auto;
        min-height: 400px;
    }
    .ai-content p {
        width: auto;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%; /* Full width on mobile */
        width: 100%;
    }
    .ai-card {
        width: 100%;
    }
}

/* Certifications */
.certifications-section {
    padding: 80px 0;
}

.cert-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cert-info {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.cert-main-img {
    width: 300px;
    border-radius: 8px;
}

.cert-text-content {
    flex: 1;
}

.cert-text-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cert-text-content .highlight {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 24px;
}

.cert-detail {
    margin-bottom: 20px;
}

.cert-detail h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.cert-detail p {
    color: var(--text-gray);
    font-size: 14px;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cert-badge {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.badge-icon img {
    width: 16px;
}

.cert-badge p {
    font-size: 14px;
    font-weight: 500;
}

/* Service Section */
.service-section {
    padding: 80px 0;
}

.service-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.service-features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-feature-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-gray);
}

.client-logos {
    flex: 0 0 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.client-logo-item {
    background: var(--white);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-bottom: 8px;
    overflow: hidden;
}

.client-logo-item p {
    font-size: 12px;
    color: var(--text-gray);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F4FF 100%);
}

.pricing-image-container {
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: inline-block;
}

/* Footer */
.footer {
    background: #F8F9FB;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-column h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.link-column a {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.link-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        padding: 120px 20px 80px 20px; /* Adjust padding for tablet/mobile */
        align-items: flex-start; /* Maintain left alignment */
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
    }

    .container {
        padding: 0 15px;
    }
    
    .advantages-grid, .module-display, .cert-info, .service-grid {
        flex-direction: column;
    }

    /* Tab component responsive */
    .tab-component-wrapper {
        flex-direction: column;
        height: auto;
    }

    .tab-image-area {
        height: 200px;
        flex: none;
    }

    .tab-navigation {
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 30px;
    }
    
    .features-list-card, .module-list, .client-logos {
        width: 100%;
        flex: none;
    }
    
    .features-details-grid, .ai-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Simplification for mobile, usually needs hamburger */
    }
    
    .features-details-grid, .ai-grid, .service-features {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}
