/* Contact page specific styles */
.contact-links {
    margin: 0;
    padding: 0;
    position: relative;
    /* left: 397px; */
     /* Align with navigation menu */
    margin-top: 80px; /* Match the spacing shown in the image */
    /* left: auto; */
    /* right: 397px; */
    margin: 10px auto;
    /* width: 50%; */
    /* border: 10px solid black; */
  }
  
  .contact-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-links li {
    margin-bottom: 5px; /* Match the spacing between nav items */
  }
  
  .contact-links a {
    font-family: "American Typewriter", "Courier New", Courier, monospace;
    font-size: 1rem;
    color: #000;
    text-decoration: underline;
    font-weight: normal;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: red;
  }
  .contact-links a:hover {
    text-decoration: none;
    color: red;
  }
  
  /* Override any necessary styles from the main stylesheet */
  .header-container {
    margin-bottom: 0; /* Reset margin to match image */
  }
  
  /* Custom footer styles for contact page */
  .contact-footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 20px;
  }
  
  .contact-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .contact-copyright {
    font-family: "American Typewriter", "Courier New", Courier, monospace;
    font-weight: normal;
  }
  
  .contact-chat-button {
    font-family: "American Typewriter", "Courier New", Courier, monospace;
    font-weight: bold;
    cursor: pointer;
  }
  
  /* Ensure main content doesn't overlap with fixed footer */

  .four{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .contact-links {
      left: 33%; /* Percentage-based positioning for smaller screens */
    }
  
    .contact-footer-container {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .contact-links {
      left: 20px; /* Reposition for mobile */
      margin-top: 40px;
    }
  
    .header-container {
      flex-direction: column;
    }
  
    .logo,
    .main-nav,
    .contact {
      margin-bottom: 20px;
    }
  
    .contact-footer {
      position: relative;
      margin-top: 100px;
    }
  
    body {
      padding-bottom: 20px;
    }
  }
  
    /* Footer styles */
    .footer-container {
        display: flex;
        justify-content: space-between;
        margin-top: 100px;
        padding-top: 20px;
        border-top: 1px solid #eee;
      }
      
      .copyright {
        font-weight: normal; /* Regular weight for copyright */
      }
      
      .chat-button {
        font-weight: bold; /* Bold for chat button */
        cursor: pointer;
      }
      .contact-a{
        text-decoration: underline;
        text-decoration-color: red;
      }