/* Reset & Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #1a3a6e 0%, #2c5aa0 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    max-height: 80px;
    margin-bottom: 15px;
}

.site-header h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: white;
    padding: 50px 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
    color: #1a3a6e;
    margin-bottom: 20px;
}

.cta-box {
    background: #f0f7ff;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1a3a6e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #2c5aa0;
}

.info-card h4 {
    color: #1a3a6e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #1a3a6e;
    color: white;
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
}

footer a {
    color: #8bb8ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .cta-button {
        display: block;
        max-width: 250px;
        margin: 20px auto 0;
    }
}