:root {
  --color-primary: #05b6f8;
  --color-secondary: #3ce2ed;
  --color-white: #fefefe;
  --color-heading: #1E293B;
  --color-text: #334155;
  --color-bg: #F0F5FA;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-text);
  background-color: var(--color-white);
}
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-light { background-color: var(--color-bg); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-heading { color: var(--color-heading); }
.btn-primary {
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  color: white;
  padding: 0.86rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(5, 182, 248, 0.3);
}
.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}
.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

#editor-container .ql-editor {
  min-height: 300px;
  font-size: 16px;
  line-height: 1.5;
}

#privacy-container .ql-editor {
  min-height: 300px;
  font-size: 16px;
  line-height: 1.5;
}

#terms-container .ql-editor {
  min-height: 300px;
  font-size: 16px;
  line-height: 1.5;
}

#policy-container .ql-editor {
  min-height: 300px;
  font-size: 16px;
  line-height: 1.5;
}

#offer-container .ql-editor {
  min-height: 300px;
  font-size: 16px;
  line-height: 1.5;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Стиль для бургер-меню */
.menu-icon {
  width: 24px;
  height: 24px;
  position: relative;
  margin: auto;
}
.menu-icon .line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.menu-open .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-open .line:nth-child(2) {
  opacity: 0;
}
.menu-open .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Стили для чекапа */
.checkup-content ol {
list-style-type: decimal !important;
padding-left: 2rem !important;
}

.checkup-content li {
display: list-item !important;
font-size: 16px;
color: #4a5568;
}

.checkup-content strong {
display: block;
font-size: 1.25rem;
color: #2d3748;
}

.checkup-content ul {
list-style-type: disc !important;
padding-left: 2rem !important;
}

.checkup-content ul li {
display: list-item !important;
position: relative;
padding-left: 1rem;
}

.checkup-content :where(h1, h2, h3, h4, h5, h6) {
  all: unset;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--color-heading);
  margin: 1em 0;
}

.checkup-content h1 { 
  font-size: 2rem;
  line-height: 1.2;
  margin: 0.67em 0;
}

.checkup-content h2 {
  font-size: 1.75rem;
  line-height: 1.3;
}

.checkup-content h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.checkup-content h4 {
  font-size: 1.25rem;
  line-height: 1.5;
}

.checkup-content h5 {
  font-size: 1.1rem;
  line-height: 1.6;
}

.checkup-content h6 {
  font-size: 1rem;
  line-height: 1.7;
}

.border-dashed {
transition: all 0.3s ease;
}

.border-primary {
border-color: #05b6f8 !important;
}

.bg-blue-50 {
background-color: rgba(5, 182, 248, 0.05);
}