/* Import Baloo2 font */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Baloo2-Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #fcfaf4;
    min-height: 100vh;
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
}

/* Header styles */
.header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #bcbcbc;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c4760;
    font-family: 'Baloo2-Bold', sans-serif;
}

.header h2 {
    font-size: 20px;
    color: #424242;
    font-family: 'Baloo2-Regular', sans-serif;
}

/* Hero section styles */
.hero {
    text-align: center;
    padding: 120px 0 100px;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c4760;
    font-family: 'Baloo2-Bold', sans-serif;
    letter-spacing: -1px;
}

.hero .tagline {
    font-size: 24px;
    font-weight: 600;
    color: #2c4760;
    margin-bottom: 24px;
    font-family: 'Baloo2-Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p:not(.tagline) {
    font-size: 20px;
    color: #424242;
    margin-bottom: 30px;
    line-height: 1.7;
    font-family: 'Baloo2-Regular', sans-serif;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 7px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Baloo2-Bold', sans-serif;
    height: 45px;
    line-height: 21px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2c4760;
    color: #ffffff;
}

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

.btn-secondary {
    background: transparent;
    color: #2c4760;
    border: 1px solid #2c4760;
}

.btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

/* Content card styles */
.content {
    background: #ffffff;
    padding: 40px;
    border-radius: 7px;
    border: 1px solid #bcbcbc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content ol {
    padding-left: 20px;
}

.content li {
    margin-bottom: 20px;
    font-size: 16px;
    color: #424242;
    font-family: 'Baloo2-Regular', sans-serif;
    line-height: 1.8;
}



/* Visually hidden for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Stats section */
.stats {
    margin: 80px 0;
    padding: 60px 0;
    background: #ffffff;
    border-radius: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e8e8e8;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    min-width: 200px;
    /*max-width: 300px;*/
    flex: 1;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    border-color: #2c4760;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #2c4760;
    font-family: 'Baloo2-Bold', sans-serif;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 18px;
    color: #424242;
    font-family: 'Baloo2-Regular', sans-serif;
    font-weight: 500;
}

/* Features section */
.features {
    margin: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #2c4760;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c4760;
    margin-bottom: 16px;
    font-family: 'Baloo2-Bold', sans-serif;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 18px;
    color: #424242;
    line-height: 1.7;
    font-family: 'Baloo2-Regular', sans-serif;
    margin: 0;
}

/* Footer styles */
.main-footer {
    text-align: center;
    padding: 60px 0;
    color: #424242;
    border-top: 1px solid #bcbcbc;
    margin-top: 80px;
    background: #f8f9fa;
}

.footer-nav {
    margin-top: 10px;
}

.footer-nav a {
    color: #2c4760;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    font-family: 'Baloo2-Regular', sans-serif;
}

.footer-nav a:hover {
    color: #1a2f3f;
}

.main-footer p {
    font-size: 14px;
    font-family: 'Baloo2-Regular', sans-serif;
    margin: 0;
}

.footer a {
    color: #2c4760;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #1a2f3f;
}

/* CTA section styles */
.cta-section {
    margin: 60px 0;
}

.cta-section .cta-content {
    text-align: center;
    padding: 100px 50px;
    color: #000000;
    background: linear-gradient(135deg, #3a5a7a 0%, #1a2f3f 25%, #0f1a26 50%, #1a2f3f 75%, #3a5a7a 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 71, 96, 0.15);
}

.cta-section .cta-content::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #ffffff;
    font-family: 'Baloo2-Bold', sans-serif;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #2c4760;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    font-family: 'Baloo2-Bold', sans-serif;
    height: 52px;
    line-height: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.button-group {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Baloo2-Bold', sans-serif;
    height: 52px;
    line-height: 20px;
    margin-left: 20px;
    position: relative;
    z-index: 1;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Back button specific styles */
.back-button {
    display: inline-block;
    background: transparent;
    color: #2c4760;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 7px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #2c4760;
    font-family: 'Baloo2-Bold', sans-serif;
    height: 45px;
    line-height: 21px;
    margin-top: 40px;
}

.back-button:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
    .header h1,
    .hero h1 {
        font-size: 36px;
    }

    .header h2 {
        font-size: 18px;
    }

    .container {
        padding: 25px;
    }

    .content {
        padding: 25px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero p {
        font-size: 16px;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        min-width: auto;
    }

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

    .feature-card {
        padding: 30px 25px;
    }



    .stats {
        margin: 60px 0;
        padding: 60px 0;
    }

    .features {
        margin: 60px 0;
    }

    .cta-section {
        margin: 60px 0;
    }

    .cta-section .cta-content {
        padding: 60px 30px;
    }

    .button-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .secondary-button {
        margin-left: 0;
    }
}
