/* Global */
body {
    margin: 0;
    padding: 0;
    font-family: 'Asap', sans-serif;
    font-weight: 400;
    background-color: #ffffff;
    color: #111111;
    letter-spacing: 0.3px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0 60px 0;
}

.logo-container img {
    width: 110px;
    height: auto;
}

/* Hero */
.hero {
    width: 88%;
    margin: 0 auto;
    height: 420px;
    overflow: hidden;
}

/* Brand Title */
.brand-title {
    text-align: center;
    font-size: 34px;
    margin: 70px 0 100px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Two Column */
.two-column {
    width: 88%;
    margin: 0 auto 140px auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.image-box {
    flex: 1;
    height: 420px;
    overflow: hidden;
}

/* Text + Image */
.text-image-section {
    width: 88%;
    margin: 0 auto 160px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.text-content {
    flex: 1;
    font-size: 20px;
    line-height: 1.8;
    max-width: 420px;
}

.text-content p {
    margin-bottom: 28px;
}

/* Bottom */
.bottom-section {
    width: 88%;
    margin: 0 auto 180px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/* Subtle Hover Effect */
.image-box img,
.hero img {
    transition: transform 0.6s ease;
}

.image-box:hover img,
.hero:hover img {
    transform: scale(1.04);
}

/* Responsive */
@media (max-width: 900px) {

    .two-column,
    .text-image-section,
    .bottom-section {
        flex-direction: column;
    }

    .image-box {
        height: 320px;
    }

    .hero {
        height: 260px;
    }

    .brand-title {
        font-size: 26px;
        margin: 60px 0 80px 0;
    }

    .text-content {
        text-align: center;
        font-size: 18px;
    }

    .text-image-section,
    .bottom-section {
        gap: 50px;
    }
}
