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

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.8;
    color: #2d3748;
    background-color: #f8f9fa;
}

header {
    background: #1a365d;
    color: #fff;
    padding: 1.2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    border-bottom: 3px solid #2c5282;
}

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

nav .logo {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    color: #cbd5e0;
}

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

.hero {
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    text-align: center;
    margin-bottom: 2rem;
    border-top: 4px solid #1a365d;
}

.hero h1 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    margin-bottom: 2rem;
    border-left: 4px solid #2c5282;
}

.content h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.content h3 {
    color: #2c5282;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.content ul, .content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content li {
    margin-bottom: 0.5rem;
}

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

.info-card {
    background: #f8f9fa;
    padding: 1.8rem;
    border-radius: 2px;
    border-left: 4px solid #2c5282;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.info-card h3 {
    color: #1a365d;
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.info-card p {
    color: #4a5568;
    font-size: 0.95rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer {
    background: #1a365d;
    color: #e2e8f0;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 3rem;
    border-top: 4px solid #2c5282;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer p {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

footer a {
    color: #90cdf4;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    transition: box-shadow 0.3s;
    text-align: center;
    border-top: 3px solid #2c5282;
}

.service-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.18);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    opacity: 0.85;
}

.service-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stats-section {
    background: #1a365d;
    padding: 3.5rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.stats-section h2 {
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #90cdf4;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-section {
    background: #2c5282;
    color: #fff;
    padding: 3.5rem;
    border-radius: 2px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #1a365d;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background 0.3s, color 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 2px solid #fff;
}

.cta-button:hover {
    background: #1a365d;
    color: #fff;
}

.features-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    margin-bottom: 2rem;
    border-left: 4px solid #2c5282;
}

.features-section h2 {
    color: #1a365d !important;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: #2c5282;
    flex-shrink: 0;
    font-weight: bold;
}

.feature-content h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.feature-content p {
    color: #4a5568;
    font-size: 0.95rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.values-section {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.values-section h2 {
    color: #1a365d !important;
}

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

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    border-top: 4px solid #2c5282;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.value-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.value-card p {
    color: #4a5568;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .content {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2rem;
    }
}
