/* Base Reset and Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.content {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  padding: 30px 0 0 0;
  border-radius: 50px;
  margin-top: -90px;
  background: #fff !important;
  position: relative;
  z-index: 9999;
}

/* Container */
.content .container {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Section */
.content h3 {
  font-weight: 500;
}
section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    /* border-bottom: 1px solid #e0e0e0; */
}
.content h1 {
  font-family: "Playfair Display", serif;
  color: #d5540e;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom:20px;
}
/* Headings */
.content h2 {
  color: #022d40;
  font-weight: 500;
  line-height: 1.4;
}

/* .content h1 {
    font-size: 2rem;
} */

.content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Paragraph */
.content p {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.6;
}
.content p a {
  color: #d5540e;
  font-weight: 600;
}
.content h3 strong {
  font-weight: 600;
}
/* Lists */
.content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.content li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 20px;
    line-height: 1.6;
}

/* Arrow before list items */
.content li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d5540e;
  font-weight: bold;
  font-size: 24px;
  top: -9px;
}
.text-center{
    text-align: center;
}


.content p {
  font-size: 15px;
}


@media (max-width: 1199.98px) {
.content {
  border-radius: 35px;
  margin-top: -76px;
}

  .banner img {
    height: 280px;
    object-position: right;
    object-fit: cover;
  }
}





@media (max-width: 991.98px) {
.content {
  border-radius: 25px;
    margin-top: -66px;
}
  .banner img {
    height: 220px;
  }

}


/* Responsive Typography and Layout */
@media (max-width: 768px) {
.banner img {
  height: 180px;
  object-fit: cover;
}
    .content h3 {;
  font-size: 16px;
}
section {
  padding-bottom: 5px;
}
    .content h1 {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 1.25rem;
    }

    .content .container {
        padding: 15px;
        max-width: 95%;
    }

    .content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
.content {
  border-radius: 20px;
  margin-top: -48px;
  padding: 24px 0 0 0;
}
}



@media (max-width: 480px) {
    .content h1 {
        font-size: 1.3rem;
    }

    .content h2 {
        font-size: 1.1rem;
    }

    .content p {
      font-size: 14px;
          margin-bottom: 5px;
    }

    .content ul {
        padding-left: 5px;
    }

    .content li {
        padding-left: 18px;
    }

    .content .container {
        padding: 10px;
        max-width: 98%;
    }
      .content li {
    font-size: 14px;
  }
  .content h2 {
    margin-top: 25px;
  }
    .content h3 {
    margin-bottom: 5px;
  }
}
