/* 초기화 및 공통 스타일 */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Noto Sans KR', sans-serif; color: #111; background-color: #fff; line-height: 1.5; }
        
/* 공통 섹션 스타일 */
.about-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: #f8fafc;
    overflow: hidden;
}

/* 컨테이너 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* 텍스트 콘텐츠 영역 */
.text-content {
    max-width: 600px;
    padding: 80px 0;
}

.section-num {
    font-size: 18px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 6px;
    display: block;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 20px;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #0f172a;
}

.section-desc {
    font-size: 17px;
    color: #334155;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* 특징 그리드 (10년, 5000개, 24시) */
.features-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.icon-wrap {
    font-size: 24px;
    color: #0f172a;
    margin-top: 2px;
}

.feature-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    display: block;
}

.feature-text span {
    font-size: 14px;
    color: #64748b;
}

/* CTA 버튼 */
.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #0f172a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #1e293b;
}

/* 배경 이미지 레이어 (PC 버전) */
.bg-image-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ==========================================
   모바일 반응형 스타일 (1024px 이하)
   ========================================== */
@media (max-width: 1024px) {
    .about-section {
        min-height: auto;
        padding: 60px 0;
    }

    .bg-image-layer {
        background-image: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%), url('<?php echo G5_THEME_URL; ?>/img/section01.jpg');
        background-size: cover;        
        background-position: center;
        background-repeat: no-repeat;
    }

    .container {
        padding: 0 20px;
    }

    /* 텍스트 컨테이너 박스 */
    .text-content2 {
        max-width: 100%;
        padding: 40px 24px;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    }

    .section-title {
        font-size: 30px;
        word-break: keep-all;
    }

    .pc-br {
        display: none;
    }

    /* 🔥 모바일 아이콘 영역 예쁘게 정렬하는 핵심 코드 */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3개를 가로로 예쁘게 배치 */
        gap: 12px;
        margin-bottom: 36px;
        text-align: left;
    }

    .feature-item {
        background-color: #f8fafc; /* 아이콘 카드 배경색 */
        padding: 14px 10px;
        border-radius: 10px;
        display: flex;
        flex-direction: column; /* 아이콘이 위, 텍스트가 아래로 오게 배치하면 모바일에서 훨씬 안정적입니다 */
        align-items: center;
        justify-content: center;
        text-align: center;
        border: 1px solid #e2e8f0;
    }

    .icon-wrap {
        font-size: 24px;
        color: #0f172a;
        margin-bottom: 6px;
        margin-top: 0;
    }

    .feature-text strong {
        font-size: 15px;
        font-weight: 700;
        color: #0f172a;
        display: block;
    }

    .feature-text span {
        font-size: 12px;
        color: #64748b;
    }

    .cta-button {
        width: 100%; /* 버튼을 가로 꽉 차게 만들어 터치하기 쉽게 변경 */
        text-align: center;
        padding: 16px 0;
    }
}

/* 화면이 아주 작은 스마트폰 (480px 이하)에서는 3개가 너무 좁을 수 있으므로 1열 혹은 3분할 조정 */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr); /* 여전히 3개 유지하되 패딩 조절 */
        gap: 8px;
    }
    .feature-item {
        padding: 10px 4px;
    }
    .feature-text strong {
        font-size: 13px;
    }
    .feature-text span {
        font-size: 11px;
    }
    .section-title {
        font-size: 26px;
    }
}