
      /* Footer Styles */
      .site-footer {
        background: #1e3a8a;
        color: white;
        padding: 40px 0 20px;
        margin-top: 60px;
      }
      
      .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto 30px;
        padding: 0 20px;
        gap: 100px;
      }
      
      .footer-address h4, 
      .footer-links h4 {
        color: #fff;
        margin-bottom: 20px;
        font-size: 1.2rem;
      }
      
      .footer-address p {
        margin-bottom: 15px;
        line-height: 1.6;
      }
      
      .footer-address strong {
        color: #60a5fa;
      }
      
      .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .footer-links li {
        margin-bottom: 10px;
      }
      
      .footer-links a {
        color: #e2e8f0;
        text-decoration: none;
        transition: color 0.3s ease;
      }
      
      .footer-links a:hover {
        color: #60a5fa;
        text-decoration: underline;
      }
      
      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
      
      .footer-bottom p {
        margin: 15px 0 0;
        color: #a5b4fc;
        font-size: 0.9rem;
      }
      
      @media (max-width: 768px) {
        .footer-content {
          flex-direction: column;
          gap: 30px;
        }
        
        .footer-address, 
        .footer-links {
          width: 100%;
        }
      }
    