@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary-color: #6a89cc;
    --secondary-color: #4a69bd;
    --accent-color: #ff7675;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #555;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

/* === Content Section === */
.content-section {
    padding: 80px 5%;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 700;
}

/* === Legal Content Styling === */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-content p {
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.about-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-content ul li {
    margin-bottom: 10px;
}

.about-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-content a:hover {
    color: var(--accent-color);
}

.about-content i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* === Thank You Page Specific Styling === */
#thank-you .about-content {
    text-align: center;
}

#thank-you .about-content p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#thank-you .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#thank-you .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* === Scroll Animations === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}
li {
    margin-bottom: 10px;
    
}
/* === Responsive Design === */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .about-content {
        font-size: 1rem;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }
}