/* style/terms-conditions.css */
:root {
  --primary-color: #1a202c; /* Deep grey-blue */
  --secondary-color: #e53e3e; /* Red */
  --text-light: #f7fafc; /* Light grey for text on dark backgrounds */
  --text-dark: #2d3748; /* Dark grey for text on light backgrounds */
  --bg-light: #ffffff; /* White background */
  --bg-dark-secondary: #2d3748; /* Slightly lighter dark background */
  --border-color: #4a5568;
}

.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-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark-secondary) 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--text-light);
}

.page-terms-conditions .hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-terms-conditions .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  font-weight: bold;
  line-height: 1.2;
}

.page-terms-conditions .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: rgba(247, 250, 252, 0.9);
}

.page-terms-conditions .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
}

.page-terms-conditions .cta-button:hover {
  background: #c53030;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 62, 62, 0.6);
}

/* Content Sections */
.page-terms-conditions .content-section {
  padding: 60px 0;
  border-bottom: 1px solid #e2e8f0;
}

.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;
  font-weight: bold;
}

.page-terms-conditions .subsection-title {
  font-size: 1.6em;
  color: var(--bg-dark-secondary);
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-terms-conditions ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-terms-conditions ol {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-terms-conditions li {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-terms-conditions .internal-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.page-terms-conditions .internal-link:hover {
  text-decoration: underline;
}

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

.page-terms-conditions .secondary-button {
  background: var(--primary-color);
  box-shadow: 0 5px 15px rgba(26, 32, 44, 0.4);
}

.page-terms-conditions .secondary-button:hover {
  background: #2d3748;
  box-shadow: 0 8px 20px rgba(26, 32, 44, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .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: 2em;
  }
  .page-terms-conditions .subsection-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions .hero-section {
    padding: 60px 15px;
  }
  .page-terms-conditions .hero-title {
    font-size: 2.2em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 1em;
  }
  .page-terms-conditions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-terms-conditions .content-section {
    padding: 40px 0;
  }
  .page-terms-conditions .section-title {
    font-size: 1.8em;
  }
  .page-terms-conditions .subsection-title {
    font-size: 1.3em;
    margin-top: 30px;
  }
  .page-terms-conditions p,
  .page-terms-conditions li {
    font-size: 0.95em;
  }
  .page-terms-conditions .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions .hero-section {
    padding: 40px 10px;
  }
  .page-terms-conditions .hero-title {
    font-size: 1.8em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 0.9em;
  }
  .page-terms-conditions .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-terms-conditions .section-title {
    font-size: 1.5em;
  }
  .page-terms-conditions .subsection-title {
    font-size: 1.2em;
  }
  .page-terms-conditions p,
  .page-terms-conditions li {
    font-size: 0.9em;
  }
}