/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Navbar Styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #003685;
    padding: 10px 20px;
    color: #fff;
  }
  
  .nav-left .logo {
    height: 40px;
  }
  
  .nav-right .lang-toggle {
    background: #fff;
    color: #003685;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
  }
  
  .nav-right .lang-toggle:hover {
    background: #e0e0e0;
  }
  
  /* Centering the Main Section */
  .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }
  
  .container h1 {
    font-size: 2.5em;
    margin-bottom: 20px; /* Restored default spacing */
    color: #003685;
  }
  
  .container p {
    margin-bottom: 20px; /* Restored default spacing */
  }
  
  .container .links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* Restored link spacing */
  }
  
  .container .links li {
    display: inline-block;
  }
  
  .container .links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background: #003685;
    padding: 10px 20px; /* Restored button padding */
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .container .links a:hover {
    background: #00255c;
    transform: translateY(-2px);
  }
  
  /* Contact Us Section Styles */
  .contact-us {
    margin-top: 40px;
    padding: 20px;
    background: #e8f0ff;
    border: 1px solid #003685;
    border-radius: 8px;
    text-align: center;
  }
  
  .contact-us h2 {
    font-size: 1.8em;
    color: #003685;
    margin-bottom: 10px;
  }
  
  .contact-us p {
    margin-bottom: 10px; /* Restored default spacing */
    font-size: 1.1em;
    color: #333;
  }
  
  .contact-us a {
    color: #003685;
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-us a:hover {
    text-decoration: underline;
  }
  
  /* Footer Styles */
  footer {
    background: #333;
    color: #fff;
    padding: 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-left {
    font-size: 14px;
  }
  
  .footer-right {
    display: flex;
    gap: 10px;
  }
  
  .footer-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-right a:hover {
    text-decoration: underline;
  }
  
  .footer-right span {
    color: #fff;
  }
  