/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF;
  background-color: #0A192F;
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #0A192F, #1e3a5f);
  padding: 100px 0 60px;
  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:abstract_pattern,security,digital]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

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

.page-terms-conditions__title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  color: #e0e0e0;
  line-height: 1.6;
}

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

.page-terms-conditions__article {
  background-color: #1a2a47;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.8;
}

.page-terms-conditions__heading {
  font-size: 2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-terms-conditions__article p {
  margin-bottom: 15px;
  color: #c0c0c0;
}

.page-terms-conditions__article strong {
  color: #FFD700;
}

.page-terms-conditions__article ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #c0c0c0;
}

.page-terms-conditions__article ul li {
  margin-bottom: 8px;
}

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

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 40px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2.5em;
  }

  .page-terms-conditions__subtitle {
    font-size: 1em;
  }

  .page-terms-conditions__heading {
    font-size: 1.7em;
  }

  .page-terms-conditions__article {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }

  .page-terms-conditions__hero {
    padding: 80px 0 40px;
  }

  .page-terms-conditions__heading {
    font-size: 1.5em;
  }

  .page-terms-conditions__article {
    padding: 20px;
  }

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