/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 0 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
  }
  
  .footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer a:hover,
  .footer a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  
  .footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Footer Grid Layout */
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .footer-col {
    margin-bottom: 1.5rem;
  }
  
  /* Footer Headings */
  .footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #e74c3c;
  }
  
  /* Footer Logo Section */
  .footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .footer-logo h3::after {
    display: none;
  }
  
  .footer-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #bdc3c7;
  }
  
  /* Social Media Styles */
  .social-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover,
  .social-links a:focus {
    background-color: #e74c3c;
    text-decoration: none;
    transform: translateY(-3px);
  }
  
  /* Navigation Lists */
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col li {
    margin-bottom: 0.75rem;
  }
  
  .footer-col li a {
    display: inline-block;
    padding: 0.25rem 0;
  }
  
  /* Address Styles */
  .footer-address {
    font-style: normal;
  }
  
  .address-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .address-line i {
    margin-right: 0.75rem;
    color: #e74c3c;
    font-size: 1rem;
    margin-top: 0.2rem;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    border-top: 1px solid #34495e;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }
  
  .copyright {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  
  .legal-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .legal-links a {
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  
  .legal-links a:hover {
    color: #ffffff;
  }
  
  /* Responsive Adjustments */
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom {
      flex-direction: row;
      text-align: left;
    }
    
    .copyright {
      margin-bottom: 0;
    }
  }
  
  @media (max-width: 480px) {
    .footer {
      padding: 3rem 0 0;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .footer-heading {
      margin-bottom: 1rem;
    }
    
    .legal-links ul {
      gap: 1rem;
    }
  }