/* Main Page Specific Styles - UTF-8 Encoding */

/* Hero Section */
.hero-section {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 120px;
}

.hero-title {
    font-size: 60px;
    font-weight: 500;
    line-height: normal;
    color: #0a0a0a;
}

.hero-image {
    width: 100%;
    height: 1040px;
    border-radius: 24px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive Design - Main Page */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-image {
        height: 800px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        gap: 40px;
    }

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

    .hero-image {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        gap: 32px;
        margin-bottom: 80px;
    }

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

    .hero-image {
        height: 400px;
        border-radius: 16px;
    }
}


/* Life Section */
.life-section {
    padding: 0 0 120px;
}

.life-section .section-title {
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 32px;
    max-width: 100%;
}

.life-description {
    max-width: 100%;
    margin-bottom: 80px;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.4;
}

.life-video {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    background: #e8e5dd;
    position: relative;
}

.life-video video {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 66px;
}

.play-button img {
    transform: rotate(90deg);
    width: 100%;
    height: 100%;
}




/* Responsive Design - Company Page */
@media (max-width: 1440px) {

    .life-video {}

    .life-description {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {

    .life-section {
        padding: 0 0 80px;
    }

    .life-section .section-title {
        font-size: 28px;
        margin-bottom: 60px;
    }


    .life-description {
        font-size: 20px;
        margin-bottom: 60px;
    }

    .life-video {}

    .play-button {
        width: 60px;
        height: 52px;
    }
}

@media (max-width: 768px) {

    .life-section {
        padding: 0 0 60px;
    }

    .life-section .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .life-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .life-video {
        border-radius: 16px;
    }

    .play-button {
        width: 48px;
        height: 42px;
    }
}