    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 6rem 24px;
    }

    .text-center {
      text-align: center;
    }

    .small-text {
      font-size: 10px;
      color: #7B7B7B;
      margin-bottom: 8px;
    }

    h1 {
      font-size: 32px;
      font-weight: 600;
      line-height: 40px;
      margin-bottom: 12px;
    }

    .description {
      font-size: 13px;
      color: #4B4B4B;
      max-width: 520px;
      margin: 0 auto 32px;
    }

    form {
      display: flex;
      max-width: 520px;
      margin: 0 auto;
      flex-direction: column;
      gap: 20px;
    }

    .form-row {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    @media (min-width: 640px) {
      .form-row {
        flex-direction: row;
      }
    }

    input, select, textarea {
      width: 100%;
      font-size: 12px;
      color: #4B4B4B;
      padding: 8px 12px;
      border: 1px solid #D9D9D9;
      border-radius: 4px;
      outline: none;
    }

    input::placeholder,
    textarea::placeholder {
      color: #4B4B4B;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: #0066FF;
      box-shadow: 0 0 0 1px #0066FF;
    }

    textarea {
      width: 100%;
      resize: none;
    }

    .phone-box {
      display: flex;
      align-items: center;
      border: 1px solid #D9D9D9;
      border-radius: 4px;
      padding: 4px 8px;
      width: 120px;
    }

    .phone-box img {
      width: 16px;
      height: 12px;
      object-fit: contain;
      margin-right: 8px;
    }

    .submit-btn {
      background-color: #0066FF;
      color: #ffffff;
      font-size: 12px;
      font-weight: 600;
      padding: 8px 24px;
      border-radius: 9999px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
      background-color: #0051cc;
    }

    .footer-text {
      font-size: 8px;
      color: #7B7B7B;
      margin-top: 8px;
    }

    .footer-text a {
      color: #0066FF;
      text-decoration: underline;
    }

    .bottom-section {
      max-width: 900px;
      margin: 80px auto 0;
    }

    .subtitle {
      font-size: 9px;
      color: #7B7B7B;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 32px;
    }

    .contact-box {
      display: flex;
      flex-direction: column;
      border-radius: 24px;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .contact-box {
        flex-direction: row;
      }
      .contact-box img {
      width: 50% !important;
    }
    .contact-details {
      width: 100%;
    }
    }

    .contact-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .contact-details {
      background-color: #F9F6F0;
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 30px;
    }

    .contact-details p {
      margin: 0;
    }

    .label {
      font-size: 10px;
      color: #7B7B7B;
      margin-bottom: 4px;
    }

    .info {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
    }

    .socials {
      display: flex;
      gap: 16px;
      font-size: 18px;
      color: #7B7B7B;
    }

    .socials a:hover {
      color: #0066FF;
    }

    .illustration {
      display: none;
    }

    @media (min-width: 768px) {
      .illustration {
        display: block;
        position: absolute;
        top: 160px;
        width: 120px;
        height: 120px;
      }

      .illustration.left {
        left: 24px;
      }

      .illustration.right {
        right: 24px;
      }
    }