/* Special Form Popup — Lexnova (adapted from legacy Sulax styles) */

/* Lexnova — siyah / beyaz palet */
:root {
  --sf-body-color: #0f0f12;
  --sf-body-soft: #1a1a22;
  --sf-lynch-800: #2a2a35;
  --sf-lynch-600: #4a4a58;
  --sf-lynch-500: #8a8a9a;
  --sf-lynch-400: #b0b0bc;
  --sf-primary: #ffffff;
  --sf-primary-dark: #e0e0e0;
  --sf-button-bg: #ffffff;
  --sf-button-hover: #e5e5e5;
  --sf-button-text: #0f0f12;
  --sf-z-overlay: 1000;
  --sf-z-trigger: 88;
}

body.special-form-open {
  overflow: hidden;
}

/* Override global grayscale for form assets */
.special-form-trigger,
.special-form-modal img,
.special-form-image-wrapper img {
  filter: none !important;
  -webkit-filter: none !important;
}

/* ── Trigger Button — SOL ALT, sadece metin ── */
.special-form-trigger {
  position: fixed;
  left: clamp(16px, 3.125vw, 50px);
  bottom: clamp(52px, 4vw, 80px);
  z-index: var(--sf-z-trigger);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 28px rgb(0 0 0 / 0.35);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  backface-visibility: visible;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.special-form-trigger.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.special-form-trigger.hide {
  transform: translateY(300%);
}

.special-form-trigger-text {
  line-height: 1;
}

.special-form-trigger:hover,
.special-form-trigger:focus-visible {
  background: #ffffff;
  border-color: #000000;
  color: #000000;
  outline: none;
}

.special-form-trigger:active {
  transform: translateY(1px);
}

.special-form-trigger.show:active {
  transform: translateY(1px);
}

/* ── Modal Overlay ── */
.special-form-overlay {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 0.85);
  backdrop-filter: blur(8px);
  z-index: var(--sf-z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  animation: sf-fadeIn 0.15s ease backwards;
}

.special-form-overlay.active {
  opacity: 1;
  visibility: visible;
}

@keyframes sf-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Modal Container ── */
.special-form-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  max-width: 1280px;
  width: 90%;
  max-height: 85vh;
  background: var(--sf-body-color);
  border-radius: 20px;
  overflow: visible;
  z-index: calc(var(--sf-z-overlay) + 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  isolation: isolate;
  border: 1px solid var(--sf-lynch-800);
}

.special-form-overlay.active .special-form-modal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Close Button — üst orta */
.special-form-close {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sf-lynch-600);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  transition: background 0.35s ease, transform 0.35s ease;
  padding: 0;
  color: white;
}

.special-form-close:hover {
  background: #ffffff;
  color: #000000;
}

.special-form-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
  transition: transform 0.4s ease;
}

.special-form-close:hover svg {
  transform: rotate(-180deg);
}

/* Left — Image panel */
.special-form-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--sf-body-color);
  border-radius: 20px 0 0 20px;
}

.special-form-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
}

.special-form-image-heading {
  position: absolute;
  top: 4%;
  right: 2rem;
  left: 2rem;
  color: white;
  font-size: 28px;
  line-height: 1.4;
  text-align: left;
  font-weight: 300;
  z-index: 2;
}

.special-form-image-heading strong {
  font-weight: 700;
  display: block;
  color: #ffffff;
}

/* Right — Form */
.special-form-content {
  padding: 50px 50px 35px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 85vh;
  border-radius: 0 20px 20px 0;
  justify-content: center;
  align-items: center;
}

.special-form-content::-webkit-scrollbar {
  width: 6px;
}

.special-form-content::-webkit-scrollbar-track {
  background: rgb(255 255 255 / 0.05);
}

.special-form-content::-webkit-scrollbar-thumb {
  background: var(--sf-lynch-600);
  border-radius: 3px;
}

.special-form-content::-webkit-scrollbar-thumb:hover {
  background: var(--sf-lynch-500);
}

.special-form {
  width: 100%;
}

.special-form-title {
  text-align: center;
  color: white;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.4;
}

.special-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 20px;
}

.special-form-field {
  position: relative;
}

.special-form-field.full-width {
  grid-column: span 2;
}

/* Labels on border */
.special-form-label {
  position: absolute;
  left: 15px;
  top: 0;
  transform: translateY(-50%);
  padding: 0 15px;
  color: white;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
  transition: all 0.35s ease;
  pointer-events: none;
  background: var(--sf-body-color);
}

