/* CSS Document */

  <style>
    body { font-family: sans-serif; max-width: 600px; margin: 80px auto; }
    label { display: block; margin-bottom: 8px; }
    input, textarea { width: 70%; margin: auto; padding: 8px; background-color: #ffffff; border: 3px solid #ccc; }
	input[type=text], select { margin: auto; width: 70%; background-color: #ffffff; border: 3px solid #ccc; }
 	input[type="text"] {font-size: 25px; }
	textarea {font-size: 25px; }
    button {  text-align: center; background: #00cc00; color: white; border: none; }
  
.center-inline {
  text-align: center;
}
.center-text {
  text-align: center;
}
.image-with-text {
  display: flex;
  flex-wrap: wrap;               /* Wrap when needed */
  justify-content: center;       /* Center horizontally */
  align-items: stretch;          /* Make items equal height */
  gap: 1.5rem;                   /* Space between items */
  padding: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;                  /* Space between image and text */
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  flex: 1 1 180px;               /* Flexible width */
  max-width: 320px;
  transition: transform 0.2s ease;
  text-align: left;
}

.feature:hover {
  transform: translateY(-4px);
}

.feature img {
  width: 35px;
  height: 35px;
  flex-shrink: 0;                /* Prevent image from shrinking */
}

.feature span {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

/* --- Responsive for small screens --- */
@media (max-width: 600px) {
  .feature {
    flex-direction: column;      /* Stack image and text */
    text-align: center;
  }

  .feature img {
    margin-bottom: 0.2rem;
  }
}           /* centers the whole block */
}

.image-with-text img {
  width: 35px;             /* set image size */
  height: auto;
  border-radius: 8px;       /* optional: rounded corners */
}

.image-with-text p {
  font-size: 10px;
  line-height: 1.0;
}
.gradient-line {
  width: 80%;
  height: 3px;
  border-radius: 2px;
  margin: 40px auto;
  background: linear-gradient(to right, transparent, #F5B027, transparent);
  box-shadow: 0 2px 6px rgba(78, 154, 241, 0.4); /* soft glowing shadow */
}
.media {
  display: flex;
  gap: 20px;               /* space between image and text */
  align-items: flex-start;     /* vertically center the text block */
  max-width: 900px;
  margin: 0 auto;
}
.text-block {
  white-space: pre-line; /* keeps newlines (\n) as visible breaks */
  font-family:  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.6;      /* adds readable spacing between lines */
  color: #ffffff;            /* optional styling */
}
a[href="#top"] {
  position: fixed;       /* Stays in the corner as you scroll */
  bottom: 10px;
  right: 10px;
  background-color: #00cc00;
  color: #fff;
  padding: 10px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-family: "Arial", sans-serif;
}
a[href="#top"]:hover {
  background-color: #009900;
}
/* ----------------------------------------------------------------------------- */
/* ================= Main Expanding Box ================= */

/* Expanding box container */
.expand-box,
.expand-box2,
.expand-box3 {
  width: 90%;
  margin: 20px auto;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: "Century Gothic", sans-serif;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  background-color: #fffbe6; /* default box background */
}

/* ================= Summary Headers ================= */

/* Common summary styles */
.expand-box summary,
.expand-box2 summary,
.expand-box3 summary {
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  list-style: none;            /* hide default triangle */
  display: flex;
  justify-content: space-between;
  align-items: center;

  -webkit-appearance: none;     /* prevents Safari styling */
  color-scheme: light !important; /* disables dark mode color adjustments */
}

/* Individual header colors */
.expand-box summary {
  background-color: #3399ff !important; /* blue */
  color: white !important;
}

.expand-box2 summary {
  background-color: #ff9900 !important; /* orange */
  color: white !important;
}

.expand-box3 summary {
  background-color: #808080 !important; /* grey */
  color: white !important;
}

/* ================= Arrow Styling ================= */
.expand-box summary .arrow,
.expand-box2 summary .arrow,
.expand-box3 summary .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  color-scheme: light !important; /* keep arrow color in dark mode */
}

/* Rotate arrow when details is open */
.expand-box[open] summary .arrow,
.expand-box2[open] summary .arrow,
.expand-box3[open] summary .arrow {
  transform: rotate(180deg);
}

/* ================= Content Areas ================= */
.expand-content,
.expand-content2,
.expand-box3 .expand-content {
  padding: 15px;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  background-color: #ffffff; /* content remains white */
}

/* ----------------------------------------------------------------------------- */
/* about us */
/* ABOUT ME SECTION */
#about-me {
  max-width: 1000px;
  margin: 40px auto;
  font-family: "Century Gothic", sans-serif;
  background-color: #cccccc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.about-photo {
  flex: 1 1 250px;
  text-align: center;
}

.about-photo img {
  width: 100%;
  max-width: 280px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: auto;
}

.about-text {
  flex: 2 1 500px;
}

.about-text h1 {
  color: #333366;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.about-text p {
  color: #333;
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  #about-me {
    padding: 20px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-photo img {
    max-width: 200px;
    margin: 0 auto 20px;
  }

  .about-text h1 {
    font-size: 1.6em;
  }

  .about-text p {
    font-size: 1em;
  }
  
/* ----------------------------------------------------------------------------- */
.center-text {
  text-align: center;
}
/* New style for FAQs section */
.style8 {
    font-size: x-large;       /* extra-large text */
    font-weight: bold;        /* bold heading */
    text-align: center;       /* center text */
    margin-top: 0;            /* remove extra space above */
    margin-bottom: 10px;      /* controlled space below */
    line-height: 1.3;         /* tighter line spacing */
}
.style8-description {
    font-size: x-large;       /* match heading size or slightly smaller */
    text-align: center;       /* center text */
    margin-top: 0;            /* remove extra space above */
    margin-bottom: 20px;      /* space below description */
    line-height: 1.4;
}


</style>

