section.hero {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%);
    min-height: 100dvh;
    width: 100vw;
}

@media (max-width: 768px) {
    section.hero {
        min-height: auto;
        width: 100%;
        padding-top: 5rem;
        margin-bottom: 0 !important;
    }
}

section.hero .hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    backdrop-filter: blur(1px);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--brand) 60%, transparent);
}



.hero-faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-faq .faq-card {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-hero {
    grid-column: span 2;
    text-align: center;
    color: white;
}

.faq-hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .faq-hero {
        grid-column: span 1;
    }

    .faq-hero h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .faq-hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.hero-faq .faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.horizontal-scroll-wrapper>section.hero {
    margin-bottom: calc(100vw - 100dvh);
}

section.info-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%);
    color: white;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

@media (max-width: 768px) {
    section.info-section {
        padding: 2rem 1rem;
        min-height: auto;
    }
}

section.info-section .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-posts {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    height: auto;
    overflow: visible;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .faq-posts {
        padding: 10px;
        gap: 15px;
    }
}

.faq-posts .faq-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text);
}

.faq-posts .faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.faq-icon {
    font-size: 2rem;
    color: var(--brand);
}

.faq-question-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    color: #333;
    font-family: 'Ubuntu', sans-serif;
}

@media (max-width: 768px) {
    .faq-question-title {
        font-size: 1.1rem;
    }
}

.faq-question-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.faq-question-text a {
    color: #914ac8;
    text-decoration: none;
    font-weight: 500;
}

.faq-question-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    section.hero .hero-content {
        padding: 1rem;
        max-height: 70vh;
        overflow: scroll;
    }

    section.hero .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    section.hero .hero-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-faq {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-bottom: 2rem;
    }

    section.info-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    section.info-section .container {
        padding: 1rem;
        gap: 1rem;
    }

    .faq-posts {
        padding: 40px 10px;
        gap: 20px;
        grid-template-columns: 2fr;
    }
}