  /* Footer Section */
  footer {
    background-color: #10284D;
    color: var(--light);
    padding: 80px 50px 40px;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }
  .footer-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
  }
  .footer-social {
    display: flex;
    gap: 15px;
  }
  .footer-social a {
    color: rgb(231, 228, 228);
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  .footer-social a:hover {
    color: black;
    background: #fdd500;
    transform: translateY(-5px);
  }
  .footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: whitesmoke;
  }
  .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #fdd500;
  }
  .footer-links {
    list-style: none;
  }
  .footer-links li {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
  }
  .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
  }
  .footer-links a:hover {
    color: var(--light);
    padding-left: 5px;
  }
  .copyright {
    text-align: center;
    padding-top: 50px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
  }

