* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* General layout */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #fdfdfd;
  color: #333;
}

/* Navbar (keep consistent with your other pages) */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: auto;
  max-width: 100%;
  width: 22vw;
  margin-bottom: 4px;
  
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e63900;
}

.nav-links a.active {
  color: #e63900;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(to bottom right, #fff8f7, #ffffff);
  padding: 60px 20px 80px;
  display: flex;
  justify-content: center;
}

.about-container {
  background: #fff;
  max-width: 1000px;
  padding: 50px 60px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.about-container:hover {
  transform: translateY(-4px);
}

/* Title */
.about-container h1 {
  text-align: center;
  color: #e63900;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
  alignment-baseline: baseline;
}

/* Subtitles */
.about-container h2 {
  color: #e63900;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Paragraphs */
.about-container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* List (Why Choose Us) */
.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.about-list li::before {
  content: "✓";
  color: #e63900;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 18px;
}

/* Add friendly highlight box for Promise section */
.about-promise {
  margin-top: 40px;
  padding: 25px 30px;
  background: #fff4f1;
  border-left: 5px solid #e63900;
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #002c3e;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    padding: 30px 20px;
  }

  .about-container h1 {
    font-size: 26px;
  }

  .about-container h2 {
    font-size: 20px;
  }

  .about-container p {
    font-size: 15px;
  }
}
