/* === Global reset ========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh; /* Ensures body is at least viewport height */
  display: flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", serif;
}

/* ------------------------------------------------------------------
  Banner
   ------------------------------------------------------------------ */
.banner {
  position: relative;
  min-height: 300px;
  background: url('../Homepage_files/Images/banner5.png') center/cover no-repeat;
  overflow: hidden;
}

/* ------------------------------------------------------------------
  Banner logo
   ------------------------------------------------------------------ */
.banner-logo {
  position: absolute;
  left: 50%;
  bottom: 31%;
  transform: translateX(-50%);
  max-width: 350px;
  width: 100%;
  height: auto;
  z-index: 10;
}

/* ------------------------------------------------------------------
  Sticky Menu - FIXED
   ------------------------------------------------------------------ */
.sticky-menu {
  position: sticky;
  top: 0;
  padding: 5px;
  background-color: #702b31ff;
  z-index: 100; /* Ensure it stays on top of other content */
}

/* ------------------------------------------------------------------
  Nav logo
   ------------------------------------------------------------------ */
.nav-logo {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 120px;
  width: 100%;
  height: auto;
  z-index: 10;
}

/* ---------- Navigation ---------- */
.banner-nav {
  width: 100%;
  z-index: 20;
}

.banner-nav .nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 0 auto;
}

.banner-nav .nav-link {
  color: #fff;
  background: rgba(0,0,0,0.3);
  padding: .5rem 1rem;
  border-radius: .25rem;
  font-weight: 500;
  transition: background .2s, color .2s;
  text-decoration: none;
}

