.hero-background {
    background-color: #004c97;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 50px;
    border-bottom-right-radius: 150px; /* Rounded bottom-right corner */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-background {
        height: 400px;
        padding: 40px;
        border-bottom-right-radius: 100px;
    }
}

@media (max-width: 768px) {
    .hero-background {
        height: 350px;
        padding: 30px;
        border-bottom-right-radius: 80px;
    }
}

@media (max-width: 480px) {
    .hero-background {
        height: 300px;
        padding: 20px;
        border-bottom-right-radius: 50px;
    }
}

.hero-content {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.2); /* Light transparency */
    padding: 20px;
    border-radius: 10px;
}
