/* 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: #e0e0e0;
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    border-bottom: 2px solid #00966F;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00966F;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 150, 111, 0.3);
}

.subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 400;
}

/* Main content */
main {
    margin-bottom: 60px;
}

.terms-section,
.privacy-section,
.contact-section {
    margin-bottom: 50px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 150, 111, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.terms-section h2,
.privacy-section h2,
.contact-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #00966F;
    margin-bottom: 10px;
    border-bottom: 2px solid #00966F;
    padding-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

.content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 3px solid #00966F;
}

.content p {
    margin-bottom: 15px;
    color: #d0d0d0;
    text-align: justify;
}

.content ul {
    margin: 15px 0 15px 30px;
    color: #d0d0d0;
}

.content li {
    margin-bottom: 8px;
    position: relative;
}

.content li::marker {
    color: #00966F;
}

/* Contact section */
.contact-info {
    background: rgba(0, 150, 111, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 150, 111, 0.3);
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-info strong {
    color: #00966F;
}

/* Links */
a {
    color: #00966F;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00b87a;
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 150, 111, 0.3);
    color: #888;
}

footer p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .terms-section,
    .privacy-section,
    .contact-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .content h3 {
        font-size: 1.2rem;
    }

    header {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .terms-section h2,
    .privacy-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .content h3 {
        font-size: 1.1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: rgba(0, 150, 111, 0.3);
    color: #ffffff;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #00966F;
    outline-offset: 2px;
}