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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}


/* Header */

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.logo-text span {
    color: #0099dc;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #0099dc;
    transition: width 0.3s;
}

nav a:hover:after {
    width: 100%;
}

nav a:hover {
    color: #0099dc;
}


/* Breadcrumb Navigation */

.breadcrumb-nav {
    background: #f8f9fa;
    padding: 12px 0;
    margin-top: 100px;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    color: #999;
    margin-right: 8px;
}

.breadcrumb-item a {
    color: #0099dc;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #007ab8;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}


/* Mobile Menu Toggle (Hamburger) */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* Mobile Navigation */

.mobile-nav {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 400px;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px 0;
    display: block;
}

.mobile-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a {
    display: block;
    padding: 15px 30px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.mobile-nav a:hover {
    background: #f8f9fa;
    color: #0099dc;
}

.mobile-nav a:after {
    display: none;
}


/* Hero Slider */

.hero-slider {
    margin-top: 100px;
    position: relative;
    height: 650px;
    overflow: hidden;
}

.slide {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background: url('../images/banners/water-banner_chp_5722L.png');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background: url('../images/banners/water-banner_chp_6330L.jpg');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background: url('../images/banners/air-banner_ap_1523D.png');
    background-size: cover;
    background-position: center;
}


/* PC에서는 slide-3 텍스트 완전히 숨김 */

.slide-3 .slide-content {
    display: none !important;
}


/* 텍스트 가독성을 위한 오버레이 */

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    padding: 0 50px;
    color: rgb(8, 8, 8);
    text-align: left;
}

.slide-content h1 {
    font-size: 60px;
    margin-bottom: 10px;
    margin-top: 5px;
    animation: fadeInUp 1s ease;
}

.slide-content .highlight {
    font-size: 20px;
    color: #090909;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 1px;
    max-width: 700px;
    animation: fadeInUp 1.2s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}


/* 첫 번째 슬라이드 콘텐츠 - 왼쪽으로 20% 이동 */

.slide-1 .slide-content {
    transform: translateX(-15%);
}

.slide-1 .slide-content h1,
.slide-1 .slide-content p {
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), -1px -1px 4px rgba(0, 0, 0, 0.5);
}


/* 두 번째 슬라이드 콘텐츠 - 위쪽으로 10% 이동 */

.slide-2 .slide-content {
    transform: translateY(-20%);
}


/* Slider Navigation */

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}


/* Products Section */

.products-section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


/* 클릭 가능한 카드 링크 */

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}


/* 호버 시 이미지 줌인 효과 */

.product-card:hover .product-image img {
    transform: scale(1.1);
}


/* 수정된 부분: product-card-link를 기준으로 선택 */

.product-card-link:nth-child(1) .product-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-card-link:nth-child(2) .product-image {
    background: linear-gradient(135deg, #66eac0 0%, #6da268 100%);
}

.product-card-link:nth-child(3) .product-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.product-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    /* 2줄 제한 및 높이 보장 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 51px;
    /* 2줄 높이 보장 (16px * 1.6 * 2) */
}

.learn-more {
    color: #0099dc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.product-card:hover .learn-more {
    gap: 12px;
    color: #0077b3;
}


/* Features Section */

