.page-terms-conditions {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-light: #f5f5f5;
  --border-color: #e0e0e0;
}

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

.page-terms-conditions .hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 80px 0;
  color: var(--text-light);
  text-align: center;
}

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

.page-terms-conditions .hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.page-terms-conditions .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-terms-conditions .cta-button:hover {
  background: var(--text-light);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions .secondary-button {
  background: var(--secondary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
  margin-left: 20px;
}

.page-terms-conditions .secondary-button:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
}

.page-terms-conditions .large-button {
  padding: 20px 50px;
  font-size: 1.3em;
}

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

.page-terms-conditions .article-content {
  background-color: var(--text-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}

.page-terms-conditions .article-content h2 {
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-terms-conditions .article-content h3 {
  font-size: 1.6em;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions .article-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

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

.page-terms-conditions .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions .contact-buttons {
  text-align: center;
  margin-top: 40px;
}

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

.page-terms-conditions .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

.page-terms-conditions .faq-question:hover {
  background: var(--bg-light);
  color: var(--secondary-color);
}

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

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

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

.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: var(--bg-light);
  color: var(--text-dark);
}

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

.page-terms-conditions .faq-answer p {
  margin: 0;
}

.page-terms-conditions .call-to-action-bottom {
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

.page-terms-conditions .call-to-action-bottom h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-terms-conditions .call-to-action-bottom p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-terms-conditions .hero-content h1 {
    font-size: 3em;
  }
  .page-terms-conditions .article-content {
    padding: 30px;
  }
  .page-terms-conditions .article-content h2 {
    font-size: 2em;
  }
  .page-terms-conditions .article-content h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions .hero-section {
    padding: 60px 0;
  }
  .page-terms-conditions .hero-content h1 {
    font-size: 2.5em;
  }
  .page-terms-conditions .hero-content p {
    font-size: 1em;
  }
  .page-terms-conditions .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-terms-conditions .secondary-button {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-terms-conditions .article-content {
    padding: 20px;
  }
  .page-terms-conditions .article-content h2 {
    font-size: 1.8em;
  }
  .page-terms-conditions .article-content h3 {
    font-size: 1.3em;
  }
  .page-terms-conditions .faq-question {
    padding: 15px 20px;
  }
  .page-terms-conditions .faq-question h3 {
    font-size: 1em;
  }
  .page-terms-conditions .faq-toggle {
    font-size: 20px;
  }
  .page-terms-conditions .faq-answer {
    padding: 10px 20px;
  }
  .page-terms-conditions .call-to-action-bottom h2 {
    font-size: 2em;
  }
  .page-terms-conditions .call-to-action-bottom p {
    font-size: 1em;
  }
  .page-terms-conditions .large-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions .hero-content h1 {
    font-size: 2em;
  }
  .page-terms-conditions .cta-button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .page-terms-conditions .secondary-button {
    margin-top: 0;
  }
  .page-terms-conditions .article-content h2 {
    font-size: 1.6em;
  }
  .page-terms-conditions .article-content h3 {
    font-size: 1.2em;
  }
  .page-terms-conditions .call-to-action-bottom h2 {
    font-size: 1.8em;
  }
  .page-terms-conditions .large-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}