* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.header {
    background: #000;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(255,255,255,0.1);
}

.logo {
    max-height: 80px;
    display: block;
    margin: 0 auto;
}

/* Content */
.content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.content article {
    line-height: 1.8;
    font-size: 1.1rem;
}

.content article p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Main */
.main {
    flex: 1;
    background: #000;
    color: white;
    padding: 2rem 0;
}

/* Benefits Section */
.benefits {
    text-align: center;
    margin: 2rem auto;
    max-width: 1000px;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 3rem auto;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #8e44ad);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
    background: linear-gradient(135deg, #2980b9, #7d3c98);
}

/* Hero improvements */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
    color: #fff;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 30px 0;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: #3498db;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.8;
    padding-top: 20px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .content {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .content article {
        font-size: 1rem;
    }
    
    .benefits h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .cta-section {
        margin: 2rem auto;
        padding: 2rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .logo {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 20px 0;
    }
}
