* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.header {
  background-color: #e6f2ff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-menu li a:hover {
  color: #007bff;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #e6f2ff;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .menu-toggle:checked ~ .nav-menu {
    display: flex;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }
}
@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
  }
}
.slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 80%;
  max-width: 800px;
}
.slider-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.slider-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s ease;
}
.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.slider-btn.prev-btn {
  left: 10px;
}
.slider-btn.next-btn {
  right: 10px;
}

@media (max-width: 768px) {
  .slider-content h1 {
    font-size: 2rem;
  }
  .slider-content p {
    font-size: 1rem;
  }
  .slider-btn {
    padding: 0.5rem;
    font-size: 1.2rem;
  }
}
.features-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}
.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.diagonal-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}
.diagonal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 10px;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
}
.feature-item .feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #e6f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007bff;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.feature-item .feature-text h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.feature-item .feature-text p {
  color: #6c757d;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .diagonal-image {
    min-height: 400px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    order: -1;
  }
  .features-content {
    padding: 0 1rem;
  }
}
@media (max-width: 576px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  .feature-item .feature-icon {
    margin: 0 auto;
  }
  .diagonal-image {
    min-height: 300px;
  }
}
.yellow-section {
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.yellow-section .yellow-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 600px;
}

.yellow-clip {
  background-color: #ffd700;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  position: relative;
  padding: 3rem;
  display: flex;
  align-items: center;
  z-index: 1;
}
.yellow-clip .yellow-content {
  max-width: 80%;
  margin-left: 10%;
  color: #2c3e50;
}
.yellow-clip .yellow-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.yellow-clip .yellow-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.steps-container {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.step-item .step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #2c3e50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0.5rem;
}
.step-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.step-item p {
  color: #6c757d;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

@media (max-width: 1200px) {
  .yellow-container {
    grid-template-columns: 1fr 1.5fr;
  }
}
@media (max-width: 992px) {
  .yellow-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .yellow-clip {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    padding: 4rem 2rem;
    min-height: 300px;
  }
  .yellow-clip .yellow-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .steps-container {
    padding: 4rem 2rem;
  }
}
@media (max-width: 576px) {
  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .step-item .step-number {
    margin-top: 0;
  }
  .yellow-clip .yellow-content h2 {
    font-size: 2rem;
  }
  .yellow-clip .yellow-content p {
    font-size: 1rem;
  }
}
.two-column-section {
  padding: 5rem 0;
  background-color: #ffffff;
}
.two-column-section .container-fluid {
  padding: 0;
}
.two-column-section .row {
  min-height: 500px;
}

.text-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-content h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}
.text-content p {
  color: #6c757d;
  line-height: 1.8;
  text-align: justify;
  font-size: 1.1rem;
}

.blue-clip {
  background-color: #4a77a0;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.blue-clip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.2));
}

.blue-content {
  text-align: center;
  padding: 2rem;
  z-index: 1;
  max-width: 80%;
}
.blue-content h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.blue-content p {
  color: #2c3e50;
  font-size: 1.2rem;
  opacity: 0.9;
}

@media (max-width: 1199.98px) {
  .text-content {
    padding: 3rem;
  }
}
@media (max-width: 991.98px) {
  .two-column-section .row {
    min-height: auto;
  }
  .text-content {
    padding: 3rem 2rem;
    order: 1;
  }
  .blue-clip {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    min-height: 300px;
    margin-top: 2rem;
    order: 2;
  }
}
@media (max-width: 575.98px) {
  .text-content {
    padding: 2rem 1.5rem;
  }
  .text-content h2 {
    font-size: 1.8rem;
  }
  .text-content p {
    font-size: 1rem;
  }
  .blue-content {
    max-width: 90%;
  }
  .blue-content h3 {
    font-size: 1.7rem;
  }
}
.purple-yellow-section {
  padding: 0;
  background-color: #ffffff;
}
.purple-yellow-section .container-fluid {
  padding: 0;
}
.purple-yellow-section .row {
  min-height: 100%;
}

.purple-clip {
  background-color: #7f657f;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  position: relative;
  padding: 4rem 2rem 4rem 4rem;
  display: flex;
  align-items: center;
  color: white;
}
.purple-clip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}
.purple-clip h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.purple-clip p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  text-align: justify;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.yellow-highlights {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #f8f9fa;
}

