body {
    background-color: white;
    min-height: 100vh;
    margin: 0;
    font-family: "Inter", sans-serif;
}

/* Main terms container */
.terms_conditions {
    padding: 20px;
    background-color: white;
    border: 1px solid orangered; /* ✅ FIXED */
    border-radius: 10px;
    line-height: 1.6;
}

/* Page title */
h1 {
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 20px;
}

/* Section headings */
h2 {
    color: #5a5a5a;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Paragraph text */
p {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

/* Lists */
ul {
    font-size: 15px;
    color: #333;
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 6px;
}


@media (max-width: 768px) {
    .terms_conditions {
        margin: 10px;
        line-height: 1.5;
    }

    .terms-header{
      font-size: 1.5rem;
    }

    h2{
      font-size: 1.2rem;
      margin-top: 15px;
    }

    .terms-header{
      margin-bottom: 15px;
    }
  }