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

:root {
    --deep-blue: #0A66C2;
    --light-blue: #004182;
    --white: #FFFFFF;
    --light-gray: #F3F2EF;
    --dark-gray: #666666;
    --border-color: #E0E0E0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--white);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

/* Hero Section / Header */
header {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

header h1 i {
    color: #FFD700;
    margin-right: 10px;
}

header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

header a {
    display: inline-block;
    background-color: var(--white);
    color: var(--deep-blue);
    padding: 15px 35px;
    margin: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

header a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--light-gray);
}

header a i {
    margin-right: 8px;
}

/* Sections */
section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-color);
}

section:last-of-type {
    border-bottom: none;
}

section h2 {
    color: var(--deep-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

section h3 {
    color: var(--light-blue);
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

section p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

section ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--deep-blue);
    font-weight: 700;
    font-size: 20px;
}

section a {
    display: inline-block;
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 12px 30px;
    margin: 10px 5px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

section a:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

/* Footer */
footer {
    background-color: var(--deep-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Enhanced Navigation */
.top-navigation {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 40px;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-container i {
    font-size: 32px;
    color: var(--deep-blue);
}

.logo-container h1 {
    color: var(--deep-blue);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.logo-container span {
    color: var(--dark-gray);
    font-size: 11px;
    font-weight: 400;
    display: block;
    margin-top: -5px;
}

.nav-bar {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-bar a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-bar a:hover {
    color: var(--deep-blue);
    background-color: var(--light-gray);
}

.nav-bar a i {
    font-size: 18px;
}

.nav-bar .btn-primary {
    background: linear-gradient(135deg, var(--deep-blue), var(--light-blue));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-bar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

/* Section Icons */
.section-icon {
    text-align: center;
    margin-bottom: 25px;
}

.section-icon i {
    font-size: 56px;
    color: var(--deep-blue);
    opacity: 0.9;
}

/* Features Grid */
#features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.15);
    border-color: var(--deep-blue);
}

.feature-card i {
    font-size: 42px;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.feature-card h4 {
    color: var(--deep-blue);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 15px;
    color: var(--dark-gray);
    text-align: center;
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-item i {
    font-size: 48px;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--deep-blue);
    margin: 10px 0 5px 0;
}

.stat-item p {
    font-size: 16px;
    color: var(--dark-gray);
    text-align: center;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-blue), var(--light-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.step i {
    font-size: 36px;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

/* CTA Section */
#cta-section {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--light-blue) 100%);
    color: white;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(10, 102, 194, 0.25);
}

#cta-section h2 {
    color: white;
    font-size: 36px;
}

#cta-section p {
    color: white;
    opacity: 0.95;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    header p {
        font-size: 16px;
    }

    section h2 {
        font-size: 26px;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .nav-bar {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-navigation {
        padding: 0 20px;
    }

    .process-steps {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}