

/* Banner Section (if used) */
.hero-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-section .heading-title {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

.terms-content {
    max-width: 1000px;      
    margin: 40px auto;               
    line-height: 1.7;
    color: #000;
    padding: 40px 20px;
    background: #fafafa;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
   
}


.terms-content h1,
.terms-content h2,
.terms-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #6b3e26;
    border-left:4px solid #6b3e26;
    padding-left:15px;
}


.terms-content p {
    margin-bottom: 16px;
}


.terms-content ul,
.terms-content ol {
    margin: 12px 0 16px 25px;
}


.terms-content a {
    color:#6b3e26;
    text-decoration: none;
    transition: color 0.2s ease;
}

.terms-content a:hover {
    text-decoration: underline;
}