:root {
  --main-color: #1a3a5c;
  --accent-color: #00b4d8;
  --text-color: #2d2d2d;
  --bg-color: #ffffff;
  --sb-bg: #f8f9fa;
}

.price {
  background-color: var(--sb-bg);
  padding: 80px 40px;
  text-align: center;
}

.price__list {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.price__item {
  background-color: var(--bg-color);
  border: 1px solid var(--main-color);
  border-radius: 10px;
  padding: 40px 30px;
  width: 30%;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price__item:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.price__title {
  font-size: 20px;
  color: var(--main-color);
  margin-bottom: 16px;
}

.price__amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.price__detail {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price__detail li {
  font-size: 15px;
  padding-left: 16px;
  position: relative;
}

.price__detail li::before {
  content: "✓";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.flow {
  background-color: var(--bg-color);
  padding: 80px 40px;
  text-align: center;
}

.flow__list {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.flow__item {
  background-color: var(--sb-bg);
  border-radius: 10px;
  padding: 30px 20px;
  width: 25%;
  text-align: left;
  position: relative;
}

.flow__step {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.flow__title {
  font-size: 18px;
  color: var(--main-color);
  margin-bottom: 12px;
}

.flow__text {
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .price {
    padding: 60px 20px;
  }

  .price__list {
    flex-direction: column;
  }

  .price__item {
    width: 100%;
    text-align: center;
  }

  .price__detail li::before {
    padding-right: 5px;
    position: relative;
  }

  .flow {
    padding: 60px 20px;
  }

  .flow__list {
    flex-direction: column;
  }

  .flow__item {
    width: 100%;
  }

  .flow__text {
    font-size: 13px;
  }

  .cta {
    padding: 60px 20px;
  }
}
