/* style/terms-conditions.css */
:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --accent-color: #DC143C;
  --text-light: #F0F2F5;
  --text-dark: #333333;
  --background-light: #FFFFFF;
  --background-dark: #0A192F;
}

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

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

.page-terms-conditions .hero-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a345e 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions .hero-banner .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-terms-conditions .hero-banner p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--text-light);
}

.page-terms-conditions .hero-banner .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-terms-conditions .hero-banner .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

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

.page-terms-conditions .cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-terms-conditions .content-section article h2::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

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

.page-terms-conditions .content-section article p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-dark);
  line-height: 1.7;
}

.page-terms-conditions .content-section article ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-terms-conditions .content-section article ul li {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.page-terms-conditions .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions .faq-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  border-top: 1px solid #e0e0e0;
}

.page-terms-conditions .faq-section h2 {
  text-align: center;
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.page-terms-conditions .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

.page-terms-conditions .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

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

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

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

.page-terms-conditions .call-to-action p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-terms-conditions .hero-banner h1 {
    font-size: 2.5em;
  }
  .page-terms-conditions .hero-banner p {
    font-size: 1.1em;
  }
  .page-terms-conditions .content-section article h2 {
    font-size: 2em;
  }
  .page-terms-conditions .content-section article p {
    font-size: 1em;
  }
  .page-terms-conditions .faq-section h2 {
    font-size: 2em;
  }
  .page-terms-conditions .call-to-action h2 {
    font-size: 2.2em;
  }
  .page-terms-conditions .call-to-action p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions .hero-banner {
    padding: 60px 0;
  }
  .page-terms-conditions .hero-banner h1 {
    font-size: 2em;
  }
  .page-terms-conditions .hero-banner p {
    font-size: 1em;
  }
  .page-terms-conditions .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-terms-conditions .content-section {
    padding: 40px 0;
  }
  .page-terms-conditions .content-section article h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-terms-conditions .content-section article h3 {
    font-size: 1.4em;
    margin-top: 30px;
  }
  .page-terms-conditions .faq-question {
    padding: 15px 20px;
  }
  .page-terms-conditions .faq-question h3 {
    font-size: 1.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: 15px 20px;
  }
  .page-terms-conditions .call-to-action {
    padding: 50px 15px;
  }
  .page-terms-conditions .call-to-action h2 {
    font-size: 1.8em;
  }
  .page-terms-conditions .call-to-action p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions .hero-banner h1 {
    font-size: 1.6em;
  }
  .page-terms-conditions .hero-banner p {
    font-size: 0.9em;
  }
  .page-terms-conditions .content-section article h2 {
    font-size: 1.5em;
  }
  .page-terms-conditions .content-section article h3 {
    font-size: 1.2em;
  }
  .page-terms-conditions .faq-question h3 {
    font-size: 1em;
  }
  .page-terms-conditions .faq-toggle {
    font-size: 1.2em;
  }
  .page-terms-conditions .call-to-action h2 {
    font-size: 1.6em;
  }
  .page-terms-conditions .call-to-action p {
    font-size: 0.9em;
  }
}