/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #0A246A 0%, #3a5c9d 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:new88,abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-terms-conditions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.page-terms-conditions__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700; /* Gold for title highlight */
}

.page-terms-conditions__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-terms-conditions__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A246A; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-terms-conditions__content {
  padding: 60px 0;
  background-color: #fff;
}

.page-terms-conditions__grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
}

.page-terms-conditions__main-text h2 {
  font-size: 2em;
  color: #0A246A; /* Dark blue heading */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-terms-conditions__main-text h3 {
  font-size: 1.6em;
  color: #0A246A; /* Dark blue heading */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions__main-text p {
  margin-bottom: 15px;
  color: #555;
}

.page-terms-conditions__main-text a {
  color: #0A246A; /* Dark blue link */
  text-decoration: none;
  font-weight: bold;
}

.page-terms-conditions__main-text a:hover {
  text-decoration: underline;
  color: #FFD700; /* Gold on hover */
}

.page-terms-conditions__main-text .highlight {
  color: #0A246A;
  font-weight: bold;
}

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #0A246A; /* Dark blue button */
  color: #FFD700; /* Gold text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-terms-conditions__cta-button:hover {
  background-color: #071a4f; /* Darker blue on hover */
  transform: translateY(-2px);
}

.page-terms-conditions__contact-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A246A; /* Dark blue text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-terms-conditions__contact-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-terms-conditions__sidebar {
  background-color: #f0f2f5;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__sidebar-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__sidebar-card:last-child {
  margin-bottom: 0;
}

.page-terms-conditions__sidebar-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.page-terms-conditions__sidebar-title {
  font-size: 1.4em;
  color: #0A246A; /* Dark blue title */
  margin-bottom: 10px;
}

.page-terms-conditions__sidebar-card p {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.page-terms-conditions__sidebar-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */  color: #0A246A; /* Dark blue text */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-terms-conditions__sidebar-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-terms-conditions__grid {
    grid-template-columns: 1fr;
  }
  .page-terms-conditions__sidebar {
    order: -1; /* Sidebar appears above main content on smaller screens */
    margin-bottom: 30px;
  }
  .page-terms-conditions__title {
    font-size: 2.5em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__hero {
    padding: 60px 15px;
  }
  .page-terms-conditions__title {
    font-size: 2em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__content {
    padding: 40px 0;
  }
  .page-terms-conditions__main-text h2 {
    font-size: 1.8em;
  }
  .page-terms-conditions__main-text h3 {
    font-size: 1.4em;
  }
}