.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;
}

/* Courier Section */
.courier-section {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
  border: 2px solid rgba(209, 29, 35, 0.1);
}

.courier-logo img {
  width: 300px;
  height: auto;
  background: var(--primary-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.courier-section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 600;
}

.courier-section p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 5px;
}

/* Shipping Type Badge */
.shipping-type {
  display: inline-block;
  background: white;
  padding: 12px 30px;
  border-radius: 50px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color);
}

.shipping-type i {
  color: var(--primary-color);
  margin-right: 8px;
}

.shipping-type span {
  font-weight: 600;
  color: var(--text-color);
}

/* Section Title */
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 4px solid var(--primary-color);
}

/* Fee Table */
.fee-table-container {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow-x: auto;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.fee-table thead {
  background: var(--primary-color-gradient);
}

.fee-table thead th {
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.fee-table thead th:last-child {
  text-align: right;
}

.fee-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s ease;
}

.fee-table tbody tr:hover {
  background: #fff5f5;
}

.fee-table tbody td {
  padding: 15px;
  color: #666;
}

.fee-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-color);
}

.fee-table tbody td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Weight Icon */
.weight-icon {
  display: inline-block;
  margin-right: 8px;
  color: var(--primary-color);
}

/* 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;
}

/* Notes 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;
  }
  
  .section-title {
    font-size: 1.3rem;
  }

  .courier-section {
    padding: 30px 20px;
  }

  .courier-logo img {
    width: 200px;
    height: auto;
  }

  .courier-section h2 {
    font-size: 1.3rem;
  }

  .fee-table-container {
    padding: 20px;
    overflow-x: visible;
  }

  .fee-table {
    min-width: unset;
  }

  .fee-table thead th,
  .fee-table tbody td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }

  .fee-table thead th:first-child,
  .fee-table tbody td:first-child {
    width: 60%;
  }

  .fee-table thead th:last-child,
  .fee-table tbody td:last-child {
    width: 40%;
  }
}
