 footer {
      padding: 40px 20px;
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #0b2953;
      color: white;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-column {
      flex: 1;
      min-width: 250px;
    }

    .footer-column h3,
    .footer-column h4 {
      color: #faca15;
      margin-bottom: 15px;
    }

    .footer-column p,
    .footer-column a,
    .footer-column li {
      color: white;
      line-height: 1.6;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: #faca15;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 40px auto 0;
      border-top: 1px solid #2f4e79;
      padding-top: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: #cccccc;
    }

    .footer-bottom p {
      margin: 5px 0;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      color: #cccccc;
      font-size: 18px;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #faca15;
    }
.address-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.address-link:hover {
  color: #FEBE10;
}
    /* Simple icon replacements using Unicode characters or labels */
    .icon-facebook::before { content: "📘"; }
    .icon-twitter::before { content: "🐦"; }
    .icon-linkedin::before { content: "🔗"; }
    .icon-instagram::before { content: "📸"; }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
      }
    }

    .social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a svg {
  color: #cccccc;
  transition: color 0.3s ease;
}

.social-icons a:hover svg {
  color: #faca15;
}

.design{
    color: #faca15;
    cursor: pointer;

}
.design a:hover{
    color: #fff;            /* Color on hover */
  text-decoration: none;
}