.container {
  max-width: 900px;
  margin: 10rem auto 5rem;
}

.section h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1rem;
}

.delivery-hero i {
  font-size: 3rem;
  background: var(--primary-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.delivery-hero h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.delivery-hero p {
  color: #666;
  font-size: 1rem;
}

/* Timeline */
.timeline-section {
  margin-bottom: 40px;
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 4px solid var(--primary-color);
}

.timeline {
  position: relative;
  padding-left: 50px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, #ffb3b3 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(209, 29, 35, 0.15);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 25px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(209, 29, 35, 0.2);
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-color);
}

.timeline-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Region Cards */
.region-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.region-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(209, 29, 35, 0.2);
  border-color: var(--primary-color);
}

.region-card i {
  font-size: 2.5rem;
  background: var(--primary-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.region-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.region-card .delivery-time {
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--primary-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.region-card .provinces {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Info Box */
.info-box {
  background: #fff9e6;
  border-left: 4px solid #ffa500;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.info-box i {
  color: #ffa500;
  margin-right: 10px;
  font-size: 1.2rem;
}

.info-box p {
  display: inline;
  color: #666;
  line-height: 1.6;
}

/* Note Section */
.notes-section {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  margin-top: 40px;
}

.notes-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.notes-section ul {
  list-style: none;
  padding: 0;
}

.notes-section li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #666;
  line-height: 1.6;
}

.notes-section li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 968px) {
  .container {
    padding: 2rem;
    margin-top: 7rem;
  }
}

@media (max-width: 768px) {
  .section h2 {
    font-size: 1.5rem;
  }

  .delivery-hero {
    padding: 30px 20px;
  }

  .delivery-hero i {
    font-size: 2.5rem;
  }

  .delivery-hero h2 {
    font-size: 1.2rem;
  }

  .region-cards {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item::before {
    left: -32px;
  }
}
