
    /* reset */
    * { margin:0; padding:0; box-sizing:border-box; }
     body { font-family:'Noto Sans KR',sans-serif; color:#333; padding-bottom:130px; }
    a { text-decoration:none; color:inherit; }
    ul { list-style:none; }

    /* Header: White background, black text */
    .header { background:#fff; color:#333; box-shadow:0 2px 4px rgba(0,0,0,0.1); }
    .header .container {
      max-width:1250px; margin:0 auto;
      display:flex; align-items:center;
      height:60px; justify-content:space-between;
      padding:0 20px;
    }
	.logo { display:flex; align-items:center; }
     .header .logo img { height:10px !important; width:auto; margin-right:8px; }
    .logo span { font-size:1.25rem; font-weight:bold; color:#333; }
    .logo { font-size:1.25rem; font-weight:bold; color:#333; }
    .nav { display:flex; gap:20px; }
    .nav a {
      color:#333;
      padding:0 8px;
      line-height:60px;
      border-radius:4px;
      transition:transform .1s ease;
    }
    /* Hover effect removed per request */
    /* nav a:hover { background:#6b7cfa; color:#fff; } */
    .nav a:hover { color:#ff0000; transform:scale(1.2); }
    .nav a:active { transform:scale(1.05); }

    /* Hero */
.hero {
  
}
    /* Separator */
    .separator { height:6px; background:#ffd800; }

    /* Plans Header: Purple gradient and underline for '결합요금제' */
   .plans-header {
  background: none; /* 배경 제거 */
}
    .plans-header .container {
	background: linear-gradient(90deg, #2F9D27, #47C83E);
  border-radius: 10px;
  padding: 20px;
      max-width:1200px; margin:0 auto;
      display:flex; justify-content:space-between; align-items:center;
      padding:40px 20px; border-radius:8px;
      color:#fff;
    }
    .plans-header h3 { font-size:1.6rem; font-weight:700; }
    .plans-header h3 .underline { border-bottom:4px solid rgba(255,255,255,0.8); padding-bottom:4px; }
    .contact { font-size:1.1rem; font-weight:500; background:rgba(0,0,0,0.7); color:#fff; padding:8px 16px; border-radius:20px; }

    /* Pricing Cards */
    .pricing { max-width:1200px; margin:40px auto; display:flex; gap:20px; padding:0 20px; }
    .card { flex:1; border:1px solid #ddd; border-radius:8px; padding:20px; transition:transform .3s; }
    .card:hover { transform:translateY(-5px); border-color:#6b7cfa; }
    .card-icon { width:500px; margin-bottom:20px; }
	.card-icon2 { width:200px; margin-bottom:20px; }
    .card-title { font-size:1rem; font-weight:500; margin-bottom:12px; }
    .card-price { font-size:1.5rem; color:#000; font-weight:bold; margin-bottom:8px; }
    .card-features li { position:relative; padding-left:16px; margin-bottom:8px; }
    .card-features li:before { content:'•'; position:absolute; left:0; color:#6b7cfa; }
	.price-red {
  color: red;
  font-weight: bold;
  font-size: 45px; /* 숫자만 크게 하고 싶을 때 */
}
.highlight-red {
  color: red;
  font-size: 25px;
  font-weight: bold;
}
.red-highlight {
  color: red;
  font-weight: bold;
}
    /* Main */
    main { padding-bottom:60px; }

	    /* Fixed Bottom Banner */
    .bottom-banner {
      position:fixed; bottom:0; left:0; right:0;
      background:#2a2a2a;
      padding:12px 0;
      box-shadow:0 -4px 8px rgba(0,0,0,0.3);
      z-index:1000;
      font-size:14px;
    }
    .bottom-banner .wrapper {
      width:90%; max-width:750px; margin:0 auto;
      display:flex; align-items:center; justify-content:space-between;
      gap:8px;
    }
    .bottom-banner .text { color:#fff; font-size:20px; font-weight:500; white-space:nowrap; }
    .bottom-banner .phone { color:#00efc0; font-size:20px; font-weight:bold; white-space:nowrap; }
    .bottom-banner input {
      border:none; padding:8px 10px; border-radius:4px; width:70px; font-size:14px;
    }
    .bottom-banner input#userContact { width:120px; }
    .bottom-banner .btn-apply {
      background:#e6004e; color:#fff; padding:8px 12px; border:none; border-radius:4px;
      font-weight:bold; cursor:pointer; font-size:14px;
    }
    .bottom-banner .btn-chat {
      background:#ffe400; color:#664b00; padding:8px 12px; border:none; border-radius:4px;
       font-weight:bold;display:flex; align-items:center; gap:4px; cursor:pointer; font-size:14px;
    }
    .bottom-banner .btn-chat img { width:23px; height:23px; }




	/*인증배너*/


     .cert-banner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 30px 40px;
      border-radius: 20px;
      background: linear-gradient(145deg, #ffffff, #e6e6e6);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      backdrop-filter: blur(6px);
      border: 1px solid #ddd;
    }

    .cert-left {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .seal {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 0 3px rgba(0,0,0,0.3);
  position: relative;
  background: linear-gradient(135deg, #c0f, #0ff, #f0f, #0f0);
  background-size: 400% 400%;
  animation: holo-glow 6s ease infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255,255,255,0.5);
}

    .text-group h2 {
      margin: 0;
      font-size: 1.8rem;
      font-weight: 800;
      color: #222;
    }

    .text-group h2 span {
      color: #e60012;
    }

    .text-group p {
      margin-top: 8px;
      font-size: 0.95rem;
      color: #555;
    }

    .cert-right {
      text-align: center;
    }

    .cert-right img {
      height: 35px;
      margin-bottom: 5px;
    }

    .cert-table {
      margin-top: 1px;
      border: 1px solid #ccc;
      border-radius: 6px;
      overflow: hidden;
      font-size: 0.95rem;
    }

    .cert-table table {
      border-collapse: collapse;
      width: 100%;
    }

    .cert-table td {
      padding: 8px 12px;
      border-bottom: 1px solid #eee;
      background: #fff;
    }

    .cert-table td:first-child {
      font-weight: bold;
      background: #f7f7f7;
      width: 100px;
      color: #333;
    }

    .cert-table td:last-child {
      color: #222;
    }

	@keyframes holo-glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding-bottom: 40px;
}

.btn-self,
.btn-consult {
  width: 200px;              /* ✅ 버튼 너비 고정 */
  height: 50px;              /* ✅ 버튼 높이 고정 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  background: #000;          /* 검정 배경 */
  color: #fff;
  transition: background 0.3s, transform 0.2s;
}

.btn-self:hover,
.btn-consult:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer {
  background: #f9f9f9;
  color: #666;
  font-size: 14px;
  padding: 30px 0;
  font-family: 'Noto Sans KR', sans-serif;
}

.footer-inner {
  max-width: 1200px;       /* ✅ 화면 중앙 기준으로 약간 좁힘 */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left p {
  margin: 4px 0;
}

.footer-right {
  text-align: right;
}

.social-icons {
  margin-bottom: 8px;
}

.social-icons a {
  display: inline-block;
  margin-left: 10px;
  color: #888;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #333;
}

.footer .copyright {
  font-size: 12px;
  color: #888;
}