.highlight-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.highlight-item h3 {
  background-color: #ffd700;
  color: white;
  padding: 1rem 1.5rem;
  margin: 0;
  font-size: 1.3rem;
}
.highlight-item ul {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
}
.highlight-item ul li {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #555;
}
.highlight-item ul li:last-child {
  margin-bottom: 0;
}
.highlight-item .highlight-label {
  font-weight: bold;
  color: #2c3e50;
  display: inline-block;
  margin-right: 0.5rem;
}

@media (max-width: 1199.98px) {
  .purple-clip {
    padding: 3rem 1.5rem 3rem 3rem;
  }
}
@media (max-width: 991.98px) {
  .purple-clip {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    padding: 3rem 2rem;
  }
  .purple-clip h2, .purple-clip p {
    text-align: center;
  }
  .yellow-highlights {
    padding: 2rem 1rem;
  }
}
@media (max-width: 575.98px) {
  .purple-clip {
    padding: 2rem 1.5rem;
  }
  .purple-clip h2 {
    font-size: 1.8rem;
  }
  .purple-clip p {
    font-size: 1rem;
  }
  .highlight-item h3 {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
  }
  .highlight-item ul {
    padding: 1rem;
  }
  .highlight-item ul li {
    font-size: 0.95rem;
  }
}
.yellow-green-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}
.yellow-green-section .section-header {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}
.yellow-green-section .section-header h2 {
  position: relative;
  display: inline-block;
  padding: 0 2rem;
  margin-bottom: 0;
  z-index: 2;
  background-color: #f8f9fa;
  color: #333;
}
.yellow-green-section .section-header .title-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  transform: translateY(-50%);
  display: flex;
  z-index: 1;
}
.yellow-green-section .section-header .title-bg .yellow-bg {
  width: 80%;
  height: 100%;
  background-color: #ffd700;
}
.yellow-green-section .section-header .title-bg .green-bg {
  width: 20%;
  height: 100%;
  background-color: #28a745;
}
.yellow-green-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.yellow-green-section .description-box {
  background-color: #ffd700;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}
.yellow-green-section .description-box p {
  margin: 0;
  text-align: justify;
  line-height: 1.8;
  color: #333;
}
.yellow-green-section .numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
}
.yellow-green-section .numbered-list li {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.yellow-green-section .numbered-list li .number {
  flex: 0 0 40px;
  height: 40px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1rem;
}
.yellow-green-section .numbered-list li .content {
  flex: 1;
}
.yellow-green-section .numbered-list li .content .item-title {
  font-weight: bold;
  color: #2c3e50;
  margin-right: 0.5rem;
}
.yellow-green-section .numbered-list li .content p {
  margin: 0.5rem 0 0;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .yellow-green-section .numbered-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media (max-width: 767.98px) {
  .yellow-green-section {
    padding: 3rem 0;
  }
  .yellow-green-section .section-header h2 {
    font-size: 1.8rem;
    padding: 0 1rem;
  }
  .yellow-green-section .description-box {
    padding: 1.5rem;
  }
  .yellow-green-section .description-box p {
    font-size: 0.95rem;
  }
  .yellow-green-section .numbered-list {
    grid-template-columns: 1fr;
  }
  .yellow-green-section .numbered-list li {
    padding: 1.25rem;
  }
  .yellow-green-section .numbered-list li .number {
    flex: 0 0 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  .yellow-green-section .numbered-list li .content {
    font-size: 0.95rem;
  }
}
.four-columns-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.four-columns-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-size: 2.2rem;
  font-weight: 700;
}
.four-columns-section .column-box {
  height: 100%;
  padding: 2rem;
  border-radius: 8px;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.four-columns-section .column-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.four-columns-section .column-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: white;
}
.four-columns-section .column-box p {
  margin: 0;
  line-height: 1.8;
  text-align: justify;
  font-size: 1rem;
  opacity: 0.95;
}
.four-columns-section .blue-bg {
  background-color: #4a77a0;
}
.four-columns-section .yellow-bg {
  background-color: #f4cd38;
}
.four-columns-section .yellow-bg h3, .four-columns-section .yellow-bg p {
  color: #2c3e50;
}
.four-columns-section .purple-bg {
  background-color: #7f657f;
}
.four-columns-section .teal-bg {
  background-color: #499b97;
}

@media (max-width: 1199.98px) {
  .four-columns-section .column-box {
    padding: 1.75rem;
  }
  .four-columns-section .column-box h3 {
    font-size: 1.3rem;
  }
  .four-columns-section .column-box p {
    font-size: 0.95rem;
  }
}
@media (max-width: 991.98px) {
  .four-columns-section {
    padding: 4rem 0;
  }
  .four-columns-section .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  .four-columns-section .column-box {
    margin-bottom: 1.5rem;
  }
  .four-columns-section .column-box:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .four-columns-section {
    padding: 3rem 0;
  }
  .four-columns-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .four-columns-section .column-box {
    padding: 1.75rem 1.5rem;
  }
  .four-columns-section .column-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .four-columns-section .column-box p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
.teal-list-section {
  position: relative;
  overflow: hidden;
}
.teal-list-section .teal-clip {
  background-color: #499b97;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  min-height: 100%;
}
.teal-list-section .teal-clip .teal-content {
  height: 100%;
  min-height: 500px;
  text-align: center;
  align-content: center;
  text-transform: uppercase;
}
.teal-list-section .teal-clip .teal-content h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.teal-list-section .list-content {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}
.teal-list-section .list-content .content-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.teal-list-section .list-content .content-wrapper h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.teal-list-section .arrow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.teal-list-section .arrow-list li {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}
.teal-list-section .arrow-list li:last-child {
  margin-bottom: 0;
}
.teal-list-section .arrow-list li i {
  color: #499b97;
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}
.teal-list-section .arrow-list li .item-content {
  flex: 1;
}
.teal-list-section .arrow-list li .item-content .item-title {
  font-weight: bold;
  color: #2c3e50;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.teal-list-section .arrow-list li .item-content p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  text-align: justify;
}

@media (max-width: 1199.98px) {
  .teal-list-section .teal-clip {
    clip-path: polygon(0 0, 90% 0, 100% 30%, 90% 100%, 0 100%);
  }
}
@media (max-width: 991.98px) {
  .teal-list-section .teal-clip {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    min-height: 300px;
  }
  .teal-list-section .teal-clip .teal-content {
    min-height: 300px;
  }
  .teal-list-section .list-content {
    padding: 3rem 2rem;
  }
  .teal-list-section .list-content .content-wrapper {
    max-width: 100%;
  }
  .teal-list-section .list-content .content-wrapper h2 {
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .teal-list-section .list-content {
    padding: 2.5rem 1.5rem;
  }
  .teal-list-section .list-content .content-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .teal-list-section .list-content .arrow-list li {
    margin-bottom: 1.5rem;
  }
  .teal-list-section .list-content .arrow-list li i {
    font-size: 1.1rem;
  }
  .teal-list-section .list-content .arrow-list li .item-content .item-title {
    font-size: 1rem;
  }
  .teal-list-section .list-content .arrow-list li .item-content p {
    font-size: 0.95rem;
  }
}
.blue-check-section {
  position: relative;
  overflow: hidden;
}
.blue-check-section .blue-clip {
  background-color: #4a77a0;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  min-height: 100%;
  display: flex;
  align-items: center;
}
.blue-check-section .blue-clip .blue-content {
  padding: 4rem 5rem 4rem 3rem;
  color: white;
}
.blue-check-section .blue-clip .blue-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.blue-check-section .blue-clip .blue-content .spacer {
  height: 30px;
}
.blue-check-section .blue-clip .blue-content p {
  line-height: 1.8;
  margin-bottom: 0;
  text-align: justify;
}
.blue-check-section .check-list {
  padding: 3rem 2rem;
  background-color: #f8f9fa;
}
.blue-check-section .check-list .check-item {
  margin-bottom: 2.5rem;
}
.blue-check-section .check-list .check-item:last-child {
  margin-bottom: 0;
}
.blue-check-section .check-list .check-item h3 {
  background-color: #4a77a0;
  color: white;
  padding: 0.8rem 1.5rem;
  margin: 0 0 1.2rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  border-radius: 4px;
}
.blue-check-section .check-list .check-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blue-check-section .check-list .check-item ul li {
  display: flex;
  margin-bottom: 0.5rem;
}
.blue-check-section .check-list .check-item ul li i {
  color: #4a77a0;
  margin-right: 1rem;
  margin-top: 0.3rem;
  font-size: 1.1rem;
}
.blue-check-section .check-list .check-item ul li span {
  font-weight: bold;
  color: #333;
  line-height: 1.7;
}

@media (max-width: 1199.98px) {
  .blue-check-section .blue-clip {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  }
  .blue-check-section .blue-clip .blue-content {
    padding: 3rem 4rem 3rem 2rem;
  }
  .blue-check-section .blue-clip .blue-content h2 {
    font-size: 2rem;
  }
  .blue-check-section .check-list {
    padding: 2.5rem 1.5rem;
  }
  .blue-check-section .check-list .check-item {
    margin-bottom: 2rem;
  }
  .blue-check-section .check-list .check-item h3 {
    font-size: 1.1rem;
    padding: 0.7rem 1.3rem;
  }
}
@media (max-width: 991.98px) {
  .blue-check-section .blue-clip {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
  }
  .blue-check-section .blue-clip .blue-content {
    padding: 3rem 2rem;
  }
  .blue-check-section .blue-clip .blue-content h2 {
    text-align: center;
  }
  .blue-check-section .check-list {
    padding: 3rem 2rem;
  }
  .blue-check-section .check-list .check-item {
    text-align: center;
  }
  .blue-check-section .check-list .check-item h3 {
    margin-left: auto;
    margin-right: auto;
  }
  .blue-check-section .check-list .check-item ul li {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .blue-check-section .blue-clip .blue-content {
    padding: 2.5rem 1.5rem;
  }
  .blue-check-section .blue-clip .blue-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .blue-check-section .blue-clip .blue-content p {
    font-size: 0.95rem;
  }
  .blue-check-section .check-list {
    padding: 2.5rem 1.5rem;
  }
  .blue-check-section .check-list .check-item {
    margin-bottom: 2rem;
  }
  .blue-check-section .check-list .check-item h3 {
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
  }
  .blue-check-section .check-list .check-item ul li {
    font-size: 0.95rem;
  }
  .blue-check-section .check-list .check-item ul li i {
    margin-right: 0.8rem;
  }
}
/* Two Color Title Section */
.two-color-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}
.two-color-section .section-header {
  margin-bottom: 2.5rem;
  position: relative;
}
.two-color-section .section-header h2 {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  padding: 0.8rem 2rem;
  position: relative;
  z-index: 2;
}
.two-color-section .section-header h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: #ffc107; /* Yellow */
  z-index: -1;
  border-radius: 4px 0 0 4px;
}
.two-color-section .section-header h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: #28a745; /* Green */
  z-index: -1;
  border-radius: 0 4px 4px 0;
}
.two-color-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.two-color-section .content-wrapper .text-content {
  background-color: #fff3cd; /* Light yellow background */
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.two-color-section .content-wrapper .text-content p {
  margin: 0;
  line-height: 1.8;
  text-align: justify;
  color: #333;
}
.two-color-section .content-wrapper .numbered-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.two-color-section .content-wrapper .numbered-items-list li {
  display: flex;
  margin-bottom: 1.5rem;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.two-color-section .content-wrapper .numbered-items-list li .number {
  background-color: #4a77a0;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 1.5rem;
}
.two-color-section .content-wrapper .numbered-items-list li .item-content {
  padding: 1.5rem;
  flex: 1;
}
.two-color-section .content-wrapper .numbered-items-list li .item-content .item-title {
  display: block;
  font-weight: bold;
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.two-color-section .content-wrapper .numbered-items-list li .item-content p {
  color: #555;
  margin: 0;
  line-height: 1.7;
  text-align: justify;
}
.two-color-section .content-wrapper .numbered-items-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .two-color-section {
    padding: 3rem 0;
  }
  .two-color-section .section-header h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 767.98px) {
  .two-color-section .section-header h2 {
    font-size: 1.5rem;
    padding: 0.7rem 1.5rem;
  }
  .two-color-section .section-header h2::before {
    width: 75%;
  }
  .two-color-section .section-header h2::after {
    width: 25%;
  }
  .two-color-section .content-wrapper .text-content {
    padding: 1.5rem;
  }
  .two-color-section .content-wrapper .numbered-items-list li {
    flex-direction: column;
  }
  .two-color-section .content-wrapper .numbered-items-list li .number {
    width: 100%;
    min-height: 50px;
  }
  .two-color-section .content-wrapper .numbered-items-list li .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .two-color-section .section-header h2 {
    font-size: 1.3rem;
    padding: 0.6rem 1.2rem;
  }
  .two-color-section .section-header h2::before {
    width: 70%;
  }
  .two-color-section .section-header h2::after {
    width: 30%;
  }
  .two-color-section .content-wrapper .text-content {
    padding: 1.2rem;
  }
  .two-color-section .content-wrapper .text-content p {
    font-size: 0.95rem;
  }
  .two-color-section .content-wrapper .numbered-items-list li .item-content {
    padding: 1.2rem;
  }
  .two-color-section .content-wrapper .numbered-items-list li .item-content .item-title {
    font-size: 1.1rem;
  }
  .two-color-section .content-wrapper .numbered-items-list li .item-content p {
    font-size: 0.95rem;
  }
}

/*# sourceMappingURL=main.css.map */
