@media (max-width: 768px) {

    .brand-bg-img {
        content: url("../img/mobile/brand/brand_section1_img.png");
        object-fit: contain; /* 모바일은 원본 비율 유지 */
        height: auto;
        position: static;
    }

    .brand-section1 {
        position: relative;
        height: auto;
    }

    .brand-section1::before {
        background-color: transparent; /* 모바일은 오버레이 제거 */
    }

    .brand-section1-inner {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        box-sizing: border-box;
        padding: 0 30px;
        width: 100%;
    }

    .brand-title {
        font-size: 20px;
    }

    .brand-subtitle {
        font-size: 14px;
    }
}


@media (max-width: 768px) {

    .brand-section2 {
        padding: 50px 20px;
    }

    .brand-section2-inner {
        flex-direction: column;
        gap: 30px;
    }

    .section2-image,
    .section2-text {
        flex: 1 1 100%;
        width: 100%;
    }

    .section2-image img {
        width: 100%;
        height: auto;
        border-radius: 20px; /* 이미지 둥근 처리 */
    }

    .section2-text {
        text-align: center;
    }


    .section2-title {
        font-size: 24px;
    }

    .section2-highlight {
        font-size: 16px;
        padding: 10px 16px;
        line-height: 1.6;
    }

    .section2-body {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 768px) {
    .brand-section3 {
        padding: 50px 10px;
    }

    .section3-inner {
        padding: 0 16px;
    }

    .section3-title {
        font-size: 24px;
    }

    .section3-subtitle {
        font-size: 16px;
    }

    .section3-cards {
        flex-direction: column;
        gap: 24px;
    }

    .card {
        flex: none;
        width: 100%;
        min-height: 400px;
        height: 400px; /* 또는 적당한 값 */
    }

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

    .card-subtitle {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .card-content {
        font-size: 16px;
        line-height: 1.6;
    }

    .card-text {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 16px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 768px) {
    .brand-section4 {
        padding: 40px 11px;
    }

    .section4-inner {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .section4-text {
        text-align: center;
    }

    .section4-title {
        font-size: 22px;
    }

    .section4-highlight {
        font-size: 16px;
        padding: 8px 12px;
        margin-bottom: 16px;
    }

    .section4-body {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;       /* ✅ 강제 중앙 정렬 */
    max-width: 90%;           /* ✅ 길이 제한 */
    margin: 0 auto;           /* ✅ 가운데 정렬 */
  }

    .section4-image img {
        width: 100%;
        height: auto;
        max-width: 370px;
        border-radius: 12px;
    }

}