/* style/terms-conditions.css */
:root {
  --primary-color: #003366;
  --secondary-color: #FFCC00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #002244;
  --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 .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-terms-conditions .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-terms-conditions .hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-terms-conditions .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

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

.page-terms-conditions .hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
}

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

.page-terms-conditions .cta-button:hover {
  background: #e6b800; /* Slightly darker secondary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions .secondary-button {
  background: var(--primary-color);
  color: var(--text-light);
  margin-left: 15px;
}

.page-terms-conditions .secondary-button:hover {
  background: #004488; /* Slightly darker primary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions .content-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--background-light);
}

.page-terms-conditions .content-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-terms-conditions .terms-article {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.page-terms-conditions h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

.page-terms-conditions p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #555555;
}

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

.page-terms-conditions .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
}

.page-terms-conditions .contact-buttons {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-terms-conditions .hero-content h1 {
    font-size: 2.8em;
  }
  .page-terms-conditions h2 {
    font-size: 2em;
  }
  .page-terms-conditions h3 {
    font-size: 1.6em;
  }
  .page-terms-conditions .hero-content p,
  .page-terms-conditions p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions .hero-section,
  .page-terms-conditions .content-section {
    padding: 40px 15px;
  }
  .page-terms-conditions .hero-content h1 {
    font-size: 2.2em;
  }
  .page-terms-conditions .hero-content p {
    font-size: 0.95em;
  }
  .page-terms-conditions .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-terms-conditions h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-terms-conditions h3 {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  .page-terms-conditions .terms-article {
    padding: 20px;
  }
  .page-terms-conditions .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .page-terms-conditions .secondary-button {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions .hero-content h1 {
    font-size: 1.8em;
  }
  .page-terms-conditions .hero-content p {
    font-size: 0.9em;
  }
  .page-terms-conditions .cta-button {
    padding: 10px 20px;
    font-size: 15px;
  }
  .page-terms-conditions h2 {
    font-size: 1.6em;
  }
  .page-terms-conditions h3 {
    font-size: 1.2em;
  }
  .page-terms-conditions p {
    font-size: 0.9em;
  }
}