@charset "utf-8";
    /* 기본 초기화 및 폰트 설정 */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
        font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
        color: #333;
        line-height: 1.5;
        letter-spacing: -0.03em;
        word-break: keep-all;
    }
    .wrap { max-width: 1000px; margin: 0 auto; padding-bottom: 0; }
    img { max-width: 100%; height: auto; display: block; }

    /* 공통 유틸리티 */
    .text-center { text-align: center; }

    /* 헤더 (로고 영역) */
    header { padding: 10px 20px 10px; text-align: center; }
    header h1 { color: #1e66b8; font-size: 26px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }

    /* 메인 타이틀 */
    .hero-title { padding: 0 20px 40px; }
    .hero-title h2 { font-size: 26px; font-weight: 700; margin-bottom: 15px; color: #222; }
    .hero-title p { color: #555; font-size: 15px; line-height: 1.6; font-weight: 400; }

    /* 상단 액션 버튼 그리드 */
    .action-box-container { display: flex; gap: 15px; padding: 0 20px; margin-bottom: 60px; }
    .action-box { border-radius: 16px; padding: 30px; color: #fff; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
    .action-box:hover { transform: translateY(-2px); }

    /* 왼쪽 견적요청 박스 */
    .box-quote {
          flex: 1.2;
          background: #9ee5fa; /* 첨부 이미지와 유사한 화사한 하늘색 */
          border-radius: 16px;
          padding: 40px 20px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: center;
          box-shadow: 0 10px 20px rgba(158, 229, 250, 0.3);
      }
    /* (기존) 왼쪽 견적요청 박스 아이콘 수정 */
    .box-quote .icon {
          width: 80px;
          height: 80px;
          background-color: #ffffff;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-bottom: 15px;
      }
      .box-quote .icon img {
          width: 40px;    /* 원형 밖으로 튀어나가지 않게 크기 조절 */
          height: auto;
          display: block;
      }

      /* 3. 견적 요청 텍스트 */
      .box-quote h3 {
          font-size: 32px;
          color: #ffffff; /* 글자색을 흰색으로 변경 */
          margin-bottom: 25px;
          font-weight: 700;
          text-shadow: 0 2px 4px rgba(0,0,0,0.05); /* 약간의 그림자로 가독성 확보 */
      }

      /* 4. 하단 흰색 구인신청 버튼 */
      .btn-arrow {
          background: #ffffff;
          width: 100%;
          max-width: 240px; /* 버튼이 너무 가로로 길어지지 않게 최대 너비 설정 */
          padding: 14px 24px;
          border-radius: 10px;
          display: flex;
          justify-content: space-between; /* 텍스트는 왼쪽, 화살표는 오른쪽으로 밀어냄 */
          align-items: center;
          box-shadow: 0 4px 10px rgba(0,0,0,0.05);
          box-sizing: border-box;
      }

      .btn-arrow .text {
          color: #333333;
          font-size: 16px;
          font-weight: 700;
      }

      .btn-arrow .arrow {
          color: #ff4800; /* 첨부 이미지의 오렌지/레드 계열 화살표 색상 */
          font-size: 18px;
          font-weight: bold;
      }
    /* 오른쪽 위/아래 박스 래퍼 */
    .box-right-wrap { flex: 1; display: flex; flex-direction: column; gap: 15px; }
    .right-item {
        flex: 1; border-radius: 16px; padding: 0 30px;
        display: flex; align-items: center; justify-content: space-between;
        font-size: 18px; font-weight: 700; color: #fff;
    }
    .right-item-inner { display: flex; align-items: center; gap: 12px; }
    /* (기존) 오른쪽 위/아래 박스 아이콘 수정 */
    .right-item .icon {
        opacity: 0.9;
        display: inline-flex;
        align-items: center;
    }

    .right-item .icon img {
        width: 26px;    /* 기존 폰트 크기(24px)와 비슷하게 이미지 크기 고정 */
        height: auto;   /* 이미지 비율 유지 */
        display: block;
    }
    .right-item .plus { font-size: 24px; font-weight: 300; opacity: 0.8; }

    .box-company { background: linear-gradient(135deg, #ffc078 0%, #ffa94d 100%); box-shadow: 0 8px 16px rgba(255, 169, 77, 0.2); }
    .box-driver { background: linear-gradient(135deg, #4bdcb8 0%, #20c997 100%); box-shadow: 0 8px 16px rgba(32, 201, 151, 0.2); }

    /* 서브 배너 */
    .sub-banner { padding: 0 20px; margin-bottom: 50px; }
    .sub-banner h2 { font-size: 22px; font-weight: 700; margin-bottom: 15px; line-height: 1.5; color: #222; }
    .sub-banner p { font-size: 15px; color: #666; line-height: 1.6; font-weight: 400; }

    /* 차종 선택 그리드 */
    .vehicle-grid-wrap { background-color: #f7f9fc; padding: 40px 20px 50px; border-radius: 24px; margin: 0 20px 60px; }
    .vehicle-grid-wrap h3 { font-size: 22px; margin-bottom: 8px; font-weight: 700; color: #222; }
    .vehicle-grid-wrap > p { color:#777; font-size:14px; margin-bottom: 30px; font-weight: 400; }

    .v-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .v-item {
        background: #fff; border: 1px solid #eef1f6; border-radius: 16px; padding: 25px 10px 20px;
        text-align: center; position: relative; cursor: pointer; transition: all 0.2s;
        box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }
    .v-item:hover { border-color: #76d0ff; box-shadow: 0 6px 15px rgba(118, 208, 255, 0.15); transform: translateY(-2px); }
    .v-item img { height: 45px; object-fit: contain; margin: 0 auto 15px; }
    .v-item span { font-size: 14px; color: #444; font-weight: 500; }
    .v-item .add-icon { position: absolute; top: 10px; right: 10px; width: 20px; height: 20px; background: #f0f2f5; color: #aaa; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; }

    /* 통이미지 앱 홍보 배너 영역 */
    .app-promo-banner {
        margin: 0 20px 70px;
        text-align: center;
    }
    .app-promo-banner img {
        width: 100%;
        border-radius: 20px; /* 모서리 둥글게 처리 */
        box-shadow: 0 10px 30px rgba(97, 205, 255, 0.3); /* 은은한 그림자 효과 */
    }

    /* 하단 특장점 영역 */
    .features { padding: 0 20px 70px; }
    .features-title { font-size: 26px; font-weight: 700; margin-bottom: 50px; color: #222; }
    .f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; row-gap: 40px; text-align: left; }
    .f-item {
        position: relative;
        padding-left: 45px; /* 아이콘과 텍스트 사이의 여백을 40px에서 45px로 조금 더 넉넉하게 확보 */
    }

    .f-item .f-icon {
        position: absolute;
        left: 0;
        top: 0;     /* 제목 라인과 높이를 맞추기 위해 0으로 변경 */
        width: 32px; /* 아이콘 컨테이너의 고정 너비 지정 */
    }

    /* 새롭게 추가하는 이미지 반응형 처리 */
    .f-item .f-icon img {
        width: 100%;    /* 부모(.f-icon)의 32px 너비에 꽉 차게 설정 */
        height: auto;   /* 비율이 깨지지 않도록 높이는 자동(반응형) 조절 */
        display: block;
    }
    .f-item .f-icon { position: absolute; left: 0; top: -2px; font-size: 24px; }
    .f-item h4 { font-size: 17px; margin-bottom: 8px; color: #222; font-weight: 700; }
    .f-item p { font-size: 14px; color: #666; line-height: 1.6; font-weight: 400; }

    /* 푸터 (고객센터) */
    footer { background-color: #f7f9fc; padding: 50px 40px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eef1f6; }
    .cs-info { color: #333; text-align: right; }
    .cs-info h3 { font-size: 15px; font-weight: 500; color: #666; margin-bottom: 8px; }
    .cs-info h2 { font-size: 36px; font-weight: 700; color: #1e66b8; letter-spacing: 0; display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
    .cs-info h2 span { font-size: 24px; }

    /* 반응형 (모바일) 처리 */
    @media (max-width: 768px) {
        .action-box-container { flex-direction: column; }
        .right-item { padding: 25px 30px; }
        .v-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

        /* 모바일에서 배너 이미지 좌우 여백 제거하여 시원하게 꽉 차도록 설정 */
        .app-promo-banner { margin-left: 0; margin-right: 0; }
        .app-promo-banner img { border-radius: 0; box-shadow: none; }

        .f-grid { grid-template-columns: 1fr; gap: 30px; }
        footer { flex-direction: column-reverse; text-align: center; gap: 30px; }
        .cs-info { text-align: center; }
        .cs-info h2 { justify-content: center; font-size: 30px; }
    }
