body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f2f2f2;
    color: #000;
  }
  
  /* HEADER */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header img {
    height: 50px;
  }
  
  nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    position: relative;
  }
  
  nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007BFF;
    transition: width 0.3s ease;
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  
  .dropbtn {
    cursor: pointer;
    padding: 10px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    background: white;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  
  .dropdown-content a {
    display: block;
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    color: #000;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* CONTACT SECTION */
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 20px;
    background: #f9f9f9;
    gap: 40px;
  }
  
  .form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
  }
  
  .form-container h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
  }
  
  input, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
  }
  
  button {
    margin-top: 20px;
    width: 100%;
    background: #007BFF;
    border: none;
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  button:hover {
    background: #0056b3;
  }
  
  .checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
  }
  
  .checkboxes label {
    font-weight: normal;
  }
  
  /* INFO SECTION */
  .info-container {
    max-width: 400px;
    padding: 20px;
    align-self: center;
  }
  
  .info-container h2 {
    color: #007BFF;
    font-size: 28px;
  }
  
  .info-container p {
    font-size: 1.1em;
    margin-top: 10px;
  }
  
  .info-container a {
    color: #007BFF;
    font-weight: bold;
  }
  
  /* FOOTER */
  footer {
    background: #f0f0f0;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
      padding: 30px 15px;
    }
  
    .form-container, .info-container {
      max-width: 100%;
    }
  }

  .confirmation-message {
    text-align: center;
    padding: 40px 20px;
    background-color: #e6f7ff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.1);
    animation: fadeIn 0.5s ease;
  }
  
  .confirmation-message h3 {
    font-size: 24px;
    color: #007BFF;
    margin-bottom: 10px;
  }
  
  .confirmation-message p {
    font-size: 1.1em;
    color: #333;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  