				
		/* =============== General Styles =============== */
body {
  font-family: "Poppins", Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  background-color: #fff;
}

h1, h2 {
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

p {
  color: #555;
  font-size: 1.05rem;
}

a {
  color: #fe5525;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #000;
}

/* =============== Button Styles =============== */
.button {
  display: inline-block;
  background: #fe5525;
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.button:hover {
  background: #e0410f;
  transform: translateY(-2px);
}

/* =============== Banner Section =============== */
.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2em 10% 5em; /* reduced top padding */
  background: linear-gradient(to right, #fff, #f7f7f7);
  min-height: 100vh;
}

.banner .content {
  max-width: 600px;
  margin-top: -30px; /* moves content upward */
}

.banner h1 {
  font-size: 3rem;
  color: #000;
  margin-bottom: 1rem;
  margin-top: 0; /* ensures no extra top gap */
}

.banner .image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* =============== Spotlight Sections =============== */
.spotlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4em 10%;
  gap: 3em;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.spotlight:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #fafafa;
}

.spotlight .content {
  flex: 1;
}

.spotlight .content h2 {
  color: #fe5525;
  font-size: 2rem;
  margin-bottom: 1em;
}

.spotlight .content p {
  text-align: justify;
}

.spotlight .image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.spotlight .image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.spotlight .image img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}



.faq-section {
  max-width: 900px;
  margin: 80px auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 40px 50px;
  font-family: "Poppins", sans-serif;
}

.faq-section h1 {
  text-align: center;
  color: #0d3b66;
  font-size: 2.2em;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 3px solid #00aaff;
  display: inline-block;
  padding-bottom: 10px;
}

.faq-section ul {
  list-style-type: none;
  padding: 0;
}

.faq-section li {
  font-weight: 600;
  font-size: 1.1em;
  color: #004080;
  margin-top: 25px;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  transition: color 0.3s ease;
}

.faq-section li::before {
  content: "❓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00aaff;
  font-size: 1.3em;
}

.faq-section li:hover {
  color: #00aaff;
}

.faq-section p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1em;
  color: #333;
  line-height: 1.7em;
  background: #f5faff;
  padding: 15px 20px;
  border-left: 4px solid #00aaff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.faq-section p:hover {
  background: #e0f4ff;

		
	
/* Mobile Layout: Stack images above content */
@media (max-width: 768px) {
    /* Make spotlight sections stack vertically */
    .spotlight {
        display: flex;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        padding: 20px 10px;
    }

    /* Image first */
    .spotlight .image {
        order: -1; /* Move image before content */
        width: 90% !important;
        margin-bottom: 15px;
    }

    .spotlight .image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .spotlight .content {
        width: 100% !important;
    }

    .spotlight .content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .spotlight .content p {
        font-size: 16px;
        line-height: 1.5;
        text-align: justify;
    }

    /* Banner adjustments */
    .banner.fullscreen {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 10px;
    }

    .banner .image img {
        width: 90%;
        height: auto;
        margin-bottom: 20px;
    }

    .banner .content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .banner .content p {
        font-size: 16px;
        padding: 0 5px;
    }
}

		

		