* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
  }
  body {
    font-family: "Nunito", sans-serif;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("maxresdefault2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #5A3A1C;
    animation: fadeIn 2s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #5A3A1C;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 1s ease;
  }
  @keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
  }
  .logo {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 30px;
    color: #E2B007;
    text-transform: uppercase;
  }
  nav ul {
    display: flex;
    gap: 30px;
  }
  nav a {
    color: #E2B007;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0;
    background: white;
    transition: width 0.4s ease;
  }
  nav a:hover::after {
    width: 100%;
  }
  nav a:hover {
    color: white;
  }
  .cta-button {
    padding: 12px 24px;
    background: #E2B007;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .container {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
  }

  h1 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    color: #E2B007;
    text-align: center;
    margin-bottom: 30px;
  }

  form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  label {
    display: block;
    margin-top: 20px;
    color: #E2B007;
    font-weight: bold;
  }

  input, textarea, select {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f9f9f9;
  }

  button {
    margin-top: 30px;
    padding: 12px 24px;
    font-weight: bold;
    background: #E2B007;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  button:hover {
    background-color: white;
    color: #E2B007;
  }
  footer {
    background-color: #5A3A1C;
    padding: 40px 20px;
    color: #E2B007;
    animation: fadeIn 2s ease;
  }
  .footer_options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  footer h4 {
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
  }
  footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 40px;
    background-color: #E2B007;
  }
  .ul_1 li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .social_icons i {
    margin-right: 15px;
    color: #E2B007;
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  .social_icons i:hover {
    transform: scale(1.2);
  }
  .copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
  }
  @media (max-width: 768px) {
    nav ul {
      display: none;
      flex-direction: column;
      background-color: #5A3A1C;
      position: absolute;
      right: 40px;
      top: 70px;
      padding: 10px 20px;
      border-radius: 8px;
    }
    .nav-toggle {
      display: block;
      color: #E2B007;
      font-size: 24px;
      cursor: pointer;
    }
  }