.special-form-input:focus,
.special-form-textarea:focus,
.special-form-phone-wrapper:focus-within .special-form-phone-input,
.special-form-select:focus,
input.special-form-input:focus,
input.special-form-phone-input:focus,
textarea.special-form-textarea:focus,
select.special-form-select:focus {
  outline: none !important;
  box-shadow: 0 0 0 1px #ffffff !important;
  background: transparent !important;
}

/* Select — çalışma alanı */
.special-form-select,
select.special-form-select {
  width: 100% !important;
  height: 65px !important;
  padding: 0 45px 0 25px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: white !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: normal !important;
  transition: all 0.35s ease;
  font-family: 'Open Sans', serif;
  box-shadow: 0 0 0 1px var(--sf-lynch-800) !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  cursor: pointer !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 20px center !important;
  background-size: 12px !important;
}

.special-form-select:hover,
select.special-form-select:hover {
  box-shadow: 0 0 0 1px var(--sf-lynch-600) !important;
}

.special-form-select option {
  background: var(--sf-body-color);
  color: white;
}

.special-form-select option:first-child {
  color: var(--sf-lynch-500);
}

.special-form-input:focus + .special-form-label,
.special-form-textarea:focus + .special-form-label,
.special-form-phone-wrapper:focus-within + .special-form-label,
.special-form-select:focus + .special-form-label,
.special-form-select.has-value + .special-form-label {
  color: #ffffff;
  font-weight: 700;
}

/* Inputs */
.special-form-input,
.special-form-textarea,
.special-form-phone-input,
input.special-form-input[type="text"],
input.special-form-input[type="email"],
input.special-form-phone-input[type="tel"],
textarea.special-form-textarea {
  width: 100% !important;
  height: 65px !important;
  padding: 0 25px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: white !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: normal !important;
  transition: all 0.35s ease;
      font-family: 'Open Sans', serif;
  box-shadow: 0 0 0 1px var(--sf-lynch-800) !important;
  outline: none !important;
}

.special-form-textarea,
textarea.special-form-textarea {
  height: 120px !important;
  padding: 20px 25px !important;
  resize: none !important;
  line-height: 1.4 !important;
}

.special-form-input::placeholder,
.special-form-textarea::placeholder,
.special-form-phone-input::placeholder,
input.special-form-input::placeholder,
input.special-form-phone-input::placeholder,
textarea.special-form-textarea::placeholder {
  color: var(--sf-lynch-500) !important;
  opacity: 1 !important;
}

.special-form-input:hover,
.special-form-textarea:hover,
.special-form-phone-wrapper:hover .special-form-phone-input,
input.special-form-input:hover,
input.special-form-phone-input:hover,
textarea.special-form-textarea:hover {
  box-shadow: 0 0 0 1px var(--sf-lynch-600) !important;
}

.special-form-input:focus,
.special-form-textarea:focus,
.special-form-phone-wrapper:focus-within .special-form-phone-input,
input.special-form-input:focus,
input.special-form-phone-input:focus,
textarea.special-form-textarea:focus {
  outline: none !important;
  box-shadow: 0 0 0 1px #ffffff !important;
  background: transparent !important;
}

/* Phone */
.special-form-phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.special-form-phone-input,
input.special-form-phone-input[type="tel"] {
  padding: 0 25px 0 85px !important;
}

.special-form-phone-selector {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.35s ease;
  border-right: 1px solid var(--sf-lynch-800);
}

.special-form-phone-selector:hover {
  opacity: 0.9;
}

.special-form-phone-code {
  color: white;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
}

.special-form-phone-arrow {
  color: white;
  font-size: 10px;
  transition: transform 0.35s ease;
  margin-left: 2px;
}

.special-form-phone-wrapper:focus-within .special-form-phone-arrow,
.special-form-country-dropdown.active ~ .special-form-phone-selector .special-form-phone-arrow {
  transform: rotate(180deg);
}

.special-form-country-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--sf-body-color);
  border-radius: 10px;
  box-shadow: 0 0 0 1px var(--sf-lynch-800), 0 8px 24px rgb(0 0 0 / 0.4);
  min-width: 200px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.35s ease;
  z-index: 1001;
}

.special-form-country-dropdown.active {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow-y: auto;
}

