
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}


/* ===============================
       HEADER SECTION
    ================================= */
    .terms-header {
      background: linear-gradient(135deg, #dd4f05, #ffffff);
      padding: 60px 20px 40px 20px;
      position: relative;
      overflow: hidden;
    }

    .terms-header h1 {
      font-weight: 700;
      color: #222;
      padding-bottom: 15PX;
    }

    .terms-header p {
      color: #2b2b2b;
      font-size: 16px;
      max-width: 600px;
    }

    /* Logo top-right */
    .terms-logo {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #ff7a00;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* ===============================
       CONTENT SECTION
    ================================= */
    .terms-content {
      padding: 40px 20px;
      background: #ffffff;
    }

    .terms-content h2 {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px;
          color: #dd4f05;
          margin-top: 45px;
    }
.terms-content h2:hover {
  color: #663506;
  transform: translateY(-5px);
}
    .terms-content p {
      color: #555;
      line-height: 1.3;
      margin-bottom: 20px;
    }

    /* ===============================
       RESPONSIVE
    ================================= */

    /* Mobile */
    @media (max-width: 575px) {
      .terms-header {
        padding: 50px 15px 30px 15px;
      }

      .terms-header h1 {
        font-size: 22px;
      }

      .terms-header p {
        font-size: 14px;
      }

      .terms-logo {
        width: 40px;
        height: 40px;
        font-size: 14px;
      }

      .terms-content {
        padding: 30px 15px;
      }
    }

    /* Large Screens */
    @media (min-width: 1200px) {
      .terms-header {
        padding: 80px 0 60px 0;
      }

      .terms-content {
        padding: 60px 0;
      }
    }
    /* ===============================
   LOGO (Top Right Corner)
================================= */
.terms-header {
  position: relative; /* Required for absolute positioning */
}

.terms-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Logo image */
.terms-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===============================
   RESPONSIVE
================================= */

/* Mobile */
@media (max-width: 575px) {
  .terms-logo {
    width: 45px;
    height: 45px;
    top: 15px;
    right: 15px;
    padding: 6px;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .terms-logo {
    width: 70px;
    height: 70px;
  }
}
