body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #1a202c;
    background-color: #edf2f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #2b6cb0, #63b3ed);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

main {
    padding: 40px 20px;
}

section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2rem;
    color: #2b6cb0;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    color: #2b6cb0;
    margin-top: 20px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

a {
    color: #2b6cb0;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #1a202c;
}

.cta {
    text-align: center;
    background: #e2e8f0;
}

footer {
    background: #2b6cb0;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    section {
        padding: 20px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p, ul li {
        font-size: 1rem;
    }
}