.section-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.section-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-title {
    font-size: 50px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: #fff;
}

.hero-separator {
    width: 60px;
    height: 2px;
    background-color: #fff;
    margin: 20px auto 30px;
    position: relative;
}

.hero-separator::before,
.hero-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.hero-separator::before {
    left: -10px;
}

.hero-separator::after {
    right: -10px;
}

.hero-description {
    font-size: 21px;
    line-height: 1.6;
    text-transform: uppercase;
    margin: 0 auto;
    letter-spacing: 1px;
    font-weight: var(--font-thin);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.scroll-down:hover {
    opacity: 1;
    color: var(--color-white);
}

.mouse-icon {
    width: 15px;
    height: 23px;
    border: 2px solid var(--color-white);
    border-radius: 12px;
    position: relative;
    margin-bottom: -3px;
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 2px;
    height: 6px;
    background: var(--color-white);
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 14px;
    }
}

/* Career Box */
.hero-career-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #d32f2f;
    padding: 20px;
    width: 280px;
    color: #fff;
    z-index: 10;
    text-align: left;
    font-size: 14px;
}

.hero-career-box h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-career-box .vacancy {
    margin-bottom: 10px;
    line-height: 1.4;
}

.hero-career-box .read-more {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: block;
    text-align: right;
    font-size: 12px;
}

.hero-career-box .read-more:hover {
    text-decoration: underline;
}