/* style/terms-conditions.css */

:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --bg-color-dark: #0D0E12;
  --card-bg-color: #17191F;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --button-gradient: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
}

/* Base styles for the page content */
.page-terms-conditions {
  background-color: var(--bg-color-dark);
  color: var(--text-main-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-terms-conditions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-terms-conditions__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-terms-conditions__section:last-of-type {
  border-bottom: none;
}

.page-terms-conditions__section-title {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-terms-conditions__subsection-title {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  font-size: 17px;
}

.page-terms-conditions ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-terms-conditions li {
  margin-bottom: 8px;
  font-size: 17px;
}

.page-terms-conditions a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-terms-conditions a:hover {
  color: var(--secondary-color);
}