* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: #f4f4f4;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00aa44;
  margin: 12px 0;
}

.swiper {
  width: 100%;
  max-width: 768px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  max-width: 1024px;
}

.menu span {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  background: #f2f2f2;
  padding: 6px 10px;
  border-radius: 20px;
}

.container {
  max-width: 1024px;
  width: 100%;
  padding: 16px;
  margin: 0 auto;
}

.plan {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1024px;
}

.plan-left {
  flex: 1 1 65%;
}

.plan-left h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #222;
}

.plan-left p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #666;
}

.plan-right {
  text-align: right;
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 14px;
  color: #888;
  font-weight: normal;
  margin-bottom: 6px;
}

.price s {
  color: #999;
  font-size: 14px;
}

.price strong {
  font-size: 25px;
  color: #00aa44;
  font-weight: bold;
}

.button {
  background: #111;
  color: #fff;
  padding: 10px 24px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.badges {
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  background: #eee;
  color: #333;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-right: 6px;
  font-weight: bold;
}

.badge.green { background: #d4f4d7; color: #008000; }
.badge.purple { background: #f0e6ff; color: #6a1b9a; }
.badge.pink { background: #ffe6e6; color: #e91e63; }
.badge.red { background: #ff0000; color: #ffffff; }
.badge.gray { background: #d3d3d3; color: #000000; }

/* °íÁ¤ ¹è³Ê */
.kakao-banner {
  position: fixed;
  right: 10px;
  bottom: 120px;
  z-index: 1000;
}
.kakao-banner img {
  width: 80px;
  height: auto;
}

.apply-banner {
  position: fixed;
  right: 10px;
  bottom: 70px;
  z-index: 999;
  background-color: #00aa44;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.apply-banner a {
  color: #fff;
  text-decoration: none;
}

.phone-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffcc00;
  color: #000;
  text-align: center;
  padding: 17px 0;
  font-size: 20px;
  font-weight: bold;
  z-index: 998;
}

.phone-banner a {
  color: #000;
  text-decoration: none;
}

/* Æ¯Â¡ ¼½¼Ç */
.features {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
}

.feature {
  display: flex;
  flex-wrap: nowrap;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.feature-content {
  flex: 1;
  padding: 30px;
}

.feature-img {
  flex: 1;
  min-width: 280px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.feature-img img {
  max-width: 100%;
  height: auto;
}

.feature h3 {
  font-size: 22px;
  margin: 10px 0 8px;
  color: #00aa44;
}

.feature p {
  font-size: 16px;
  color: #555;
}

/* ¹ÝÀÀÇü (ÅÂºí¸´/¸ð¹ÙÀÏ¿ë) */
@media (max-width: 768px) {
  .feature {
    flex-direction: column;
  }
  .feature-content, .feature-img {
    padding: 20px;
  }
  .plan {
    flex-direction: column;
  }
  .plan-right {
    text-align: left;
    align-items: flex-start;
    margin-top: 12px;
  }
  .container {
    padding: 8px;
  }
}

/* ÇªÅÍ */
.footer {
  max-width: 1024px;
  margin: 50px auto;
  text-align: left;
  font-size: 10px;
  color: #666;
}

.footer a {
  color: #666;
  margin-right: 10px;
  text-decoration: none;
}

.contar {
  max-width: 1000px;
  margin: 0 auto;
   text-align: left;
    padding: 0 30px;
}

  h2 {
  color: #00c73c;
}