body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fb;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.hero {
    background: linear-gradient(135deg, #4f8cff, #6fc3df);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 500;
}

.section {
    padding: 50px 0;
    background-color: #ffffff;
}

.section.alt {
    background-color: #eef3f8;
}

h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background-color: #eef3f8;
    border-left: 5px solid #4f8cff;
    font-style: italic;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: #6fc3df;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
}
