.contact-container {
      background-color: #ffffff;
      border-radius: 16px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      width: 90%;
      max-width: 50%;
      padding: 30px;
      margin-left: 25%;
      margin-top: 100px;
    }

    .contact-container h2 {
      text-align: center;
      color: #d47a7a;
      margin-bottom: 20px;
      font-weight: 600;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    label {
      font-size: 14px;
      color: #444;
    }

    input, textarea {
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 15px;
      width: 100%;
      transition: border-color 0.3s;
      font-family: 'Poppins', sans-serif;
      resize: none;
    }

    input:focus, textarea:focus {
      border-color: #d47a7a;
      outline: none;
    }

    button {
      background-color: #d47a7a;
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #c06666;
    }

    .form-footer {
      text-align: center;
      font-size: 13px;
      color: #777;
      margin-top: 10px;
    }

    /* Responsive */
    @media (max-width: 480px) {
      .contact-container {
        padding: 20px;
      }

      h2 {
        font-size: 22px;
      }
    }

    