/* style/terms-conditions.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #121212;
  --background-light: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text should be light */
  background-color: var(--background-dark);
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-terms-conditions__hero-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-container {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-terms-conditions__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-terms-conditions__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-terms-conditions__hero-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-terms-conditions__hero-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__content-section {
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-terms-conditions__section-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-terms-conditions__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions__paragraph {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.page-terms-conditions__list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-terms-conditions__cta-button:hover {
  background: #e6c200;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-button--small {
  padding: 10px 20px;
  font-size: 15px;
}

.page-terms-conditions__cta-button--wide {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}

.page-terms-conditions__contact-info {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-terms-conditions__contact-info p {
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--text-light);
}

.page-terms-conditions__contact-info strong {
  color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-terms-conditions__hero-title {
    font-size: 40px;
  }
  .page-terms-conditions__hero-description {
    font-size: 16px;
  }
  .page-terms-conditions__hero-button {
    font-size: 18px;
    padding: 12px 30px;
  }
  .page-terms-conditions__section-title {
    font-size: 28px;
  }
  .page-terms-conditions__sub-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 15px;
  }
  .page-terms-conditions__hero-section {
    padding: 60px 15px;
  }
  .page-terms-conditions__hero-title {
    font-size: 32px;
    line-height: 1.3;
  }
  .page-terms-conditions__hero-description {
    font-size: 15px;
  }
  .page-terms-conditions__hero-button {
    font-size: 16px;
    padding: 12px 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }
  .page-terms-conditions__content-section {
    padding: 40px 15px;
  }
  .page-terms-conditions__section-title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-terms-conditions__sub-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
  }
  .page-terms-conditions__paragraph,
  .page-terms-conditions__list li {
    font-size: 15px;
  }
  .page-terms-conditions__image {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-terms-conditions__cta-button {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-terms-conditions__cta-button--wide {
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-terms-conditions__contact-info {
    padding: 20px;
  }
  .page-terms-conditions__contact-info p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 28px;
  }
  .page-terms-conditions__hero-description {
    font-size: 14px;
  }
  .page-terms-conditions__hero-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-terms-conditions__section-title {
    font-size: 22px;
  }
  .page-terms-conditions__sub-title {
    font-size: 18px;
  }
}