

.hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle {
    position: absolute;
    top: 25px;
    left: 50px;
    width: 350px;
    height: 350px;
    background: #002f62;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.circle h2 {
    color: white;
    font-size: 36px;
    padding: 20px;line-height: 1.3;
}
.content {
    padding: 40px 10%;
}

h2 {
    color: #002f62;
    margin-bottom: 10px;
}

h3 {
    color: #0055a5;
    margin-top: 20px;
    font-size: 20px;
}

p, ul {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

a {
    color: #0055a5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .hero-section {
        height: 300px;
    }

    .circle {
        width: 200px;
        height: 200px;
        top: 50%;
        left: 30%;
        transform: translate(-50%, -50%);
    }

    .circle h2 {
        font-size: 24px;
        padding: 10px;
    }
    .hero {
        padding: 60px 8%;
    }
    .hero h1 {
        font-size: 32px;
    }
    
}
