
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f5f2ec;
      color: #2f3e4f;
    }

    .cta-section {
      width: 100%;
      padding: 100px 20px;
      background: linear-gradient(135deg, #2f3e4f 0%, #1f2a36 100%);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      top: -120px;
      right: -120px;
      width: 320px;
      height: 320px;
      background: rgba(255,255,255,0.04);
      border-radius: 50%;
    }

    .cta-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .cta-content h2 {
      font-size: 52px;
      line-height: 1.15;
      color: #ffffff;
      margin-bottom: 24px;
      font-weight: 700;
    }

    .cta-content p {
      color: rgba(255,255,255,0.78);
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 36px;
      max-width: 520px;
    }

    .cta-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .cta-tag {
      padding: 12px 20px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 999px;
      color: #fff;
      font-size: 14px;
      transition: 0.3s ease;
    }

    .cta-tag:hover {
      background: #c6a87a;
      transform: translateY(-2px);
    }

    .cta-form {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(10px);
      border-radius: 24px;
      padding: 40px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .form-title {
      color: #fff;
      font-size: 28px;
      margin-bottom: 28px;
      font-weight: 600;
    }

    .input-group {
      margin-bottom: 18px;
    }

    .input-group input,
    .input-group textarea {
      width: 100%;
      padding: 16px 18px;
      border: none;
      border-radius: 12px;
      font-size: 15px;
      outline: none;
      background: rgba(255,255,255,0.95);
      color: #2f3e4f;
    }

    .input-group textarea {
      resize: none;
      min-height: 120px;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      border: none;
      border-radius: 12px;
      background: #c6a87a;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .submit-btn:hover {
      background: #d7ba8d;
      transform: translateY(-2px);
    }

    .success-message {
      display: none;
      margin-top: 20px;
      color: #d4f5d0;
      font-size: 14px;
    }

    @media (max-width: 992px) {
      .cta-container {
        grid-template-columns: 1fr;
      }

      .cta-content h2 {
        font-size: 40px;
      }

      .cta-form {
        padding: 30px;
      }
    }

    @media (max-width: 576px) {
      .cta-section {
        padding: 70px 18px;
      }

      .cta-content h2 {
        font-size: 32px;
      }

      .cta-content p {
        font-size: 15px;
      }

      .cta-form {
        padding: 24px;
      }
    }
  