/* CSS from section:hero */
.hero-section {
    background-image: url('../img/about.jpg');
    background-size: cover;
    background-position: center;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: var(--color-background-light);
}

.hero-content {
    position: relative;
}

.hero-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.hero-title2 {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.hero-divider {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transform: translateY(-20%);
    width: 3px;
    height: 150px;
    background-color: #448c8c;
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-divider {
        height: 120px;
    }
    .hero-content {
        padding-bottom: 140px;
    }
}

