

.hero-section {
    background : #246DBA;
              
    background-position: center;
    padding: 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::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"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="60" r="3" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-section h1 {
    color: white;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
}

.content-section h2 {
    font-size: 2rem;
    color: #1a2b4a;
    margin-bottom: 30px;
    margin-top: 40px;
    font-weight: 600;
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #2a3b5a;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.8;
}

.content-section ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .content-section p,
    .content-section li {
        font-size: 0.95rem;
        text-align: left;
    }
}