/* Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f6f9;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header .logo img {
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header .menu-container .login-button{
  background-color: #fff;
  color: #253588;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #253588, #253588);
  color: white;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}

.header.scrolled {
  background: linear-gradient(135deg, #253588, #253588);
  /* Set the background to original gradient */
  padding: 0.5rem 1rem;
  /* Slightly smaller padding */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  /* Slightly stronger shadow */
}

.header .logo {
  display: flex;
  align-items: center;
  width: auto;
  /* Changed from fixed width */
  height: 60px;
  /* Original desktop height */
}

.header .logo svg {
  display: block;
  height: 140%;
  /* Original desktop size */
  width: auto;
}

.header .menu-container {
  display: flex;
  gap: 0.8rem;
}

.header .menu-item {
  background: rgba(255, 255, 255, 0);
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.header .menu-item:hover {
  background: white;
  color: #253588;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.menu-item .login-button{
  background-color: #f6f8f6; /* A green color, adjust as desired */
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #253588, #253588);
  padding: 4rem 1.5rem;
  text-align: center;
  margin-top: 3rem;
  color: white;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #00c6a7, #00d4b2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 198, 167, 0.3);
  font-size: 0.9rem;
}

.hero .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 198, 167, 0.4);
}

/* Category Section */
.container {
  width: min(90%, 1200px);
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.088);
  text-align: center;
}

.container h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #253588;
  margin-bottom: 1rem;
}

.categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.category {
  width: 220px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
    color 0.3s ease;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 5.3px rgba(0, 0, 0, 0.16);
}

.category i {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
  color: #253588;
}

.category:hover,
.category.active {
  background: #253588;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.category:hover i,
.category.active i {
  color: white;
}

/* Review Section */
.review-section {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.75rem;
  flex-wrap: wrap;
}

.review-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 5.3px rgba(0, 0, 0, 0.16);
  min-width: 180px;
}

.review-card i {
  font-size: 1.5rem;
  margin-right: 0.4rem;
  color: #253588;
}

.review-card .review-content {
  font-size: 1rem;
  font-weight: 600;
  color: #253588;
  line-height: 1.4;
}

/* Why Choose Section */
.why-choose {
  margin: 3rem auto;
  text-align: center;
  background: linear-gradient(135deg, #253588, #253588);
  padding: 3rem 1.5rem;
  border-radius: 20px;
  color: white;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(45deg);
}

.why-choose h3 {
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
  position: relative;
  display: inline-block;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.why-choose h3::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.why-choose > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose .categories {
  margin-top: 1.5rem;
  gap: 1.2rem;
  display: flex;
  /* Ensure proper layout */
  flex-wrap: wrap;
  /* Allow wrapping on smaller screens */
  justify-content: center;
  /* Center items horizontally */
}

.why-choose .category {
  width: 220px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  /* Ensure proper layout */
  flex-direction: column;
  /* Stack items vertically */
  align-items: center;
  /* Center items horizontally */
  justify-content: center;
  /* Center items vertically */
  text-align: center;
  /* Center text */
}

.why-choose .category::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.8s;
}

.why-choose .category:hover::before {
  left: 100%;
}

.why-choose .category i {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  background: linear-gradient(45deg, #fff, #c3daff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.why-choose .category:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 40, 100, 0.3);
}

.why-choose .category span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.6rem;
  font-weight: normal;
  line-height: 1.4;
  padding: 0 15px;
}

/* Process Section */
.process-section {
  padding: 3rem 0;
  background: #fff;
  margin: 3rem auto;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
  text-align: center;
}

.process-section h3 {
  font-size: 1.8rem;
  color: #253588;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.process-subtitle {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.process-step {
  position: relative;
  padding: 1.2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  z-index: 1;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-7px);
}

.step-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 0.75rem;
}

.step-icon i {
  font-size: 1.8rem;
  color: #253588;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.step-number {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  background: #253588;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
}

