body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #f9f9f9;
      color: #333;
    }
    header {
      background-color: #0057B7;
      color: #FFDD00;
      padding: 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    header img {
      height: 50px;
      width: auto;
    }
    header a {
      color: #FFDD00;
      text-decoration: none;
      font-size: 1rem;
      font-weight: bold;
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .menu-toggle span {
      height: 4px;
      width: 25px;
      background: #FFDD00;
      margin: 4px 0;
      transition: all 0.3s ease;
    }
    nav {
      background-color: #0046a0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    nav a {
      color: #FFDD00;
      padding: 1rem;
      text-decoration: none;
      font-weight: bold;
      display: block;
      transition: background-color 0.3s ease;
    }
    nav a:hover {
      background-color: #003580;
    }
    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        width: 100%;
      }
      nav.active {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }
    }
    .container {
      padding: 2rem;
      max-width: 800px;
      margin: 0 auto;
    }
    .contact-info {
      background-color: #ffffff;
      border: 1px solid #d6e4ff;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      padding: 2rem;
      margin-top: 1rem;
    }
    .contact-info a {
      display: flex;
      align-items: center;
      margin: 1.5rem 0;
      color: #0057B7;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .contact-info a img {
      width: 32px;
      height: 32px;
      margin-right: 15px;
      transition: transform 0.2s ease;
    }
    .contact-info a span {
      display: none;
    }
    .contact-info a:hover {
      color: #003580;
    }
    .contact-info a:hover img {
      transform: scale(1.1);
    }
    .contact-info a[title] {
      position: relative;
    }
    .contact-info a[title]:hover::after {
      content: attr(title);
      position: absolute;
      bottom: 120%;
      left: 0;
      background-color: #333;
      color: #fff;
      padding: 6px 10px;
      border-radius: 5px;
      white-space: nowrap;
      font-size: 0.875rem;
      z-index: 999;
    }
    footer {
      text-align: center;
      padding: 1rem;
      background-color: #0057B7;
      color: #FFDD00;
      margin-top: 3rem;
    }