/* Reset e 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: #f8f9fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Main content */
main {
    padding: 60px 0;
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e1e5e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Company info */
.company-info {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.company-info h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.company-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.company-details a {
    color: #667eea;
    text-decoration: none;
}

.company-details a:hover {
    text-decoration: underline;
}

/* Quick links */
.quick-links {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quick-links h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    margin-bottom: 15px;
}

.quick-links a {
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.quick-links a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

footer p {
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Privacy pages specific styles */
.privacy-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.privacy-content {
    background: white;
    border-radius: 12px;
    padding: 60px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    line-height: 1.8;
}

.privacy-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-content h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.privacy-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.privacy-content h4 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 25px 0 10px 0;
}

.privacy-content p, .privacy-content li {
    margin-bottom: 10px;
    color: #555;
}

.privacy-content ul, .privacy-content ol {
    margin: 15px 0 15px 30px;
}

.privacy-content strong {
    color: #2c3e50;
}

.privacy-content a {
    color: #3498db;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.back-button {
    display: inline-block;
    margin-bottom: 30px;
    background: #95a5a6;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.back-button:hover {
    background: #7f8c8d;
}

.highlight-box {
    background: #ecf0f1;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 6px 6px 0;
}

.success-badge {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.warning-badge {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.data-item {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 15px 0;
    border-radius: 0 6px 6px 0;
}

.data-item p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.purpose-section, .service-section, .permission-section {
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.purpose-section p:first-child, .service-section p:first-child, .permission-section p:first-child {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .privacy-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .privacy-content {
        padding: 30px 20px;
        margin: 15px;
    }
    
    header {
        padding: 40px 0;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
}
