/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF5A5F;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FF5A5F;
}

/* Main content */
main {
    margin-top: 70px;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #FF5A5F, #FF8A5E);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features section */
.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #FF5A5F;
    margin-bottom: 1rem;
}

/* Support section */
.support {
    background-color: white;
    padding: 4rem 2rem;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.faq-item h4 {
    color: #FF5A5F;
    margin-bottom: 0.5rem;
}

/* Privacy section */
.privacy {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy a {
    color: #FF5A5F;
    text-decoration: none;
}

/* Privacy Policy page specific styles */
.privacy-policy {
    padding: 4rem 2rem;
    background-color: white;
}

.privacy-policy h1 {
    color: #FF5A5F;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-policy section {
    margin-bottom: 3rem;
}

.privacy-policy h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.privacy-policy ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.privacy-policy li {
    margin-bottom: 0.5rem;
}

/* Contact section */
.contact {
    padding: 4rem 2rem;
    text-align: center;
    background-color: white;
}

.contact-button {
    display: inline-block;
    background-color: #FF5A5F;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #FF8A5E;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    /* Header modifications for mobile */
    header {
        position: static; /* Remove fixed/absolute positioning completely */
        margin-bottom: 20px;
    }
    
    nav {
        flex-direction: column;
        padding: 0.8rem 0.5rem;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
        text-align: center;
        padding: 0.8rem 0;
    }
    
    /* Reset main margin since header is no longer fixed */
    main {
        margin-top: 0;
    }
    
    .hero {
        margin-top: 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-policy {
        padding: 2rem 1rem;
    }
    
    .privacy-policy h1 {
        font-size: 2rem;
    }
    
    .privacy-policy h2 {
        font-size: 1.5rem;
    }
    
    /* Remove unneeded anchor position adjustments */
    section[id]:before {
        display: none;
    }
} 