  body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    background-color: #f6f6f6;
  }

  footer {
    background-color: #08121e;
    color: #ffffff;
    padding: 60px 20px;
  }

  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 35px;
  }

  .footer-section h3 {
    color: #f5c542; /* Gold */
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .footer-section p,
  .footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: 0.3s;
  }

  .footer-section a:hover {
    color: #f5c542;
  }

  .social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
  }

  .social-links a:hover {
    color: #f5c542;
    transform: scale(1.05);
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #1b2b44;
    padding-top: 18px;
    font-size: 13px;
    color: #aaaaaa;
  }

  @media (max-width: 600px) {
    footer {
      text-align: center;
    }
  }


  