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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f5f6f8;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #8dc63f;
    color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Main content */
.main {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

/* Privacy Policy content */
.privacy-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    line-height: 1.7;
    max-width: 100%;
}

.privacy-content h1 {
    color: #222;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 3px solid #8dc63f;
    padding-bottom: 0.5rem;
}

.privacy-content h2 {
    color: #4f4f4f;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1.2rem 0;
    padding-top: 1rem;
}

.privacy-content h3 {
    color: #222;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.8rem 0 0.8rem 0;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: #4f4f4f;
    line-height: 1.6;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-content li {
    margin-bottom: 0.6rem;
    color: #4f4f4f;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-content li:before {
    content: "•";
    color: #8dc63f;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.privacy-content strong {
    color: #222;
    font-weight: 600;
}

.privacy-content hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 2.5rem 0;
}

/* Footer */
.footer {
    background: #222;
    color: #cfd1d3;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .privacy-content {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-content h2 {
        font-size: 1.3rem;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
}

/* Print styles */
@media print {
    .header, .footer {
        display: none;
    }
    
    .privacy-content {
        box-shadow: none;
        padding: 0;
    }
}

/* Homepage styles */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #8dc63f;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #4f4f4f;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #8dc63f;
    color: white;
}

.btn-primary:hover {
    background: #297f00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(141, 198, 63, 0.4);
}

.btn-secondary {
    background: #cfd1d3;
    color: #4f4f4f;
    border: 2px solid #cfd1d3;
}

.btn-secondary:hover {
    background: #999c9e;
    border-color: #999c9e;
    transform: translateY(-2px);
}

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

.feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.feature h3 {
    color: #222;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature p {
    color: #4f4f4f;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}