.banner-nav .nav-link:hover,
.banner-nav .nav-link:focus {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ------------------------------------------------------------------
  Dropdown Menu
   ------------------------------------------------------------------ */
.dropbtn {
  color: #fff;
  background: rgba(0,0,0,0.3);
  padding: .5rem 1rem;
  border-radius: .25rem;
  font-weight: 500;
  transition: background .2s, color .2s;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap; 
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: rgba(255,255,255,0.2);
}

.nav-item {
  display: flex;
  align-items: center;
}

/* ------------------------------------------------------------------
  Main Content Wrapper
   ------------------------------------------------------------------ */
.main-content {
  flex: 1; /* Takes up remaining space, pushing footer to bottom */
}


/* =========================  FOOTER STYLES  ========================= */
:root {
  --footer-bg: #702b31ff;
  --footer-text: #e7e0d6ff;
  --footer-link: #e7e0d6ff;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  margin-bottom: 1rem;
  font-style: normal;
}

.contact-info a {
  color: var(--footer-link);
  text-decoration: none;
}

.contact-info a:hover,
.contact-info a:focus {
  text-decoration: underline;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.footer-nav li {
  margin-left: 1.5rem;
}

.footer-nav a {
  color: var(--footer-link);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus {
  text-decoration: underline;
}

/* Icon styling */
.icon {
  display: inline-flex;
  align-items: center;
  margin-right: .5rem;
  vertical-align: middle;
}

.icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* Responsive footer */
@media (max-width: 480px) {
  .site-footer .container {
    flex-direction: column;
    align-items: center;
  }
  .footer-nav li {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* =========================  ABOUT PAGE STYLES  ========================= */
.about-page {
  padding: 3rem 1rem;
  background-color: #fafafa;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 3rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #702b31ff;
}

.about-header h1 {
  font-size: 2.5rem;
  color: #702b31ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-subtitle {
  font-size: 1.25rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

.about-intro {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: #f8f4f0;
  border-left: 4px solid #702b31ff;
  border-radius: 4px;
}

.about-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.about-timeline {
  position: relative;
}

.timeline-item {
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background-color: #702b31ff;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #702b31ff;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.5rem;
  bottom: -2.5rem;
  width: 2px;
  background-color: #ddd;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-year {
  font-size: 1.3rem;
  color: #702b31ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 0.75rem;
}

.timeline-item p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
  .about-container {
    padding: 2rem 1.5rem;
  }

  .about-header h1 {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .about-intro p {
    font-size: 1.1rem;
  }

  .timeline-year {
    font-size: 1.2rem;
  }

  .timeline-item p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-page {
    padding: 2rem 0.5rem;
  }

  .about-container {
    padding: 1.5rem 1rem;
  }

  .about-header h1 {
    font-size: 1.75rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .timeline-item {
    padding-left: 1.5rem;
  }
}

/* =========================  CONTACT PAGE STYLES  ========================= */
.contact-page {
  padding: 3rem 1rem;
  background-color: #fafafa;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #702b31ff;
}

.contact-header h1 {
  font-size: 2.5rem;
  color: #702b31ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Contact Info Section */
.contact-info-section {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 2rem;
  color: #702b31ff;
  min-width: 2rem;
  margin-top: 0.25rem;
}

.contact-details h3 {
  font-size: 1.1rem;
  color: #702b31ff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-details p {
  font-size: 1.05rem;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.contact-details a {
  color: #702b31ff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: #551f24;
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-top: 0.25rem;
}

/* Office Hours */
.office-hours {
  background-color: #f8f4f0;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #702b31ff;
}

.office-hours h3 {
  font-size: 1.3rem;
  color: #702b31ff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.hours-table tr {
  border-bottom: 1px solid #ddd;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #333;
}

.hours-table .day {
  font-weight: 600;
  color: #702b31ff;
  width: 120px;
}

.hours-table .time {
  color: #555;
}

.hours-note {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

/* Map Section */
.map-section {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-section h3 {
  font-size: 1.3rem;
  color: #702b31ff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-info-section,
  .map-section {
    padding: 2rem 1.5rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hours-table .day {
    width: 100px;
  }

  .hours-table td {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 2rem 0.5rem;
  }

  .contact-header h1 {
    font-size: 1.75rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-info-section,
  .map-section {
    padding: 1.5rem 1rem;
  }

  .office-hours {
    padding: 1.5rem;
  }

  .hours-table .day {
    width: 80px;
    font-size: 0.9rem;
  }

  .hours-table .time {
    font-size: 0.85rem;
  }

  .map-container iframe {
    height: 350px;
  }
}

/* =========================  SERVICE PAGE STYLES  ========================= */
.service-page {
  padding: 3rem 1rem;
  background-color: #fafafa;
}

.service-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 3rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.service-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #702b31ff;
}

.service-header h1 {
  font-size: 2.5rem;
  color: #702b31ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-subtitle {
  font-size: 1.25rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

.service-intro {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: #f8f4f0;
  border-left: 4px solid #702b31ff;
  border-radius: 4px;
}

.service-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.service-content {
  margin-bottom: 3rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #702b31ff;
  color: #fff;
  border-radius: 50%;
  font-size: 1.75rem;
}

.service-text h3 {
  font-size: 1.3rem;
  color: #702b31ff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.service-text strong {
  color: #702b31ff;
  font-weight: 600;
}

.service-cta {
  text-align: center;
  padding: 2rem;
  background-color: #f8f4f0;
  border-radius: 8px;
  border: 2px solid #702b31ff;
}

.service-cta p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #702b31ff;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
  background-color: #551f24;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
  .service-container {
    padding: 2rem 1.5rem;
  }

  .service-header h1 {
    font-size: 2rem;
  }

  .service-subtitle {
    font-size: 1.1rem;
  }

  .service-intro p {
    font-size: 1rem;
  }

  .service-item {
    flex-direction: column;
    gap: 1rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .service-text h3 {
    font-size: 1.2rem;
  }

  .service-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-page {
    padding: 2rem 0.5rem;
  }

  .service-container {
    padding: 1.5rem 1rem;
  }

  .service-header h1 {
    font-size: 1.75rem;
  }

  .service-subtitle {
    font-size: 1rem;
  }

  .service-item {
    padding: 1rem;
  }

  .service-cta p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

/* =========================  PEOPLE PAGE STYLES  ========================= */
.people-page {
  padding: 3rem 1rem;
  background-color: #fafafa;
}

.people-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 3rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.people-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #702b31ff;
}

.people-header h1 {
  font-size: 2.5rem;
  color: #702b31ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.people-subtitle {
  font-size: 1.25rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

.people-intro {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: #f8f4f0;
  border-left: 4px solid #702b31ff;
  border-radius: 4px;
}

.people-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.team-photo-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #e0e0e0;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.4rem;
  color: #702b31ff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-role {
  font-size: 1rem;
  color: #702b31ff;
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}

.team-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* Responsive adjustments for people page */
@media (max-width: 768px) {
  .people-container {
    padding: 2rem 1.5rem;
  }

  .people-header h1 {
    font-size: 2rem;
  }

  .people-subtitle {
    font-size: 1.1rem;
  }

  .people-intro p {
    font-size: 1rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .people-page {
    padding: 2rem 0.5rem;
  }

  .people-container {
    padding: 1.5rem 1rem;
  }

  .people-header h1 {
    font-size: 1.75rem;
  }

  .people-subtitle {
    font-size: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-info {
    padding: 1.25rem;
  }

  .team-info h3 {
    font-size: 1.25rem;
  }
}

/* =========================  HOMEPAGE STYLES  ========================= */

/* Hero CTA Section */
.hero-cta {
  background: linear-gradient(135deg, #702b31ff 0%, #551f24 100%);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.hero-cta-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.hero-cta-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.hero-btn.primary {
  background-color: #fff;
  color: #702b31ff;
}

.hero-btn.primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-btn.secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Welcome Section */
.welcome-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.welcome-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.welcome-container h2 {
  font-size: 2.5rem;
  color: #702b31ff;
  margin-bottom: 2rem;
  font-weight: 600;
}

.welcome-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

/* Quick Services Section */
.quick-services {
  padding: 4rem 2rem;
  background-color: #fafafa;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 2.5rem;
  color: #702b31ff;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: inherit;
}

.service-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: #702b31ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #702b31ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Why Choose Us Section */
.why-choose {
  padding: 4rem 2rem;
  background-color: #fff;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-container h2 {
  font-size: 2.5rem;
  color: #702b31ff;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background-color: #f8f4f0;
  color: #702b31ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-item h3 {
  font-size: 1.3rem;
  color: #702b31ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Pre-planning CTA Section */
.preplanning-cta {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #702b31ff 0%, #551f24 100%);
  color: #fff;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-container p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #fff;
  color: #702b31ff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
}

.cta-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #702b31ff;
}

/* Contact CTA Section */
.contact-cta {
  padding: 4rem 2rem;
  background-color: #fafafa;
}

.contact-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-container h2 {
  font-size: 2.5rem;
  color: #702b31ff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-cta-text {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 3rem;
}

.contact-info-inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-method i {
  font-size: 2rem;
  color: #702b31ff;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-method strong {
  display: block;
  font-size: 1.1rem;
  color: #702b31ff;
  margin-bottom: 0.5rem;
}

.contact-method p {
  margin: 0;
  font-size: 1rem;
  color: #444;
}

.contact-method a {
  color: #702b31ff;
  text-decoration: none;
}

.contact-method a:hover {
  text-decoration: underline;
}

.cta-btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: #702b31ff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid #702b31ff;
  border-radius: 5px;
  transition: all 0.3s;
}

.cta-btn-outline:hover {
  background-color: #702b31ff;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive adjustments for homepage */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
  }

  .welcome-container h2,
  .services-container h2,
  .why-choose-container h2,
  .contact-cta-container h2 {
    font-size: 2rem;
  }

  .cta-container h2 {
    font-size: 1.9rem;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .welcome-section,
  .quick-services,
  .why-choose,
  .preplanning-cta,
  .contact-cta {
    padding: 3rem 1.5rem;
  }

  .service-card-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

/* =========================  LEGAL PAGE STYLES  ========================= */
.legal-page {
  padding: 3rem 1rem;
  background-color: #fafafa;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 3rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #702b31ff;
}

.legal-header h1 {
  font-size: 2.5rem;
  color: #702b31ff;
  margin-bottom: 0;
  font-weight: 600;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 2rem;
  color: #702b31ff;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
}

.legal-section h2:first-child {
  margin-top: 0;
}

.legal-section h3 {
  font-size: 1.4rem;
  color: #702b31ff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-section h4 {
  font-size: 1.2rem;
  color: #702b31ff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.legal-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}

.legal-section a {
  color: #702b31ff;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-section a:hover {
  color: #551f24;
  text-decoration: underline;
}

.legal-info-block {
  background-color: #f8f4f0;
  padding: 1.5rem;
  border-left: 4px solid #702b31ff;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.legal-info-block p {
  margin-bottom: 0.75rem;
}

.legal-info-block p:last-child {
  margin-bottom: 0;
}

.ai-disclosure {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  font-size: 0.95rem;
  color: #666;
}

.legal-source {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  text-align: center;
}

.legal-source p {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

/* Responsive adjustments for legal page */
@media (max-width: 768px) {
  .legal-container {
    padding: 2rem 1.5rem;
  }

  .legal-header h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.75rem;
  }

  .legal-section h3 {
    font-size: 1.25rem;
  }

  .legal-section h4 {
    font-size: 1.1rem;
  }

  .legal-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding: 2rem 0.5rem;
  }

  .legal-container {
    padding: 1.5rem 1rem;
  }

  .legal-header h1 {
    font-size: 1.75rem;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-section h3 {
    font-size: 1.15rem;
  }

  .legal-info-block {
    padding: 1rem;
  }
}

/* =========================  STICKY NAV RESPONSIVE STYLES  ========================= */
/* Adjust nav logo for smaller screens */
@media (max-width: 768px) {
  .nav-logo {
    max-width: 90px;
    left: 8%;
  }

  .banner-nav .nav {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .banner-nav .nav {
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .dropbtn,
  .banner-nav .nav-link {
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 450px) {
  .nav-logo {
    display: none;
  }

  .banner-nav .nav {
    gap: 0.3rem;
  }

  .dropbtn,
  .banner-nav .nav-link {
    padding: 0.3rem 0.5rem;
    font-size: 0.85rem;
  }
}