.hero-section {
    background-image: url('../images/background_image.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 76px 0 2rem;
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-section {
        background-position: left center;
        padding: 100px 0 3rem;
    }
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.cta-button {
    background-color: #0056b3;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    border-color: white;
    color: white;
    text-decoration: none;
}

.cta-button-outline {
    background-color: transparent;
    border-color: white;
}

.cta-button-outline:hover {
    background-color: white;
    color: #0056b3;
    border-color: white;
}

.gap-3 {
    gap: 1rem;
}

.hero-text {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

