/* ===============================
   GLOBAL RESET (SAFE WITH BOOTSTRAP)
================================= */
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;
}

/* ===============================
   BANNER SECTION
================================= */
.banner {
  padding: 80px 0;
  background: #f8f9fa;
}

/* HEADING */
.banner h2 {
  color: #dd4f05;   /* Orange heading */
  font-size: 36px;
  font-weight: 700;
}

/* PARAGRAPH */
.banner p {
  font-size: 16px;
  line-height: 1.8;
  color: #383838;
}

/* IMAGE */
.banner img {
  width: 100%;
  border-radius: 10px;

  max-width: 100%;
  height: auto;
  display: block;


}

/* ===============================
   RESPONSIVE TUNING
================================= */

/* Mobile (350px - 575px) */
@media (max-width: 575px) {
  .banner {
    padding: 50px 15px;
  }

  .banner h2 {
    font-size: 26px;
  }

  .banner p {
    font-size: 14px;
  }
}

/* Tablets (576px - 991px) */
@media (max-width: 991px) {
  .banner {
    padding: 60px 20px;
  }

  .banner h2 {
    font-size: 30px;
  }
}

/* Large Screens (1200px+) */
@media (min-width: 1200px) {
  .banner h2 {
    font-size: 40px;
  }

  .banner p {
    font-size: 17px;
  }
}

/* Extra Large Screens (1600px+) */
@media (min-width: 1600px) {
  .banner {
    padding: 100px 0;
  }

  .banner h2 {
    font-size: 44px;
  }

  .banner p {
    font-size: 18px;
  }
}
