/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variables */
:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --secondary-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background: #f8fafc;
    --card-bg: #ffffff;
    --border-radius: 16px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header .subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Header */
@media (max-width: 768px) {
    .header {
        padding: 3rem 1.5rem;
        margin-bottom: 3rem;
    }

    .header h1 {
        font-size: 2.5rem;
    }

    .header .subtitle {
        font-size: 1.25rem;
    }

    .stats {
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-options {
    margin: 0.5rem 0;
}

/* Pricing Options Layout */
.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.pricing-option {
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.pricing-option.annual {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(79, 70, 229, 0.2);
    transform: scale(1.02);
}

.pricing-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-option.annual:hover {
    transform: scale(1.02) translateY(-2px);
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.billing-period {
    font-size: 0.8rem;
    color: var(--text-light);
}

.pricing-divider {
    text-align: center;
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
    position: relative;
}

.pricing-divider::before,
.pricing-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.pricing-divider::before {
    left: 0;
}

.pricing-divider::after {
    right: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    gap: 0.5rem;
}

.cta-button .icon {
    font-size: 1.25rem;
}

.cta-button.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.1);
}

.cta-button.whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(37, 211, 102, 0.2);
}

.cta-button.telegram {
    background: #0088cc;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 136, 204, 0.1);
}

.cta-button.telegram:hover {
    background: #0077b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 136, 204, 0.2);
}

/* Testimonials */
.testimonials {
    margin: 3rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: auto;
    min-width: 200px;
    gap: 0.5rem;
}

.cta-button .icon {
    font-size: 1.25rem;
}

.cta-button.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.1);
}

.cta-button.whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(37, 211, 102, 0.2);
}

.cta-button.telegram {
    background: #0088cc;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 136, 204, 0.1);
}

.cta-button.telegram:hover {
    background: #0077b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 136, 204, 0.2);
}

.social-contact {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius);
    text-align: center;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5865F2;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    background: rgba(88, 101, 242, 0.1);
    transition: all 0.3s ease;
}

.discord-link:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
}

.discord-link .icon {
    font-size: 1.25rem;
}

.guarantee {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card.popular {
        transform: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .container {
        padding: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1rem;
    }

    .card {
        padding: 1rem;
    }

    .features-list li {
        padding: 0.4rem 0;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .pricing-option.annual {
        transform: none;
    }

    .pricing-option.annual:hover {
        transform: translateY(-2px);
    }
}

/* Pricing Cards */
.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.plan-description {
    text-align: center;
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    color: var(--text-light);
}

.features-list {
    margin: 1rem 0;
    padding: 0;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: translateX(3px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive Features List */
@media (max-width: 768px) {
    .feature-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .feature-icon {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.8rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}

.card-footer {
    margin-top: 0.75rem;
}

.trial-offer {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* Code Ownership Card */
.code-ownership-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 2rem auto 0 auto;
    text-align: center;
}

.ownership-header {
    margin-bottom: 1.5rem;
}

.ownership-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ownership-header .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ownership-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.ownership-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.feature {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius);
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin: 0 0 0.5rem;
    color: var(--text-color);
}

.feature-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.ownership-footer {
    margin-top: 2rem;
}

.ownership-footer .note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--background);
    padding: 2rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    gap: 0.5rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-hover);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 10px;
        border-radius: 5px;
    }

    .nav-links a:hover {
        background-color: var(--primary-color);
        color: white;
    }

    .nav-cta {
        margin-top: 10px;
        width: 100%;
    }
}

/* Adjust container padding for fixed navbar */
.container {
    padding-top: 5rem;
}

/* How It Works Section */
.section#how-it-works {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.section#how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section#how-it-works h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.section#how-it-works ol {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section#how-it-works ol li {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    counter-increment: step-counter;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.section#how-it-works ol li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.section#how-it-works ol li::before {
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.section#how-it-works ol li p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive How It Works */
@media (max-width: 768px) {
    .section#how-it-works {
        padding: 2rem 1.5rem;
    }

    .section#how-it-works h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .section#how-it-works ol li {
        padding: 1.5rem;
        gap: 1rem;
    }

    .section#how-it-works ol li::before {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .section#how-it-works ol li p {
        font-size: 1rem;
    }
}

/* FAQ Section */
.section.faq {
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.section.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section.faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-question h3 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .section.faq {
        padding: 2rem 1.5rem;
    }

    .section.faq h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Adjust this value to match your header height */
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Policy Pages */
.section.policy {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.section.policy h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .section.policy {
        padding: 2rem 1.5rem;
    }

    .section.policy h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 1.25rem;
    }

    .policy-section h2 {
        font-size: 1.25rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 0.95rem;
    }
}