    :root {
      --width-container: 1280px;
      --breakpoint-md: 768px;
      --breakpoint-lg: 1024px;
    }

    .form-section {
      position: relative;
      width: 100%;
      padding: 0 1rem;
      box-sizing: border-box;
    }

    .contact-form {
      position: relative;
      margin-top: 1.5rem;
      overflow: hidden;
      border-radius: 32px;
      background-color: white;
      width: 100%;
      max-width: var(--width-container);
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .contact-form__background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.08;
      z-index: 10;
    }

    .contact-form__content {
      position: relative;
      z-index: 20;
      padding: 1.5rem;
      text-align: center;
    }

    .contact-form__title {
        font-size: 1.8rem;
    }

    .contact-form__title--highlight {
      font-weight: 600;
      color: #f98500;
    }

    .contact-form__subtitle {
      margin-top: 0.75rem;
      display: block;
      color: #555;
    }

    .contact-form__form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .contact-form__group {
      display: grid;
      width: 100%;
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }

    .contact-form__input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      gap: 1rem;
      width: 100%;
      border: 1px solid #a1a1aa;
      background-color: white;
      border-radius: 0.5rem;
      padding: 1rem 1.25rem;
      transition: border-color 0.2s ease;
    }

    .contact-form__icon {
      flex-shrink: 0;
      font-size: 1.2rem;
      color: #a1a1aa;
      transition: color 0.2s ease;
    }

    .contact-form__field-container {
      position: relative;
      width: 100%;
    }

    .contact-form__input {
      width: 100%;
      outline: none;
      border: none;
      background: transparent;
      position: relative;
      z-index: 2;
      font-size: 1rem;
    }

    .contact-form__label {
      pointer-events: none;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      color: #aeaeae;
      transition: all 0.2s ease;
      z-index: 1;
    }

    .contact-form__required {
      color: red;
      margin-left: 2px;
    }

    .contact-form__input-wrapper.is-active .contact-form__label {
      top: -10px;
      font-size: 0.75rem;
      background-color: white;
      padding: 0 4px;
      color: #f98500;
    }

    .contact-form__input-wrapper.is-active {
      border-color: #f98500;
    }

    .contact-form__input-wrapper.is-active .contact-form__icon {
      color: #f98500;
    }

    .contact-form__submit-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .contact-form__submit-button {
      padding: 0.75rem 2rem;
      border: none;
      background-color: #f98500;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: background-color 0.3s ease, opacity 0.3s ease;
    }

    .contact-form__submit-button:hover {
        background-color: #e07800;
    }

    .contact-form__submit-button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    @media (min-width: 768px) {
      .contact-form__content {
        padding: 2.5rem 4rem 3.5rem;
      }
    }

    @media (min-width: 1024px) {
      .form-section {
        width: 80%;
        max-width: var(--width-container);
        margin-left: auto;
        margin-right: auto;
        height: 500px;
      }

      .form-section__content {
        position: absolute;
        top: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 0 1rem;
      }

      .contact-form {
        margin-left: auto;
        margin-right: auto;
        min-height: 495px;
      }

      .contact-form__form {
        gap: 2.5rem;
        padding: 3.5rem 8rem 0;
      }

      .contact-form__group {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      .contact-form__input-wrapper {
        padding: 1.25rem 1.5rem;
      }
    }