* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --accent: #00D9FF;
    --dark: #0A0E27;
    --dark-light: #1A1F3A;
    --text-light: #8B93B0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1f3a 100%);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Subtle Background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(247, 248, 254, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.35);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
    z-index: 1000;

    transition: transform 0.35s ease, opacity 0.35s ease;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;

}

.logo {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links .hero-badge {
    display: none;
}

.nav-links a {
    color: rgb(71, 71, 71);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2e2e2e;
}

.nav-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.nav-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-text .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-badge {

    margin-bottom: 10px;
}

.hero-text .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    /* Animation */
    animation: float 2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
        /* move up 5px */
    }
}


.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* about  */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0px;
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}


.section-title {
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-container {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 600;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 10px;
    margin-top: 35px;
}

.feature-item {
    background: rgba(102, 126, 234, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}




/* features  */

.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 45px 35px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(102, 126, 234, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 52px;
    margin-bottom: 25px;
    display: block;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-arrow {
    color: var(--accent, #00D9FF);
    animation: arrowMove 1.2s ease-in-out infinite;
}

@keyframes arrowMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }

    100% {
        transform: translateX(0);
    }
}

.feature-desc {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}


/* how it work */
.benefits {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infographic-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.center-circle {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.circle-outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px dashed #d0d0d0;
    position: relative;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.circle-inner h2 {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin-bottom: 5px;
}

.circle-inner h3 {
    font-size: 24px;
    color: #333;
    font-weight: 800;
}

.circle-dots {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff8c42;
    border-radius: 50%;
}

.dot-1 {
    top: 20%;
    right: 15%;
}

.dot-2 {
    top: 50%;
    right: 8%;
}

.dot-3 {
    bottom: 20%;
    right: 15%;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: slideIn 0.6s forwards;
}

.info-item:nth-child(1) {
    animation-delay: 0.2s;
}

.info-item:nth-child(2) {
    animation-delay: 0.4s;
}

.info-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #ddd);
    position: relative;
}

.connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #ddd;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-size: 32px;
    flex-shrink: 0;
}

.content-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    min-width: 320px;
    position: relative;
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.info-item:nth-child(1) .content-box::before {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.info-item:nth-child(2) .content-box::before {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.info-item:nth-child(3) .content-box::before {
    background: linear-gradient(135deg, #7c8a9e, #5a6c7d);
}

.content-box h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.info-item:nth-child(1) .content-box h4 {
    color: #ff6b35;
}

.info-item:nth-child(2) .content-box h4 {
    color: #357abd;
}

.info-item:nth-child(3) .content-box h4 {
    color: #5a6c7d;
}

.content-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/* Banifits  */

  .benefits-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 0px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .section-description {
            color: var(--text-light);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            background: rgba(102, 126, 234, 0.05);
            border: 1px solid rgba(102, 126, 234, 0.15);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(0, 217, 255, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        }

        .benefit-content {
            position: relative;
            z-index: 1;
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: transform 0.4s ease;
            position: relative;
        }

        .benefit-icon svg {
            width: 36px;
            height: 36px;
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .benefit-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #fff;
            font-weight: 600;
        }

        .benefit-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
        }

        .benefit-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 48px;
            font-weight: 700;
            color: rgba(102, 126, 234, 0.1);
            z-index: 0;
        }


/* CTA Section */
.waitlist {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(0, 217, 255, 0.05));
    border-radius: 30px;
    padding: 80px 60px;
    margin: 30px 0;
}

.waitlist-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.waitlist-image {
    flex: 0 0 45%;
}

.waitlist-image img {
    width: 75%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 14px 40px rgba(0, 17, 94, 0.35);
    display: block;
    margin: 0 auto;
}

.waitlist-form {
    flex: 1;
    text-align: center;
}

.waitlist h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.waitlist p {
    font-size: 20px;
    color: #8B93B0;
    margin-bottom: 40px;
}

.form-group {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


input[type="email"],
input[type="text"],
textarea {
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    font-family: inherit;
}

textarea {
    border-radius: 25px;
    resize: vertical;
    min-height: 120px;
    resize: none;
}

input:focus,
textarea:focus {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

input::placeholder,
textarea::placeholder {
    color: #8B93B0;
}



/* Mobile responsive */
@media (max-width: 768px) {
    .waitlist {
        padding: 40px 30px;
    }

    .waitlist-content {
        flex-direction: column;
        gap: 40px;
    }

    .waitlist-image {
        flex: 0 0 auto;
        width: 100%;
        order: -1;
        /* This ensures image stays on top on mobile */
    }

    .waitlist-form {
        width: 100%;
    }

    .waitlist h2 {
        font-size: 36px;
    }

    .waitlist p {
        font-size: 18px;
    }
}

/* Footer */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.footer-desc {
    color: #8B93B0;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-links a {
    color: #8B93B0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #8B93B0;
    font-size: 14px;
}

.footer-bottom a {
    color: #AAB2FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #FFFFFF;
}

.contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8B93B0;
}








  .faq-section {
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
            padding: 80px 20px;
            animation: fadeInUp 0.8s ease-out;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header h2 {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .faq-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
            transform: translateY(-2px);
        }

        .faq-item.active {
            background: rgba(255, 255, 255, 0.08);
        }

        .faq-question {
            padding: 24px 28px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            position: relative;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            opacity: 0;
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover .faq-question::before,
        .faq-item.active .faq-question::before {
            opacity: 1;
        }

        .faq-question h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #fff;
            flex: 1;
            transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover .faq-question h3 {
            color: var(--accent);
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-icon::after {
            content: '+';
            color: #fff;
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .faq-item.active .faq-icon {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            transform: rotate(135deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                        padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                        opacity 0.5s ease;
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 28px 24px 28px;
            opacity: 1;
        }

        .faq-answer p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.8;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes glow {
            from {
                filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.4));
            }
            to {
                filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.6));
            }
        }

        @media (max-width: 768px) {
            .faq-header h2 {
                font-size: 2.2rem;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 20px 20px;
            }
        }