:root {
  --primary: #113f67;
  --primary-light: hsl(208, 56%, 38%);
  --primary-dark: #01294c;
  --secondary: #2c3e50;
  --light: #f8f5f2;
  --dark: #1a1a1a;
  --gray: #6c757d;
  --light-gray: #e9e9e9;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, #f9f7f4 0%, #f1ece5 100%);
  font-family: "Kumbh Sans", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}

.contact-card a {
  text-decoration: none;
  color: var(--light-gray);
}

.terms-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  margin: -40px auto;
  transition: var(--transition);
  margin-bottom: 35px;
}

.terms-card:hover {
  box-shadow: var(--shadow-hover);
}

.cancellation-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  margin: -40px auto;
  margin-bottom: 50px;
  transition: var(--transition);
  padding: 20px;
}

.cancellation-card:hover {
  box-shadow: var(--shadow-hover);
}

.card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 40px;
  text-align: center;
  position: relative;
}

.card-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238c6743' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.1;
}

.watch-icon {
  font-size: 64px;
  color: white;
  margin-bottom: 20px;
  display: inline-block;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.title {
  color: white;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-content {
  padding: 40px;
}

.intro-section {
  background: rgb(240 248 255);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  border-left: 3px solid var(--primary);
  font-size: 18px;
  line-height: 1.7;
}

.policy-section {
  margin-bottom: 40px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
  border-top: 3px solid var(--primary-light);
}

.policy-section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
}

.section-header {
  background: rgb(240 248 255);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-header i {
  font-size: 24px;
  color: var(--primary);
  width: 50px;
  height: 50px;
  background: rgb(240 248 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-header h2 {
  color: var(--secondary);
  font-size: 24px;
}

.section-content {
  padding: 25px;
}

.policy-point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--light-gray);
}

.policy-point:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.point-number {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.highlight {
  background: rgb(240 248 255);
  padding: 10px;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--primary);
  margin-top: 15px;
}

.point-icon {
  color: var(--primary);
  font-size: 20px;
  min-width: 36px;
  height: 36px;
  background: rgb(240 248 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.method-card {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.method-card i {
  font-size: 32px;
  color: var(--primary);
}

.security-note {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgb(240 248 255);
  border-radius: var(--border-radius);
  margin-top: 20px;
  border-left: 3px solid var(--primary);
}

.security-note i {
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
}

.price-terms {
  padding-left: 20px;
  margin: 20px 0;
}

.price-terms li {
  margin-bottom: 15px;
  position: relative;
}

.delivery-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
}

.timeline-point {
  flex: 1;
  min-width: 150px;
  text-align: center;
  position: relative;
}

.timeline-badge {
  background: var(--primary);
  color: white;
  padding: 10px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
  min-width: 80px;
}

.timeline-point.highlight .timeline-badge {
  background: var(--primary-dark);
}

.timeline-arrow {
  color: var(--primary);
  font-size: 24px;
}

.delivery-notes {
  background: rgb(240 248 255);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 20px;
  border-left: 3px solid var(--primary);
}

.return-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.return-condition {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.condition-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
}

.condition-header i {
  font-size: 24px;
}

.green {
  color: #28a745;
}

.red {
  color: #dc3545;
}

.return-condition ul {
  padding-left: 20px;
}

.return-condition li {
  margin-bottom: 10px;
}

.warranty-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.warranty-card {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary);
}

.warranty-card i {
  font-size: 32px;
  color: var(--primary);
}

.return-process {
  background: rgb(240 248 255);
  padding: 25px;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--primary);
}

.return-process ol {
  padding-left: 20px;
  margin: 15px 0;
}

.return-process li {
  margin-bottom: 12px;
}

.note {
  color: var(--gray);
  margin-top: 15px;
}

.brand-notice {
  background: rgb(240 248 255);
  padding: 25px;
  border-radius: var(--border-radius);
  margin: 20px 0;
  border-left: 3px solid var(--primary);
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
  justify-content: center;
}

.brand-logo {
  padding: 12px 30px;
  background: white;
  border-radius: var(--border-radius);
  font-weight: bold;
  letter-spacing: 1px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.brand-logo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 40px;
  border-radius: var(--border-radius);
  color: white;
  text-align: center;
  margin-top: 40px;
}

.contact-section h3 {
  font-size: 28px;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 32px;
}

.update {
  font-size: 14px;
  opacity: 0.8;
}

.highlight-section {
  border-top: 3px solid var(--primary);
}

@media (max-width: 768px) {
  .card-header {
    padding: 30px 20px;
  }

  .terms-content {
    padding: 30px 20px;
  }

  .title {
    font-size: 28px;
  }

  .delivery-timeline {
    flex-direction: column;
  }

  .timeline-arrow {
    transform: rotate(90deg);
  }

  .policy-content {
    padding-bottom: 10px;
  }
}

@media (max-width: 480px) {

  .policy-point,
  .return-condition,
  .warranty-card,
  .contact-card {
    flex: 1 1 100%;
  }

  .section-header h2 {
    font-size: 20px;
  }
}

.contact-card {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* FAQs styling section */
/* FAQ Specific Styles */
.faq-item {
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 15px;
  transition: var(--transition);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}

.faq-question:hover {
  color: var(--primary);
}

.question-number {
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
}

.faq-question h4 {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.faq-question i {
  transition: var(--transition);
  color: var(--gray);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 39px;
}

.faq-answer p {
  padding-bottom: 20px;
  line-height: 1.6;
  color: var(--secondary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.contact-note {
  text-align: center;
  margin-top: 15px;
  color: white;
  font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faq-question h4 {
    font-size: 16px;
    padding-right: 25px;
  }

  .faq-answer {
    padding-left: 20px;
  }
}