.process-step h4 {
  color: #253588;
  margin: 0.6rem 0 0.4rem;
  font-size: 1rem;
  font-weight: 500;
}

.process-step p {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.5;
}

.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  width: 80%;
  height: 2px;
  background: #ddd;
  transform: translateX(-50%);
  z-index: 0;
}

/* Insurance Partners */
.insurance-partners {
  padding: 2rem 0;
  background: #fff;
  margin: 3rem auto;
}

.insurance-partners h3 {
  font-size: 1.8rem;
  color: #1a4a8d;
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-align: center;
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.partners-container img {
  width: 80px;
  height: auto;
  object-fit: contain;
  border: 1px solid #eee;
  padding: 0.3rem;
  border-radius: 5px;
  background-color: #fff;
}

/* Footer */
footer {
  background-color: #f4f6f9;
  padding: 1.5rem;
  text-align: center;
  color: #777;
  font-size: 11px;
  border-top: 1px solid #ddd;
}

footer a {
  color: #777;
}

/* About Page Specific Styles */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.about-section {
  margin-bottom: 3rem;
  text-align: center;
}

.about-section h2 {
  color: #1a4a8d;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-image {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  margin: 1rem auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.mission-card,
.vision-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.mission-card i,
.vision-card i {
  font-size: 2.5rem;
  color: #3563a9;
  margin-bottom: 1rem;
}

.core-values {
  margin: 4rem 0;
}

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

.value-item {
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item i {
  font-size: 2rem;
  color: #3563a9;
  margin-bottom: 1rem;
}

.achievements {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.achievement-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  min-width: 200px;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Legal Disclosure Page Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.disclosure-section {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.document-item {
  margin: 2rem 0;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  transition: transform 0.3s ease;
}

.document-item:hover {
  transform: translateX(10px);
}

.document-link {
  display: flex;
  align-items: center;
  color: #1a4a8d;
  text-decoration: none;
}

.document-link i {
  font-size: 2.5rem;
  margin-right: 1.5rem;
  color: #e63946;
}

.document-link h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.legal-disclosure-title {
  color: #1a4a8d;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #253588, #253588);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Restore two columns */
  gap: 3rem;
  margin: 2rem 0;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-info {
  background: #f9fbfd;
  padding: 2rem;
  border-radius: 10px;
  /*height: fit-content;  Removed height: fit-content */
}

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

.info-item {
text-align: center;
padding: 1.5rem;
background: #fff;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease; /* Add transition for smooth hover effect */
}

.info-item:hover {
transform: translateY(-5px); /* Add a slight lift effect on hover */
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 5px;
font-family: "Poppins", sans-serif;
font-size: 1rem;
}

.form-group textarea {
resize: vertical;
}

.cta-button {
  background: linear-gradient(135deg, #00c6a7, #00d4b2);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.map-section {
  margin-top: 3rem;
  border-radius: 10px;
  overflow: hidden;
}

/* Hamburger Menu Styles */
.hamburger {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  display: none; /* Initially hidden on larger screens */
}

/* Media Queries */
@media (max-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 0.6rem;
  }

  .header.scrolled {
      background: linear-gradient(135deg, #3563a9, #0056b3);
      padding: 0.5rem;
  }

  .header .logo {
    display: flex;
    align-items: center;
    width: 150px; /* Mobile width */
    height: 50px; /* Mobile height */
    justify-content: flex-start;
    text-align: left;
    flex-shrink: 0;
  }

  .header .logo img {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .header .menu-container {
    display: none; /* Hide the menu by default */
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #3563a9, #0056b3);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .header .menu-container.active {
    display: flex; /* Show the menu when active */
  }

  .header .menu-item {
    margin: 0.5rem 0;
    display: block;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 3rem 0.75rem;
  }

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

  .container {
    padding: 1.5rem;
  }

  .categories {
    gap: 0.75rem;
  }

  .why-choose {
    padding: 2.5rem 0.75rem;
  }

  .why-choose .categories {
    flex-direction: column;
    align-items: center;
  }

  .why-choose .category {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .why-choose .category span {
    padding: 0;
  }

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

  .steps-wrapper::before {
    display: none;
  }

  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    width: 2px;
    height: 1rem;
    background: #ddd;
    transform: translateX(-50%);
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

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

  .achievement-card {
    min-width: 150px;
    padding: 1.5rem;
  }

  .document-link {
    flex-direction: column;
    text-align: center;
  }

  .document-link i {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .contact-form,
  .contact-info {
      width: 100%;
      padding: 1.5rem;
  }

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

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    padding: 1rem;
  }
}
/* Style for the product dropdown */
.product-dropdown {
  position: relative;
  display: inline-block;
}

.product-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 8px 12px;
  z-index: 1;
  border-radius: 5px;
  right: 0; /* Aligns the dropdown to the right */
}

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

.product-dropdown-content a {
  color: black;
  padding: 6px 8px;
  text-decoration: none;
  display: block;
  border-radius: 3px;
  transition: background-color 0.3s;
}

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

/* Keep the existing hover effect */
.menu-item:hover {
  background: white;
  color: #0056b3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Styles for taxi_insurance.html */

:root {
  --primary: #0066CC;
  --secondary: #00C6A7;
  --dark: #2D3436;
  --light: #F8F9FA;
  --gradient: linear-gradient(135deg, #0066CC 0%, #00C6A7 100%);
}

.taxi-insurance-content {
  padding: 40px 20px;
  background: var(--light);
}

/* Modern Card Design */
.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 32px;
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card h2 i {
  color: var(--secondary);
  font-size: 1.4em;
}

/* Grid Layout */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
}

/* Hero Section */
.hero-section {
  background: var(--gradient);
  color: white;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.price-tag {
  background: rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-block;
  margin: 20px 0;
  font-weight: 600;
}

/* Benefits List */
.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.card li:last-child {
  border-bottom: none;
}

.card li i {
  color: var(--secondary);
  margin-top: 4px;
}

/* CTA Buttons */
.cta-button {
  background: var(--secondary);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid transparent;
}

.cta-button:hover {
  background: white;
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* Offer Section */
.offer-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.offer-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

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

.offer-card {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.offer-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 2rem;
  }
  
  .card {
      padding: 24px;
  }
  
  .offer-section {
      padding: 24px;
  }
}

/* Footer Enhancements */
footer {
   background: #091a38;
    padding: 20px 0;  /* Padding top and bottom */
    color: #dee2e6; /* Dark gray text */
    font-size: 0.9em; /* Slightly smaller font size */
    border-top: 1px solid #dee2e6; /* Add a subtle border at the top */
}

.footer-container {
    max-width: 1200px; /* Match your main content width */
    margin: 0 auto;  /* Center the footer content */
    padding: 0 20px; /* Add some padding on the sides */
}

.footer-links {
    text-align: center; /* Center the links */
    margin-bottom: 15px;
}

.footer-links a {
    color: #cad3db; /* Blue color for links */
    text-decoration: none;
    margin: 0 10px; /* Spacing between links */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.footer-links a:hover {
    color: #0056b3; /* Darker blue on hover */
}

.footer-address,
.footer-license,
.footer-copyright,
.footer-legal {
    text-align: center;
    margin-bottom: 10px; /* Add spacing between sections */
}

.footer-legal a {
  color: #007bff; /* Blue color for links */
  text-decoration: none;
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

.footer-legal a:hover {
    color: #0056b3; /* Darker blue on hover */
}

/* Responsive Design (adjust breakpoints as needed) */
@media (max-width: 768px) {
    .footer-links {
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-links a {
        display: block;  /* Stack links on top of each other */
        margin: 5px 0;  /* Add spacing between stacked links */
    }

    .footer-address,
    .footer-license,
    .footer-copyright {
        text-align: center;  /* Center text on smaller screens */
    }
}