body {
  margin: 0;
  font-family: 'Frank Ruhl Libre', serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-footer {
  margin-top: auto;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #cccccc;
  background-color: #f5f5f5;
  color: #333333;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 5px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.banner-left-img img {
  height: 55px;
  /* Adjust height to fit your specific logo */
}

.persistent-link {
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  margin-left: 20px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.persistent-link:hover {
  color: #4a0638;
}

.header-image-container {
  position: relative;
  text-align: center;
}

.header-image-container img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.header-image-container h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
  font-size: 3.5rem;
}

.about-us-section {
  background-image: url('../Images/About-us.webp');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  margin: 40px auto;
  width: 90%;
  max-width: 1000px;
  border-radius: 12px;
  display: block;
}

.about-us-text-block {
  background-color: #ffffff;
  padding: 60px 40px;
  max-width: 500px;
  margin: 0 auto 0 8%;
  border-radius: 8px;
  /* Slightly rounded corners */
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
}

.about-us-text-block h2 {
  text-decoration: underline;
  text-decoration-color: #4a0638;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.about-us-cta {
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 4px solid #4a0638;
  background-color: #f6eff4;
  border-radius: 6px;
  font-weight: 600;
}

.about-us-cta-link {
  color: #4a0638;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  word-break: break-word;
}

.about-us-cta-link:hover {
  color: #2f0324;
}

.home-main {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.services-section {
  padding: 0 0 40px;
  text-align: center;
}

.services-section h2,
.feature-panel h2 {
  color: #4a0638;
  text-decoration: underline;
  text-decoration-color: #4a0638;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  margin-bottom: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 28px 22px;
  border: 1px solid #f0e9ee;
  text-align: left;
}

.service-card h3 {
  margin-top: 0;
  color: #4a0638;
  font-size: 1.6rem;
}

.service-card p {
  color: #333333;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card a,
.cta-button {
  display: inline-block;
  background-color: #4a0638;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  padding: 10px 18px;
  font-weight: bold;
}

.service-card a:hover,
.cta-button:hover {
  background-color: #6b0951;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 20px 0 50px;
}

.feature-panel {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 28px 24px;
}

.feature-panel ul {
  margin: 0;
  padding-left: 20px;
  color: #333333;
  line-height: 1.8;
}

.accent-panel {
  background: #f6eff4;
  border: 1px solid #ead8e7;
}

.accent-panel p {
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-grid,
  .features-section {
    grid-template-columns: 1fr;
  }

  .about-us-text-block {
    margin: 0 auto;
  }
}

.page-footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #ccc;
    background-color: #f5f5f5;
}
