/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Sections */
.hero-privacy, .hero-terms, .hero-thanks {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-privacy-container, .hero-terms-container, .hero-thanks-container {
   
    max-width: 800px;
    margin: 0 auto;
}
h1 {
   margin-top: 100px;
}
.hero-privacy h1, .hero-terms h1, .hero-thanks h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1rem;
}

.hero-privacy p, .hero-terms p, .hero-thanks p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-thanks p i {
    color: #28a745;
    margin-right: 0.5rem;
}

/* Content Sections */
.privacy-content, .terms-content {
    padding: 3rem 1rem;
    background: #fff;
}

.privacy-container, .terms-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    color: #222;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.privacy-grid, .terms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.privacy-item, .terms-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.privacy-item.visible, .terms-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.privacy-item h3, .terms-item h3 {
    font-size: 1.5rem;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.privacy-item p, .terms-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.privacy-item ul, .terms-item ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-item ul li, .terms-item ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.privacy-item ul li strong, .terms-item ul li strong {
    color: #333;
}

.privacy-item a, .terms-item a {
    color: #FF6B35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-item a:hover, .terms-item a:hover {
    color: #e55a24;
}

/* Thanks CTA Section */
.thanks-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: #FF6B35;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button i {
    margin-right: 0.5rem;
}

.cta-button:hover {
    background: #e55a24;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .privacy-grid, .terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-privacy h1, .hero-terms h1, .hero-thanks h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .privacy-item h3, .terms-item h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .hero-privacy, .hero-terms, .hero-thanks {
        padding: 3rem 1rem;
    }

    .hero-privacy h1, .hero-terms h1, .hero-thanks h1 {
        font-size: 2rem;
    }

    .thanks-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}