/* ========== TYPOGRAPHY ========== */
h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.section-title {
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

/* ========== HERO SECTION ========== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 120px 2rem 0 2rem;
    background: transparent;
}

.hero-cta {
    margin-top: 1.5rem;
}

.hero-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem;
}

.hero-image {
    flex-shrink: 0;
    text-align: center;
}

.hero-image img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
}

.hero-center {
    flex: 1;
}

.hero-title {
    color: var(--primary-color);
    font-size: 3rem;
    margin-top: 5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.hero-details {
    text-align: left;
    max-width: 600px;
}

.hero-details ul {
    list-style-position: inside;
    margin: 1rem 0;
    padding: 0;
}

.hero-details li {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0.3rem 0;
    color: #ccc;
}

.hero-right {
    flex: 1;
}

.hero-info-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem 2rem;
    margin: -17rem auto 2rem auto;
    max-width: 900px;
}

.info-content {
    text-align: center;
}

.info-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section > .container > p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 250px;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-section h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.newsletter-section > .container > p:nth-of-type(1) {
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1rem;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: var(--light-text);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.08);
}

.newsletter-note {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    border-top: 2px solid var(--primary-color);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    flex-wrap: wrap;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    flex: 1;
    min-width: 250px;
}

.cookie-content p {
    margin: 0;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ========== FAQ SECTION ========== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.faq-question {
    width: 100%;
    background: rgba(99, 102, 241, 0.1);
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.2);
    padding-left: 2rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.8;
    color: var(--gray-text);
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ========== RESPONSIVE SECTIONS ========== */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1rem;
        margin-bottom: 2rem;
    }

    .hero-content-wrapper {
        flex-direction: column !important;
        gap: 1.5rem;
        width: 100%;
    }

    .hero-image {
        width: 100% !important;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-image img {
        max-height: 280px !important;
        width: auto;
        object-position: center top;
    }

    .hero-center {
        width: 100% !important;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-details {
        text-align: left;
        margin: 1rem 0;
    }

    .hero-details ul {
        margin-left: 1.5rem;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

    .hero-details li {
        margin-bottom: 0.5rem;
    }

    .hero-cta {
        margin-top: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-info-box {
        padding: 2rem 1rem;
        margin-top: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 2rem;
        max-width: calc(100% - 2rem);
        box-sizing: border-box;
    }

    .info-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
        min-width: unset;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        font-size: 16px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 1.5rem 1rem;
    }

    .hero {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .hero-content-wrapper {
        flex-direction: column !important;
        gap: 1.25rem;
    }

    .hero-image {
        width: 100% !important;
        max-width: 240px;
        margin: 0 auto;
    }

    .hero-image img {
        max-height: 240px !important;
        width: 100%;
        object-position: center top;
    }

    .hero-center {
        width: 100% !important;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-details {
        text-align: left;
        margin: 0.75rem 0;
        font-size: 0.9rem;
    }

    .hero-details ul {
        margin-left: 1rem;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }

    .hero-details li {
        margin-bottom: 0.3rem;
    }

    .hero-details .section-title {
        font-size: 0.95rem;
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-cta {
        margin-top: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }

    .hero-info-box {
        padding: 1.25rem 1rem;
    }

    .hero-info-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter-form input {
        font-size: 16px;
        padding: 0.65rem;
        width: 100%;
    }

    .newsletter-form button {
        font-size: 16px;
        padding: 0.65rem;
        width: 100%;
    }

    .cookie-banner {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }

    .cookie-content p {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        gap: 0.5rem;
    }

    .cookie-buttons .btn {
        flex: 1;
        padding: 0.5rem;
        font-size: 0.8rem;
        min-height: 36px;
    }

    .faq-question {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .hero {
        margin-bottom: 1.5rem;
    }

    .hero-info-box {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 1.5rem;
        max-width: calc(100% - 2rem);
        box-sizing: border-box;
    }

    .info-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}
