/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    color: #F4BE5C;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #F4BE5C;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Decorative Elements */
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation: float 8s infinite ease-in-out;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 10%;
    animation: float 10s infinite ease-in-out reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 20%;
    animation: float 7s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F4BE5C 0%, #FEE28A 100%);
    padding: 120px 20px;
    text-align: center;
    color: #333;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.cta-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #F4BE5C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: #666;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.feature {
    flex: 1;
    min-width: 250px;
    background-color: #FEE28A;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid #F4BE5C;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature h3 {
    color: #F4BE5C;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Privacy Policy and Terms of Service Pages */
.privacy-policy, .terms-of-service {
    padding: 80px 0;
    background-color: #fff;
}

.privacy-policy h1, .terms-of-service h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.privacy-policy h2, .terms-of-service h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #F4BE5C;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.privacy-policy p, .terms-of-service p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.privacy-policy ul, .terms-of-service ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-policy li, .terms-of-service li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-policy em, .terms-of-service em {
    color: #777;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    margin-bottom: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #F4BE5C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    nav {
        flex-direction: column;
        padding: 15px;
        position: relative;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 5px 10px;
    }
    
    .hero {
        padding: 80px 20px 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Hide decorative circles on mobile */
    .circle {
        display: none;
    }
    
    .about {
        padding: 60px 20px;
    }
    
    .about h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .features {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature {
        padding: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .privacy-policy, .terms-of-service {
        padding: 60px 20px;
    }
    
    .privacy-policy h1, .terms-of-service h1 {
        font-size: 1.8rem;
    }
    
    .privacy-policy h2, .terms-of-service h2 {
        font-size: 1.4rem;
    }
    
    .privacy-policy p, .terms-of-service p {
        font-size: 1rem;
    }
}