

body {
  font-family: var(--font);
  background-color: var(--bg-color);
  color: var(--primary);
  line-height: 1.6;
}

.container {
  /* max-width: 1200px; */
  margin: 6rem auto 0;
  padding: 40px 5%;
}

.header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    rgba(32, 77, 47, 0.8) 100%
  );
  border-radius: var(--radius);
  color: white;
  box-shadow: var(--shadow);
}

.header h1 {
  font-family: var(--logo-font);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section {
  background: white;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.section h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  border-left: 4px solid var(--secondary);
  padding-left: 15px;
}

.pricing-table {
  overflow-x: auto;
  margin: 30px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

th {
  background: var(--primary);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--light-accent);
  transition: var(--transition);
}

tr:hover td {
  background-color: rgba(230, 182, 53, 0.1);
}

.price {
  font-weight: 600;
  color: var(--secondary);
  font-size: 1.1rem;
}

.category {
  font-weight: 500;
  color: var(--primary);
}

.note {
  background: var(--light-accent);
  padding: 20px;
  border-radius: var(--radius);
  margin: 25px 0;
  border-left: 4px solid var(--Neutral-Accent);
}

.note h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.note ul {
  list-style: none;
  padding-left: 0;
}

.note li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--Neutral-Accent);
}

.note li::before {
  content: "•";
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.includes-card {
  background: linear-gradient(145deg, var(--bg-color), white);
  padding: 30px;
  border-radius: var(--radius);
  border: 2px solid var(--light-accent);
  transition: var(--transition);
}

.includes-card:hover {
  border-color: var(--Accent-color);
  transform: translateY(-3px);
}

.includes-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.includes-card ul {
  list-style: none;
  padding: 0;
}

.includes-card li {
  margin: 12px 0;
  padding-left: 25px;
  position: relative;
  color: var(--Neutral-Accent);
}

.includes-card li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.refund-policy {
  background: linear-gradient(
    135deg,
    rgba(32, 77, 47, 0.05),
    rgba(230, 182, 53, 0.05)
  );
}

.refund-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.refund-list li {
  background: white;
  margin: 15px 0;
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.refund-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.refund-list strong {
  color: var(--primary);
  font-weight: 600;
}

.contact-email {
  text-align: center;
  margin-top: 30px;
  padding: 25px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
}

.contact-email a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-email a:hover {
  color: white;
}

.highlight {
  color: var(--secondary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .container {
    padding: 20px 4%;
  }

  .header h1 {
    font-size: 2rem;
  }

  .section {
    padding: 25px;
  }

  th,
  td {
    padding: 12px;
    font-size: 0.9rem;
  }

  .includes-grid {
    grid-template-columns: 1fr;
  }
}