.special-form-country-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.35s ease;
  border-bottom: 1px solid var(--sf-lynch-800);
}

.special-form-country-option:last-child {
  border-bottom: none;
}

.special-form-country-option:hover {
  background: rgb(255 255 255 / 0.05);
}

.special-form-country-flag {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.special-form-country-name {
  color: white;
  font-size: 14px;
  font-weight: 300;
  flex: 1;
}

.special-form-country-code {
  color: var(--sf-lynch-500);
  font-size: 13px;
  font-weight: 300;
  white-space: nowrap;
}

/* Checkbox */
.special-form-checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.special-form-checkbox-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-form-checkbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
  margin: 0;
}

.special-form-checkbox-box {
  position: relative;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 0 0 1px var(--sf-lynch-800);
  transition: all 0.35s ease;
}

.special-form-checkbox:hover ~ .special-form-checkbox-box {
  box-shadow: 0 0 0 1px var(--sf-lynch-600);
}

.special-form-checkbox:checked ~ .special-form-checkbox-box {
  box-shadow: 0 0 0 1px #ffffff;
}

.special-form-checkbox-box::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40%;
  height: 40%;
  border-radius: 5px;
  background: #ffffff;
  opacity: 0;
  transition: all 0.35s ease;
}

.special-form-checkbox:checked ~ .special-form-checkbox-box::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.special-form-checkbox-label {
  color: var(--sf-lynch-500);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  display: inline;
  cursor: pointer;
}

.special-form-checkbox-link {
  position: relative;
  z-index: 20;
  display: inline-block;
  color: var(--sf-lynch-400);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.35s ease;
}

.special-form-checkbox-link:hover {
  color: #ffffff;
}

/* Submit */
.special-form-button-field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.special-form-submit,
button.special-form-submit[type="submit"] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  width: 100%;
  max-width: 280px;
  padding: 0 60px;
  border-radius: 50px;
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: none !important;
  color: #0f0f12 !important;
}

.special-form-submit-text {
  position: relative;
  z-index: 10;
  color: #0f0f12 !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: color 0.35s ease;
}

.special-form-submit:hover,
.special-form-submit:focus-visible,
button.special-form-submit[type="submit"]:hover,
button.special-form-submit[type="submit"]:focus-visible {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #0f0f12 !important;
}

.special-form-submit:hover .special-form-submit-text,
.special-form-submit:focus-visible .special-form-submit-text {
  color: #0f0f12 !important;
}

.special-form-submit-circle {
  position: absolute;
  width: 0;
  height: 0;
  background: var(--sf-button-hover);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.special-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.special-form-submit:active {
  transform: translateY(0);
}

.special-form-submit.loading .special-form-submit-text {
  opacity: 0;
}

.special-form-submit.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgb(15 15 18 / 0.3);
  border-top-color: var(--sf-button-text);
  border-radius: 50%;
  animation: sf-spin 0.8s linear infinite;
}

@keyframes sf-spin {
  to { transform: rotate(360deg); }
}

/* Errors & messages */
.special-form-field.error .special-form-input,
.special-form-field.error .special-form-textarea,
.special-form-field.error .special-form-phone-input,
.special-form-field.error .special-form-select {
  box-shadow: 0 0 0 1px #ff4444 !important;
}

.special-form-field.error .special-form-label {
  color: #ff4444;
}

.special-form-error-message {
  color: #ff4444;
  font-size: 12px;
  margin-top: 8px;
  display: none;
}

.special-form-field.error .special-form-error-message {
  display: block;
}

.special-form-message {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  display: none;
  width: 100%;
}

.special-form-message.show {
  display: block;
}

.special-form-message.success {
  background: rgb(76 175 80 / 0.1);
  color: #4caf50;
  box-shadow: 0 0 0 1px #4caf50;
}

.special-form-message.error {
  background: rgb(244 67 54 / 0.1);
  color: #f44336;
  box-shadow: 0 0 0 1px #f44336;
}

