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

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

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

.page-terms-conditions__hero {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-terms-conditions__hero p {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0;
}

.page-terms-conditions__content-section {
  padding: 50px 0;
}

.page-terms-conditions__content-section h2 {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.page-terms-conditions__content-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background-color: var(--secondary-color);
  border-radius: 3px;
}

.page-terms-conditions__content-section h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid var(--secondary-color);
}

.page-terms-conditions__content-section p {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-terms-conditions__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-terms-conditions__cta-box {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__cta-box p {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

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

.page-terms-conditions__cta-image {
  max-width: 300px;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__image-wrapper {
  margin-bottom: 40px;
  text-align: center;
}

.page-terms-conditions__main-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__hero {
    padding: 40px 0;
  }

  .page-terms-conditions__hero h1 {
    font-size: 2em;
  }

  .page-terms-conditions__hero p {
    font-size: 0.95em;
  }

  .page-terms-conditions__content-section h2 {
    font-size: 1.8em;
    padding-left: 10px;
  }

  .page-terms-conditions__content-section h3 {
    font-size: 1.4em;
    padding-left: 8px;
  }

  .page-terms-conditions__content-section p {
    font-size: 0.95em;
  }

  .page-terms-conditions__cta-box {
    padding: 30px 20px;
  }

  .page-terms-conditions__cta-box p {
    font-size: 1.2em;
  }

  .page-terms-conditions__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-terms-conditions__cta-image {
    max-width: 250px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero h1 {
    font-size: 1.8em;
  }

  .page-terms-conditions__hero p {
    font-size: 0.9em;
  }

  .page-terms-conditions__content-section h2 {
    font-size: 1.6em;
  }

  .page-terms-conditions__content-section h3 {
    font-size: 1.2em;
  }

  .page-terms-conditions__cta-box p {
    font-size: 1em;
  }

  .page-terms-conditions__cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-terms-conditions__main-image {
    border-radius: 5px;
  }
}