body {
      font-family: 'Poppins', sans-serif;
      background-color: #f7f7f7;
      margin: 0;
      padding: 0;
      color: #333;
    }

    .contact-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      background-color: #ffffff;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      max-width: 1200px;
      margin: 50px auto;
    }

    .contact-image {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      margin-right: 30px;
    }

    .contact-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .contact-description {
      margin-top: 20px;
      font-size: 16px;
      color: #555;
    }

    .contact-form {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      background-color: #fafafa;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .contact-form h2 {
      margin-bottom: 20px;
      font-size: 28px;
      color: #000000;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: 600;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background: #fff;
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #e74c3c;
      outline: none;
    }

    .form-group textarea {
      resize: none;
      height: 120px;
    }

    .submit-btn {
      display: inline-block;
      background: linear-gradient(135deg, #613ce7, #613199);
      color: #fff;
      padding: 12px 30px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      background: linear-gradient(135deg, #ff6b6b, #e74c3c);
      transform: scale(1.05);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .success-message {
      color: green;
      margin-top: 15px;
      font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .contact-section {
        flex-direction: column;
      }

      .contact-image, .contact-form {
        margin-right: 0;
        max-width: 90%;
      }

      .contact-description {
        text-align: center;
      }
    }