.features-section {
    background: #f8f9fa;
    padding: 100px 50px;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #0099dc;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}


/* R&D Section */

.rnd-section {
    position: relative;
}

.rnd-container {
    max-width: 1400px;
    margin: 0 auto;
}

.feature-row {
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 50px;
    position: relative;
}

.feature-text {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.feature-text h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.feature-text p {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 200;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
}


/* Footer */

footer {
    background: #2c3e50;
    color: white;
    padding: 60px 50px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: #0099dc;
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-about p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0099dc;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}


/* Animations */

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


/* Tablet Responsive (768px - 1024px) */

@media (max-width: 1024px) {
    .header-container {
        padding: 20px 30px;
    }
    nav ul {
        gap: 25px;
    }
    nav a {
        font-size: 15px;
    }
    .hero-slider {
        height: 500px;
    }
    .slide-content h1 {
        font-size: 48px;
    }
    .slide-content p {
        font-size: 20px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}


/* Mobile Responsive (max-width: 768px) */

@media (max-width: 768px) {
    /* Breadcrumb Mobile */
    .breadcrumb-nav {
        margin-top: 80px;
        padding: 10px 0;
    }
    .breadcrumb {
        padding: 0 20px;
        font-size: 13px;
    }
    .breadcrumb-item {
        font-size: 13px;
    }
    .header-container {
        padding: 15px 20px;
    }
    .logo img {
        height: 50px;
    }
    /* Hide desktop nav, show mobile menu toggle */
    .desktop-nav {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-nav {
        display: block;
        top: 80px;
    }
    /* Hero Slider Mobile */
    .hero-slider {
        margin-top: 80px;
        height: 500px;
        background-color: white;
    }
    .slide {
        align-items: flex-start;
        padding-top: 80px;
    }
    /* Slide 1 - Mobile */
    .slide-1 .slide-content {
        transform: none;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    .slide-1 .slide-content h1,
    .slide-1 .slide-content p {
        color: white;
        text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9), 2px 2px 6px rgba(0, 0, 0, 0.8);
    }
    .slide-1 .slide-content h1 br {
        display: none;
    }
    /* Slide 2 - Mobile */
    .slide-2 {
        background-image: url('../images/banners/water-banner_chp_6330L.jpg') !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }
    .slide-2 .slide-content {
        transform: translateY(-20%) !important;
        position: relative !important;
        top: -50px !important;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    /* Slide 3 - Mobile */
    .slide-3 {
        background-image: url('../images/banners/air-banner_ap_1523D_mobile.png') !important;
        background-size: cover !important;
        background-position: right center !important;
        background-repeat: no-repeat !important;
        background-color: white !important;
    }
    .slide-3 .slide-content {
        display: block !important;
        transform: translateY(-90%) !important;
        position: relative !important;
        top: -100px !important;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    .slide-3 .slide-content p:first-child {
        font-size: 14px !important;
        color: white !important;
        text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9), 2px 2px 6px rgba(0, 0, 0, 0.8);
    }
    .slide-3 .slide-content h1 {
        font-size: 26px !important;
        margin: 10px 0 !important;
        color: white !important;
        text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9), 2px 2px 6px rgba(0, 0, 0, 0.8);
    }
    .slide-3 .slide-content p:last-child {
        font-size: 18px !important;
        color: white !important;
        text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9), 2px 2px 6px rgba(0, 0, 0, 0.8);
    }
    .slide-content h1 {
        font-size: 22px;
        line-height: 1.3;
    }
    .slide-content p {
        font-size: 16px;
    }
    /* Main Hero Section H1 Mobile */
    .main-hero-section h1,
    .hero-intro-content h1 {
        font-size: 1.5em !important;
        line-height: 1.3 !important;
    }
    /* Products Section Mobile */
    .products-section {
        padding: 60px 20px;
    }
    .section-title {
        font-size: 32px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-image {
        height: 250px;
    }
    .product-info h3 {
        font-size: 24px;
    }
    /* R&D Section Mobile */
    .rnd-section {
        padding: 50px 20px;
    }
    .feature-row {
        height: 400px;
        min-height: 400px;
        background-size: cover !important;
        background-position: right center !important;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        position: relative;
    }
    .feature-row::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }
    .feature-text {
        max-width: 100%;
        width: 100%;
        padding: 20px;
        background: transparent;
        border-radius: 0;
        text-align: left;
        margin-top: 0;
        position: relative;
        z-index: 2;
    }
    .feature-text br {
        display: none !important;
    }
    .feature-text h3 {
        font-size: 24px;
        white-space: normal;
        line-height: 1.4;
        margin-bottom: 15px;
        color: white !important;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9), 1px 1px 4px rgba(0, 0, 0, 0.8);
        font-weight: 700;
    }
    .feature-text p {
        font-size: 17px;
        line-height: 1.6;
        color: white !important;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
        font-weight: 500;
    }
    /* Features Section Mobile */
    .features-section {
        padding: 60px 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    /* Footer Mobile */
    footer {
        padding: 40px 20px 20px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 20px;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
    .footer-about h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .footer-about p {
        font-size: 14px;
    }
    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .footer-links a {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .footer-links ul {
        padding-left: 0;
    }
    .footer-links ul li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .footer-bottom {
        padding-top: 20px;
        font-size: 13px;
    }
}


/* Small Mobile (max-width: 480px) */

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    .slide-content h1 {
        font-size: 20px;
    }
    .slide-content p {
        font-size: 14px;
    }
    /* Main Hero Section H1 Small Mobile */
    .main-hero-section h1,
    .hero-intro-content h1 {
        font-size: 1.3em !important;
        line-height: 1.3 !important;
    }
    .section-title {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 16px;
    }
    /* R&D Section - 320px 최적화 */
    .rnd-section {
        padding: 40px 15px;
    }
    .feature-row {
        height: 350px;
        min-height: 350px;
        padding: 20px 15px;
    }
    .feature-text {
        padding: 15px;
    }
    .feature-text h3 {
        font-size: 18px !important;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    .feature-text p {
        font-size: 13px !important;
        line-height: 1.5;
    }
    /* Footer Small Mobile */
    footer {
        padding: 30px 15px 15px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 15px;
    }
    .footer-about {
        grid-column: 1;
    }
    .footer-about h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .footer-about p {
        font-size: 13px;
        line-height: 1.6;
    }
    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    .footer-links a,
    .footer-links ul li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .footer-bottom {
        padding-top: 15px;
        font-size: 12px;
    }
}


/* FAQ-specific styles */

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.faq-category-nav {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.faq-category-nav h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.faq-category-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.faq-category-nav li {
    margin-bottom: 8px;
    display: block;
    width: 100%;
}

.faq-category-nav a {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.95rem;
    width: 100%;
}

.faq-category-nav a:hover,
.faq-category-nav a.active {
    background: #0099dc;
    color: white;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0099dc;
}

.faq-item {
    background: white;
    border: 1px solid #eef2f5;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background: white;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: #0099dc;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: #667085;
    line-height: 1.8;
    margin: 0;
}

.faq-answer ul {
    color: #667085;
    line-height: 1.8;
    margin: 10px 0;
    padding-left: 20px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.faq-cta {
    background: linear-gradient(135deg, #0099dc 0%, #007ab8 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 50px;
}

.faq-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

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

.faq-cta .btn-primary,
.faq-cta .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.faq-cta .btn-primary {
    background: white;
    color: #0099dc;
}

.faq-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.faq-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.faq-cta .btn-secondary:hover {
    background: white;
    color: #0099dc;
}


/* Mobile responsive */

@media (max-width: 768px) {
    .faq-container {
        padding: 0 15px;
    }
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    .faq-section h2 {
        font-size: 1.4rem;
    }
    .faq-question h3 {
        font-size: 1rem;
    }
    .faq-question {
        padding: 15px 18px;
    }
    .faq-item.active .faq-answer {
        padding: 0 18px 20px 18px;
    }
    .faq-cta {
        padding: 30px 20px;
    }
    .faq-cta h3 {
        font-size: 1.4rem;
    }
    .faq-cta p {
        font-size: 1rem;
    }
    .faq-cta-buttons {
        flex-direction: column;
    }
    .faq-cta .btn-primary,
    .faq-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }
}