html, body {
  margin: 0;
  padding: 0;
  background: #d3dce5;
  color: #333;
}

body {
  max-width: 767px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

  header {
    background-color: #2b2d42;
    color: white;
    padding: .75rem;
    position: relative;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: 50px;
    height: auto;
    border-radius: 8px;
  }

  .site-text h1 {
    margin: 0;
    font-size: 1.75rem;
  }

  .MENU-toggle {
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    color: white;
  }

  .dropdown-MENU {
    display: none;
    background-color: #3a3d5c;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .subMENU-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 10px;
  }

  .subMENU-row a {
    flex: 1 1 40%;
    margin: 5px;
    background: #4f5480;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 10px 0;
    border-radius: 6px;
    transition: background 0.3s;
    font-weight: bold;
  }

  .subMENU-row a:hover {
    background: #6c72a5;
  }

  .container {
    padding: 1rem;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }

  .container h2, H3 {
    color: #0d3c61;
  }

  footer {
    text-align: center;
    padding: .75rem;
    background: #2b2d42;
    color: white;
    font-weight: bold;
  }
  
  .contact-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-container h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .contact-container p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
  }
  
  .contact-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }
  
  .contact-container input[type="text"],
  .contact-container input[type="email"],
  .contact-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
  }
  
  .contact-container button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
  }
  
  .contact-container button:hover {
    background-color: #45a049;
  }


  #breadcrumb {
    font-size: 15px;
    margin: 10px 0;
  }
  #breadcrumb a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-family: "Segoe UI", sans-serif;
  }
  #breadcrumb a:hover {
    text-decoration: underline;
    color: green;
  }

  #breadcrumb::before {
    content: "•";
    color: rgb(255, 0, 0);
    margin-right: 5px;
  }

  @media (max-width: 500px) {
  
    .logo {
      width: 50px;
      height: auto;
      border-radius: 8px;
    }
  
    .site-text h1 {
      margin: 0;
      font-size: 1.25rem;
    }
  
    .MENU-toggle {
      font-size: 1.25rem;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      color: white;
    }
  }

  
  