
.hero-section {
    position: relative; 
    height: 100vh;
    display: flex;
    align-items: center; 
    padding-left: 5%; 
    padding-right: 5%; 

    background-image: url("/images/DSC00361.JPG");
    background-size: cover;
    background-position: bottom;
    color: white; 
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}


.hero-content {
    position: relative;
    padding-top: 150px; 
    z-index: 2; 
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: white;
}


.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #0D4884;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #FEDE30;
    transform: translateY(-2px);
}
