
 
    .contact-form {
      background: #fff8ec;
      padding: 2rem 2.5rem;
      border-radius: 12px;
      box-shadow: 0 0 12px rgba(0,0,0,0.05);
      max-width: 500px;
      width: 100%;
      margin: 0 auto;
      font-family: 'Segoe UI', sans-serif;
      color: #333;
    }

    .contact-form h2 {
      color: #da8b41;
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    label {
      display: block;
      margin-bottom: 0.4rem;
      font-weight: 600;
    }

    input,
    textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ddd0bc;
      border-radius: 8px;
      font-size: 1rem;
      background: #fffdf9;
    }

    textarea {
      resize: vertical;
      min-height: 120px;
    }

    button {
      background-color: #f4a261;
      color: white;
      border: none;
      padding: 0.9rem 1.5rem;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
      width: 100%;
      margin-top: 1rem;
    }

    button:hover {
      background-color: #e07b39;
    }

    @media (max-width: 500px) {
      .contact-form {
        padding: 1.5rem;
      }
    }
 
