/* Base */
.gray_section {
  background: #f8f9fa;
  font-family: Roboto, sans-serif;
}

.page-title {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #001c33;
}

/* Format */
.format-box {
  padding: 12px 24px;
  border: 2px solid #e0d428;
  border-radius: 8px;
  background: #fff;
}

.format-icon {
  width: 24px;
  height: 24px;
  background: #e0d428;
}

.change-link {
  color: #612771;
  font-size: 14px;
  text-decoration: underline;
}

/* Steps */
.steps {
  max-width: 900px;
}

.step {
	text-align: center;
	font-weight: 600;
	display: flex;
	flex-flow: column;
	align-items: center;
}


.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-circle.active {
  background: #001c33;
  color: #fff;
}

.step-circle.done {
  background: #e0d428;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #ccc;
}

.step-line.active {
  background: #e0d428;
}

/* Cards */
.custom-card {
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -4px rgba(0,0,0,.1);
}

.package-card {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.package-card.selected {
  border-color: #e0d428;
}

.price {
  font-size: 30px;
  font-weight: 900;
}

.price span {
  font-size: 16px;
  color: #666;
}

.popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #e0d428;
  color: #001c33;
  font-size: 12px;
}

/* Summary */
.summary-card {
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -4px rgba(0,0,0,.1);
}

.summary-row {
  display: flex;
  justify-content: space-between;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 767px) {
  .page-title {
    font-size: 28px;
  }
  .step-line {
    display: none;
  }
}