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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background: #0A2540;
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav ul a:hover {
    color: #4CAF50;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #0A2540;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #1a4a6e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #0A2540;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 2px solid #0A2540;
    transition: 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #0A2540;
    color: white;
}

.badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Features */
.features {
    background: white;
    padding: 4rem 2rem;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    color: #0A2540;
    margin-bottom: 2rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f5f7fa;
    border-radius: 15px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #0A2540;
    margin-bottom: 0.5rem;
}

/* About */
.about {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    color: #0A2540;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1rem;
}

/* Download */
.download {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0A2540, #1a4a6e);
    color: white;
}

.download h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.download p {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #0A2540;
    color: white;
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Legal Pages */
.legal {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-container h1 {
    color: #0A2540;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.8rem;
}

.legal section {
    margin-bottom: 2rem;
}

.legal h2 {
    color: #0A2540;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .buttons {
        justify-content: center;
    }
    
    .badges {
        justify-content: center;
    }
}