body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.6;
}
/* Headings */
    h1, h2, h3, h4, h5, h6, .subheading {
      font-family: 'EB Garamond', serif; /* Changed from Times New Roman */
    }


.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-logo {
  max-width: 250px;
  height: auto;
}

.logo img {
  max-width: 300px;
  height: 200px;
}

.menu-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu-links a {
  text-decoration: none;
  color: #090909;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.menu-links a:hover,
.menu-links a.active {
  color: #fca311;
}

.hero-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  color: #fca311;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.hero-section p {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

main {
  padding: 40px 20px;
}

.intro-section,
.why-us,
.case-stats,
.cta-section {
  max-width: 960px;
  margin: 0 auto 50px;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto;
  width: 50%;
}

.separator hr {
  flex: 1;
  border: none;
  border-top: 2px solid #fca311;
}

.separator img {
  width: 40px;
  height: 30px;
}

.intro-section h2,
.why-us h2,
.case-stats h2,
.cta-section h2 {
  color: #0d0d0d;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.why-us ul {
  list-style: none;
  padding-left: 0;
}

.why-us li {
  background-color: #f4f4f4;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.stats-grid div {
  background-color: #fca311;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.cta-section {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fca311;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #fca311;
}

.custom-footer {
  background-color: #f4f4f4;
  color: #0d1321;
  padding: 40px 20px 20px;
  font-family: 'Inter', sans-serif;
  border: #666;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1 220px;
  text-align: left;
}

.footer-logo {
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0;
}

.footer-block {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-block h4 {
  color: #0d1321;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-block p,
.footer-block li {
  margin-bottom: 8px;
  color: #333;
  font-size: 0.95rem;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block i {
  margin-right: 8px;
  color: #fca311;
}

.footer-block a {
  color: #fca311;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-block a:hover {
  color: #0d1321;
  text-shadow: 0 0 3px rgba(252, 163, 17, 0.6);
  text-decoration: underline;
}

.footer-block ul li {
  position: relative;
  transition: transform 0.2s ease, color 0.3s ease;
}

.footer-block ul li:hover {
  color: #fca311;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 16px;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-bottom: 10px;
}

.footer-socials {
  margin-top: 12px;
}

.footer-socials a {
  color: #0d1321;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #fca311;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-block {
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-section {
    flex: 1 1 100%;
  }
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
