/* Footer Section */
.footer-section {
    background-color: #0d0d0d;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-logo h2 {
    font-size: 1.8em;
    color: #00ffff;
  }
  
  .footer-logo p {
    font-size: 1em;
    margin-top: 10px;
    color: #aaa;
  }
  
  .footer-links {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-links h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #00ffff;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: #00ffff;
  }
  
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-contact h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #00ffff;
  }
  
  .footer-contact p {
    font-size: 1em;
    margin-bottom: 10px;
  }
  
  .footer-contact a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-contact a:hover {
    color: #00ffff;
  }
  
  .footer-social {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-social h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #00ffff;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icon {
    color: #aaa;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: #00ffff;
  }
  
  /* Footer Bottom Section */
  .footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
  }
  
  .footer-bottom p {
    color: #aaa;
  }
  