:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #2F4F4F; /* Dark Slate Gray / Teal */
  --accent-color: #DC143C; /* Crimson for emphasis */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f4f4f4;
  --background-dark: #1a1a1a;
}

.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

.page-terms-conditions .hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 80px 20px;
  text-align: center;
  color: var(--text-color-light);
  position: relative;
  overflow: hidden;
}

.page-terms-conditions .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-terms-conditions .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-color-light);
  opacity: 0.9;
}

.page-terms-conditions .hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-terms-conditions .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions .cta-button:hover {
  background: #B2002C;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions .secondary-button {
  background: var(--secondary-color);
}

.page-terms-conditions .secondary-button:hover {
  background: #1e3a3a;
}

.page-terms-conditions .content-section {
  padding: 60px 20px;
  background-color: var(--background-light);
}

.page-terms-conditions .container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-terms-conditions .intro-paragraph {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: justify;
  color: var(--text-color-dark);
}

.page-terms-conditions .section-title {
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-terms-conditions .section-text {
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-color-dark);
}

.page-terms-conditions .image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-terms-conditions .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* FAQ Styles */
.page-terms-conditions .faq-list {
  margin-top: 40px;
}

.page-terms-conditions .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

.page-terms-conditions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-terms-conditions .faq-question:hover {
  background: #f0f0f0;
}

.page-terms-conditions .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--secondary-color);
}

.page-terms-conditions .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-terms-conditions .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--text-color-dark);
}

.page-terms-conditions .faq-answer p {
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
}

.page-terms-conditions .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
}

.page-terms-conditions .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-terms-conditions .hero-title {
    font-size: 3em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 1.2em;
  }
  .page-terms-conditions .section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions .hero-section {
    padding: 60px 15px;
  }
  .page-terms-conditions .hero-title {
    font-size: 2.5em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 1em;
  }
  .page-terms-conditions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-terms-conditions .content-section {
    padding: 40px 15px;
  }
  .page-terms-conditions .section-title {
    font-size: 1.8em;
  }
  .page-terms-conditions .intro-paragraph,
  .page-terms-conditions .section-text {
    font-size: 0.95em;
  }
  .page-terms-conditions .faq-question {
    padding: 15px 20px;
  }
  .page-terms-conditions .faq-question h3 {
    font-size: 1em;
  }
  .page-terms-conditions .faq-toggle {
    font-size: 1.5em;
  }
  .page-terms-conditions .faq-answer {
    padding: 0 20px;
  }
  .page-terms-conditions .faq-item.active .faq-answer {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions .hero-title {
    font-size: 2em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 0.9em;
  }
  .page-terms-conditions .section-title {
    font-size: 1.5em;
  }
  .page-terms-conditions .faq-question h3 {
    font-size: 0.9em;
  }
  .page-terms-conditions .faq-toggle {
    font-size: 1.2em;
  }
}