body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
       background: url('/images/backgroung.jpg')
    }

    .contact-wrapper {
      background: #111;
      color: white;
      max-width: 900px;
      margin: 70px auto;
      padding: 40px 30px;
      border-radius: 15px;
      box-shadow: 0 0 30px rgba(255, 0, 0, 0.25);
    }

    h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 28px;
      color: white;
    }

    .contact-box {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
    }

    .form-section, .info-section {
      flex: 1 1 350px;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      margin-top: 10px;
      border-radius: 8px;
      border: none;
      font-size: 14px;
    }

    textarea {
      resize: vertical;
    }

    .submit-btn {
      background: red;
      color: white;
      border: none;
      padding: 12px;
      margin-top: 15px;
      border-radius: 8px;
      width: 108%;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
    }

    .form-section{
        margin-right: 34px;
    }

    .info-section p {
      margin: 12px 0;
      line-height: 1.5;
    }

    .info-section a {
      color: #00ff75;
      text-decoration: none;
    }

    .map-section {
      margin-top: 30px;
      border-radius: 15px;
      overflow: hidden;
    }

    .map-section iframe {
      width: 100%;
      height: 300px;
      border: none;
    }

    .footer {
      text-align: center;
      color: #aaa;
      margin-top: 30px;
      font-size: 14px;
    }

    @media screen and (max-width: 768px) {
      .contact-box {
        flex-direction: column;
      }
    }