/* 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;
}

/* Landing page styles */
.landing-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.logo-wrapper {
    text-align: center;
    padding: 40px;
}

.brand-logo {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Container for privacy policy page */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 300;
}

.last-updated {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

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

.intro {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #007bff;
}

.intro p {
    font-size: 1.1rem;
    color: #495057;
    margin: 0;
}

/* Sections */
.section {
    margin-bottom: 30px;
    padding: 20px 0;
}

.section:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 400;
}

h3 {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 500;
}

p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

/* Lists */
ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

li strong {
    color: #2c3e50;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo-wrapper {
        padding: 20px;
    }
    
    .brand-logo {
        max-width: 250px;
        max-height: 250px;
    }
    
    .container {
        padding: 15px;
        margin: 0;
        box-shadow: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .intro {
        padding: 15px;
    }
    
    .section {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        max-width: 200px;
        max-height: 200px;
    }
}

/* Print styles */
@media print {
    body {
        background-color: white;
    }
    
    .container {
        box-shadow: none;
        max-width: none;
    }
    
    .intro {
        background-color: transparent;
        border: 1px solid #ddd;
    }
}