/* KVKK Popup */
.special-form-kvkk-overlay {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: calc(var(--sf-z-overlay) + 2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.special-form-kvkk-overlay.active {
  opacity: 1;
  visibility: visible;
}

.special-form-kvkk-modal {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: visible;
  box-shadow: 0 8px 32px rgb(0 0 0 / 0.4);
  border: 1px solid var(--sf-lynch-800);
}

.special-form-kvkk-close {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sf-lynch-600);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  transition: background 0.35s ease, transform 0.35s ease;
  padding: 0;
  color: white;
}

.special-form-kvkk-close:hover {
  background: #ffffff;
  color: #000000;
  transform: translateX(-50%) translateY(-50%) rotate(-180deg);
}

.special-form-kvkk-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.special-form-kvkk-content {
  padding: 90px 60px 60px;
  overflow-y: auto;
  overflow-x: hidden;
  color: white;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  flex: 1;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 20px 20px;
  text-align: left;
}

.special-form-kvkk-content::-webkit-scrollbar {
  width: 8px;
}

.special-form-kvkk-content::-webkit-scrollbar-thumb {
  background: var(--sf-lynch-800);
  border-radius: 4px;
}

.special-form-kvkk-content h2,
.special-form-kvkk-content .special-form-kvkk-heading {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.4;
}

.special-form-kvkk-content p {
  margin-bottom: 20px;
  color: black;
}

.special-form-kvkk-content a {
  text-decoration: underline;
}

.special-form-kvkk-content a:hover {
  text-decoration: underline;
}

.grecaptcha-badge {
  display: none;
}

/* ── Responsive: Trigger ── */
@media (min-width: 1024px) {
  .special-form-trigger {
    left: clamp(20px, 2.4vw, 50px);
    bottom: clamp(64px, 5.5vw, 84px);
    padding: 12px 20px;
    font-size: 13px;
  }
}

@media (max-width: 1023px) {
  .special-form-trigger {
    left: clamp(20px, 2.4vw, 24px);
    bottom: clamp(64px, 5.5vw, 84px);
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* Footer overlap guard — sticky widget'lar footer üzerine binmesin */
body.footer-overlap .special-form-trigger,
body.footer-overlap .tools-container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}


/* ── Responsive: Modal ── */
@media (max-width: 1024px) {
  .special-form-modal {
    grid-template-columns: 1fr;
    width: 95%;
    max-height: 90vh;
  }

  .special-form-image-wrapper {
    display: none;
  }

  .special-form-content {
    padding: 60px 40px 40px;
    border-radius: 20px;
  }

  .special-form-label {
    background: var(--sf-body-color);
  }

  .special-form-submit {
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .special-form-modal {
    top: max(20px, env(safe-area-inset-top, 0px));
    left: 50%;
    width: 100%;
    max-height: calc(100dvh - max(20px, env(safe-area-inset-top, 0px)) - 20px);
    border-radius: 0;
    transform: translateX(-50%) scale(0.96);
  }

  .special-form-overlay.active .special-form-modal {
    transform: translateX(-50%) scale(1);
  }

  .special-form-close {
    top: max(16px, env(safe-area-inset-top, 0px));
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
  }

  .special-form-content {
    padding: 72px 20px 24px;
    border-radius: 0;
    max-height: calc(100dvh - max(20px, env(safe-area-inset-top, 0px)) - 20px);
  }

  .special-form-title {
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .special-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 12px;
  }

  .special-form-field.full-width {
    grid-column: span 1;
  }

  .special-form-input,
  input.special-form-input[type="text"],
  input.special-form-input[type="email"],
  input.special-form-phone-input[type="tel"],
  .special-form-select,
  select.special-form-select {
    height: 55px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }

  .special-form-select,
  select.special-form-select {
    padding-right: 40px !important;
    background-position: right 15px center !important;
  }

  .special-form-textarea,
  textarea.special-form-textarea {
    height: 90px !important;
    padding: 12px 18px !important;
  }

  .special-form-phone-input,
  input.special-form-phone-input[type="tel"] {
    padding-left: 75px !important;
  }

  .special-form-label {
    font-size: 13px;
    left: 12px;
    padding: 0 12px;
  }

  .special-form-checkbox-box {
    width: 30px;
    height: 30px;
  }

  .special-form-checkbox-label {
    font-size: 13px;
  }

  .special-form-submit {
    height: 48px;
    max-width: 100%;
    padding: 0 40px;
  }

  .special-form-kvkk-modal {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 0;
  }

  .special-form-kvkk-content {
    padding: 60px 20px 20px;
    max-height: 75vh;
    font-size: 13px;
  }

  .special-form-kvkk-content h2,
  .special-form-kvkk-content .special-form-kvkk-heading {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
