/* --- STYLES FOR PRIVACY POLICY, TERMS OF SERVICE, AND THANK YOU PAGES --- */
:root {
    --primary-color: #00a8ff;
    --secondary-color: #e03a73;
    --background-color: #0d1117;
    --surface-color: #161b22;
    --text-color: #c9d1d9;
    --heading-color: #ffffff;
    --border-color: #30363d;
    --font-family: 'Poppins', sans-serif;
}

.content-block {
    margin-bottom: 2rem;
}

.content-block h3 {
    color: var(--heading-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-block p {
    font-size: 1rem;
    color: var(--text-color);
}

.content-block ul {
    list-style: disc;
    margin-left: 2rem;
}

.content-block ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
}

.content-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.content-block a:hover {
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.thanks-actions .cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.thanks-actions .cta-button:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .content-block h3 {
        font-size: 1.3rem;
    }

    .content-block ul {
        margin-left: 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions .cta-button {
        width: 100%;
        text-align: center;
    }
}