.hero {
    margin: 40px 0;
    height: 50vh;
    background-image: url('../images/photos/photo_2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: white;
    color: #333;
}

@media (max-width: 1300px) {
    .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 40vh;
        margin: 20px 0;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 35vh;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-btn {
        padding: 8px 25px;
        font-size: 13px;
    }
}