/* ==================== Секція Hero ==================== */
.hero {
    position: relative;
    background-image: url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    min-height: 75vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Затемнення фону */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 20px;
    padding: 150px 0;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
