/* Container */
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      background: #1d1d1d;
      border-radius: 10px;
      overflow: hidden;
      width: 100%;
      max-width: 1100px;
      margin: 80px auto;
    }

    /* Left Side */
    .contact-left {
      background: #000;
      flex: 1 1 300px;
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .contact-left img {
      width: 100%;
      margin-bottom: 20px;
    }

    .contact-left p {
      margin: 10px 0;
      font-size: 15px;
    }

    .contact-social {
      margin-top: 20px;
    }

    .contact-social a {
      color: #fff;
      margin: 0 10px;
      font-size: 18px;
      transition: 0.3s;
    }

    .contact-social a:hover {
      color: #ff3c78;
    }

    /* Right Side */
    .contact-right {
      flex: 2 1 500px;
      padding: 40px;
    }

    .contact-right h2 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .contact-right p {
      font-size: 14px;
      margin-bottom: 30px;
      color: #bbb;
    }

    form {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    input,
    textarea {
      width: 100%;
      padding: 12px;
      border: none;
      border-bottom: 1px solid #444;
      background: transparent;
      color: #fff;
      font-size: 15px;
    }

    textarea {
      grid-column: 1 / -1;
      resize: none;
      height: 120px;
    }

    .button-container {
      grid-column: 1 / -1;
      display: flex;
      justify-content: flex-start;
      margin-top: 10px;
    }

    button {
      padding: 10px 20px;
      background: #ff3c3c;
      color: #fff;
      font-size: 14px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    button:hover {
      background: #e63232;
    }

    @media(max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }

      .button-container {
        justify-content: center;
      }
    }