.service-text ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 8px;
}
.service-text ul li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #575757;
}
.service-text ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00387b;
}
@media (max-width: 767.98px) {
  .service-text ul li {
    font-size: 15px;
  }
}
/* ===== Страница по умолчанию (page.php) ===== */
.default-content {
    padding: 40px 0 80px;
}

.default-content__title {
    font-size: 36px;
    font-weight: 700;
    color: #00387b;
    margin-bottom: 30px;
}

.default-content__body {
    max-width: 900px;
}

.default-content__body p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.default-content__body h2,
.default-content__body h3,
.default-content__body h4 {
    color: #00387b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.default-content__body ul,
.default-content__body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.default-content__body ul li,
.default-content__body ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 8px;
}

.default-content__body a {
    color: #00387b;
    text-decoration: underline;
}

.default-content__body a:hover {
    color: #0055a8;
}

/* ===== Страница 404 ===== */
.error-404 {
    padding: 60px 0 100px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-404__inner {
    display: flex;
    justify-content: center;
    text-align: center;
}

.error-404__content {
    max-width: 600px;
}

.error-404__code {
    font-size: 120px;
    font-weight: 900;
    color: #00387b;
    line-height: 1;
    margin-bottom: 10px;
}

.error-404__title {
    font-size: 28px;
    font-weight: 700;
    color: #00387b;
    margin-bottom: 15px;
}

.error-404__text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.error-404__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #00387b;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.error-404__btn:hover {
    background: #0055a8;
    color: #fff;
    text-decoration: none;
}

.error-404__btn svg {
    fill: #fff;
    transition: transform 0.3s ease;
}

.error-404__btn:hover svg {
    transform: translateX(5px);
}

/* ===== Адаптив ===== */
@media (max-width: 768px) {
    .default-content {
        padding: 20px 0 50px;
    }

    .default-content__title {
        font-size: 28px;
    }

    .error-404 {
        padding: 40px 0 60px;
    }

    .error-404__code {
        font-size: 80px;
    }

    .error-404__title {
        font-size: 24px;
    }

    .error-404__btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}
.company__media.el__none_shadow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  transition: opacity 0.3s;
}
