 body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
    }

    .container-y {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      background: #fff;
      
    }

    .contact-wrapper {
      display: flex;
      gap: 30px;
    }

    .contact-form, .contact-info {
      flex: 1;
    }

    .contact-info h4 {
      margin-bottom: 15px;
      color: #007bff;
    }

    .contact-info p {
      margin: 10px 0;
      color: #555;
    }

    iframe {
      width: 100%;
      height: 250px;
      border: 0;
      border-radius: 8px;
      margin-top: 20px;
    }

    form {
      display: flex;
      flex-direction: column;
    }

    label {
      margin-bottom: 8px;
      font-weight: bold;
      color: #555;
    }

    input[type="text"], input[type="email"], textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
    }

    textarea {
      resize: vertical;
      height: 150px;
    }

    small {
      display: block;
      margin-bottom: 20px;
      color: #888;
      font-size: 12px;
    }

    button {
      padding: 10px 20px;
      background-color: #007bff;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
    }

    button:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      .contact-wrapper {
        flex-direction: column;
      }
    }

    a {
      color: #007bff;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }