/* style/terms-conditions.css */

:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-dark: #333333;
  --text-light: #f4f4f4;
  --bg-light: #ffffff;
  --bg-dark: #0A2463;
  --border-color: #e0e0e0;
}

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

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

/* Hero Section */
.page-terms-conditions .hero-terms {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions .hero-terms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.9), rgba(227, 181, 5, 0.7));
  z-index: 1;
}

.page-terms-conditions .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions .hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

.page-terms-conditions .hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  object-fit: cover;
}

/* Content Sections */
.page-terms-conditions .content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.page-terms-conditions .content-section:last-of-type {
  border-bottom: none;
}

.page-terms-conditions .section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-terms-conditions .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

.page-terms-conditions ul,
.page-terms-conditions ol {
  margin-bottom: 15px;
  padding-left: 30px;
  font-size: 1.05em;
}

.page-terms-conditions ul li,
.page-terms-conditions ol li {
  margin-bottom: 10px;
}

.page-terms-conditions strong {
  color: var(--primary-color);
}

.page-terms-conditions .image-right {
  float: right;
  margin: 0 0 20px 30px;
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-terms-conditions .image-left {
  float: left;
  margin: 0 30px 20px 0;
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Call to Action Button */
.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.2em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

/* Contact List */
.page-terms-conditions .contact-list {
  list-style: none;
  padding-left: 0;
}

.page-terms-conditions .contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-terms-conditions .contact-list strong {
  color: var(--primary-color);
}

/* Final CTA Section */
.page-terms-conditions .cta-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

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

.page-terms-conditions .cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-terms-conditions .hero-title {
    font-size: 2.8em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 1.2em;
  }
  .page-terms-conditions .section-title {
    font-size: 1.8em;
  }
  .page-terms-conditions .image-right,
  .page-terms-conditions .image-left {
    float: none;
    margin: 20px auto;
    max-width: 70%;
    display: block;
  }
  .page-terms-conditions p,
  .page-terms-conditions ul,
  .page-terms-conditions ol {
    font-size: 1em;
  }
  .page-terms-conditions .cta-title {
    font-size: 2.2em;
  }
  .page-terms-conditions .cta-description {
    font-size: 1.1em;
  }
  .page-terms-conditions .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions .hero-title {
    font-size: 2.2em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 1em;
  }
  .page-terms-conditions .hero-terms {
    padding: 60px 0;
  }
  .page-terms-conditions .section-title {
    font-size: 1.6em;
  }
  .page-terms-conditions .content-section {
    padding: 40px 0;
  }
  .page-terms-conditions .image-right,
  .page-terms-conditions .image-left {
    max-width: 90%;
  }
  .page-terms-conditions .cta-section {
    padding: 60px 0;
  }
  .page-terms-conditions .cta-title {
    font-size: 1.8em;
  }
  .page-terms-conditions .cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions .hero-title {
    font-size: 1.8em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 0.9em;
  }
  .page-terms-conditions .section-title {
    font-size: 1.4em;
  }
  .page-terms-conditions .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-terms-conditions .container {
    padding: 0 15px;
  }
}