* {
    padding: 0;
    margin: 0;
    font-family: 'Figtree', sans-serif;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    background: #F5F7FA;
    color: #0B1427;
}

:root {
  --cb-size: 18px;
  --cb-radius: 4px;
  --cb-bg: #F3E8DE;
  --cb-hover: #e7dcd1;
  --cb-checked: #0B1427;
  --cb-check: #F3E8DE;
}

/* Label consent-container */
.consent-container {
  position: relative;
  display: inline-flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
  line-height: 1.4;
}

/* Hide native checkbox */
.consent-container input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
}

/* Custom checkbox */
.checkmark {
  width: var(--cb-size);
  height: var(--cb-size);
  background: var(--cb-bg);
  border-radius: var(--cb-radius);
  border: 1px solid var(--cb-checked);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.label-text {
  display: block;
}

/* Hover */
.consent-container:hover .checkmark {
  background: var(--cb-hover);
}

/* Checked state */
.consent-container input:checked + .checkmark {
  background: var(--cb-checked);
}

/* Checkmark tick */
.checkmark::after {
  content: "";
  width: 4px;
  height: 7px;
  border: solid var(--cb-check);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

/* Show tick */
.consent-container input:checked + .checkmark::after {
  opacity: 1;
}

/* Keyboard focus */
.consent-container input:focus-visible + .checkmark {
  outline: 2px solid #4c73ff;
  outline-offset: 2px;
}

h2 { font-size: 36px; font-weight: 600; line-height: 1.3; }
h3 { font-size: 30px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 24px; font-weight: 600; line-height: 1.4; }
h5 { font-size: 20px; font-weight: 600; line-height: 1.4; }
h6 { font-size: 16px; font-weight: 600; line-height: 1.5; }


/* ===== Tablet ===== */
@media (max-width: 1024px) {
  h2 { font-size: 30px; font-weight: 600; line-height: 1.3; }
  h3 { font-size: 24px; font-weight: 600; line-height: 1.3; }
  h4 { font-size: 20px; font-weight: 600; line-height: 1.4; }
  h5 { font-size: 18px; font-weight: 600; line-height: 1.4; }
  h6 { font-size: 16px; font-weight: 600; line-height: 1.5; }
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
  h2 { font-size: 24px; font-weight: 600; line-height: 1.3; }
  h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }
  h4 { font-size: 18px; font-weight: 600; line-height: 1.4; }
  h5 { font-size: 16px; font-weight: 600; line-height: 1.4; }
  h6 { font-size: 14px; font-weight: 600; line-height: 1.5; }
}

a{
  text-decoration: none;
}