/* === Breadcrumbs STYLES === */

.breadcrumbs.container {
    margin: 0 0 30px 0;
}


/* === SERVICE BANNER STYLES === */

.service-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: rgb(30, 58, 138);
    border-radius: 20px;
    overflow: hidden;
    margin: auto;
}

/* Overlay затемнение фона 
.service-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}*/

/* Контейнер внутри баннера */
.service-banner__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 10px;
    background: rgb(244, 244, 244);
    padding: 40px;
    border-radius: 30px;
}

/* Левая часть с текстом */
.service-banner__content {
    flex: 1 1 50%;
    max-width: 600px;
    margin: 0 0 0 40px;
}

.service-banner__title {
    font-size: clamp(36px, 4vw, 55px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.service-banner__subtitle {
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.service-banner__description {
    font-size: 18px;
    line-height: 1.5;
    color: #1e3a8a;
    margin-bottom: 30px;
}

/* Кнопка */
.blue-button {
    transition: all 0.3s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    width: fit-content;
    padding: 5px 73px;
    height: 78px;
    user-select: none;
    cursor: pointer;
}

.blue-button:hover {
    background-color: #2149BA;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.blue-button-icon {
    width: 24px;
    height: 24px;
}

/* Правая часть с изображением */
.service-banner__image {
    position: relative;
    width: 40%;
}

.service-banner__image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.service-banner__image img:hover {
    transform: scale(1.03);
}

/* === АДАПТИВ === */

 

/* === CONTENT SERVICE STYLES === */

.content-service {
    padding: 60px 20px;
    background: #ffffff;
}

.content-service .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 40px;
}

/* Заголовок секции */
.content-service .blue-title {
    color: #1E3A8A;
    font-family: 'Geologica', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

/* Основной контент */
.content-service__content {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.content-service__content p {
    margin-bottom: 20px;
}

.content-service__content h2,
.content-service__content h3 {
    color: #1E3A8A;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-service__content h2 {
    font-size: 28px;
}

.content-service__content h3 {
    font-size: 22px;
}

/* Списки */
.content-service__content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-service__content ul li {
    list-style: disc;
    margin-bottom: 10px;
}

/* CTA блоки */
.content-service__cta {
    background-color: #1E3A8A;
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    margin: 50px 0;
}

.content-service__cta p {
    font-size: 20px;
    margin-bottom: 20px;
}

.content-service__cta .blue-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background-color: #fff;
    color: #1E3A8A;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.content-service__cta .blue-button:hover {
    background-color: #f1f1f1;
}

/* Картинки */
.content-service__content img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    margin: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Контактные данные */
.content-service__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

.content-service__contact a {
    color: #1E3A8A;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    text-decoration: none;
}

.content-service__contact a:hover {
    text-decoration: underline;
}

/* Адаптив */
@media screen and (max-width: 768px) {
    .content-service__content {
        font-size: 16px;
    }

    .content-service .blue-title {
        font-size: 28px;
    }

    .content-service__cta p {
        font-size: 18px;
    }
}

/* SEO Text Block */
.seo-text-block {
    background-color: #f9f9f9;
    border-radius: 40px;
    padding: 60px 20px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.seo-text-block .container {
    max-width: 1200px;
    margin: 0 auto;
}
.seo-text-block h1 {
    font-family: 'Geologica', sans-serif;
    color: #1E3A8A;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.seo-text-block h2 {
    font-family: 'Geologica', sans-serif;
    color: #1E3A8A;
    font-size: clamp(32px, 4vw, 38px);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.seo-text-block p {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
}

.seo-text-block a {
    color: #1E3A8A;
    font-weight: 600;
    text-decoration: underline;
}

.seo-text-block a:hover {
    color: #2149BA;
}

.seo-text-block p:not(:last-child) {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.seo-text-block p:not(:last-child)::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 20px auto 0;
}


.seo-text-block p {
    position: relative;
    padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .seo-text-block {
        padding: 40px 15px;
    }

    .seo-text-block h2 {
        font-size: 28px;
    }

    .seo-text-block p {
        font-size: 16px;
    }
}

/* About info block */

.about-info-block__text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.about-info-block__text .description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #1E3A8A;
    font-weight: 500;
}

.features-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1E3A8A;
    font-size: 16px;
}


.about-info-block.about-info-block--odd
 {
    background: #c3c4c742;
}

.image-caption
 {
    display: none;
}
.image-description {
    display: none;
}

.about-info-block__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-info-block__text,
.about-info-block__image {
    flex: 1 1 48%;
}

.about-info-block__image {
    max-width: 48%;
}

.about-info-block__image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Обёртка для скролла */
.responsive-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Общие стили таблицы */
.responsive-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* минимальная ширина — важно */
}

/* Границы и отступы */
.responsive-table th,
.responsive-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

/* Для мобильных: делаем блоки 100% ширины */
@media screen and (max-width: 768px) {
    .about-info-block__text,
    .about-info-block__image {
        flex: 1 1 100%;
        max-width: 100% !important;
    }

    .about-info-block__content {
        flex-direction: column;
        align-items: stretch;
    }

    .about-info-block__image img {
        max-height: 400px;
        object-fit: cover;
    }
}





/* ✅ Адаптивность */


@media (max-width: 768px) {
  .about-info-block__content {
    flex-direction: column;
  }

  .about-info-block__image,
  .about-info-block__text {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
    .about-info-block__content {
        padding: 20px;
    }

    .about-info-block__text h2 {
        font-size: 20px;
    }

    .features-list li {
        font-size: 14px;
    }
}




.about-info-blocks {
    margin: 60px auto;
    max-width: 1450px;
}

.about-info-blocks__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-info-block {
    flex: 1 1 45%;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    margin: 50px 0;
}


.about-info-block__title {
    font-size: 24px;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.about-info-block__desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-info-block__features {
    list-style: none;
    padding: 0;
}

.about-info-block__feature-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.about-info-block__feature-item::before {
    content: "✔"; /* Можно вставить SVG или иконку */
    position: absolute;
    left: 0;
    color: #1E3A8A;
    font-size: 18px;
}
.info-boxes-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-box {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-box__title {
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.info-box__description {
    padding: 20px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    min-height: 120px;
}

/* Адаптив */
@media (max-width: 1024px) {
    .info-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .info-boxes-grid {
        grid-template-columns: 1fr;
    }
}

.info-blocks-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.info-blocks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-block {
    text-align: center;
    padding: 30px 20px;
    }

.info-block__icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.info-block__title {
    font-size: 20px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-block__description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .info-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .info-blocks-grid {
        grid-template-columns: 1fr;
    }

    .info-block {
        padding: 20px;
    }
}

.about-info-block__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.about-info-block__text {
    flex: 1 1 50%;
}

.about-info-block__text h2 {
    color: #1E3A8A;
    font-size: clamp(28px, 4vw, 34px);
    margin-bottom: 20px;
}

.about-info-block__text .description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features-list {
    list-style: disc;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
}

.about-info-block__image {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    max-width: 40%;
}

.about-info-block__image img {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    max-height: 650px;
    object-fit: cover;
   /* box-shadow: 0 10px 20px rgb(0 0 0 / 55%);*/
}



/*  Отзывы */
.reviews__item-rating {
    margin-top: 8px;
}

.reviews__item-rating .star {
    font-size: 30px;
    color: #FFD700; /* Цвет звезд (золото) */
    margin-right: 2px;
}

.reviews__item-rating .star.empty {
    color: #ccc; /* Цвет пустой звезды */
}


.service-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	margin-top: 60px;
}

.service-content {
	min-width: 0;
}

.service-sidebar {
	position: relative;
}

.service-cta {
	position: sticky;
    top: 150px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 2px 6px 20px rgb(0 0 0 / 24%);
    margin-right: 40px;
}

.cta-button {
	display: inline-block;
	margin-top: 16px;
	padding: 12px 20px;
	background-color: rgb(255 151 0);
	color: #fff;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.cta-button:hover {
	background-color: rgb(245 158 11 / 78%);
}

.bl-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 21px;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    background: rgb(30, 58, 138);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    margin: 45px;
    height: 60px;
    width: 280px;
    color: rgb(255, 255, 255);
}
    
.bl-button-icon {
    width: 45px;
    height: 45px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    gap: 45px;
    margin: 15px;
}    
.bl-button-text {
    display: inline-block;
}

.services-button-wrapper
 {
    text-align: right;
}
.or__button {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.or_button-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    background: rgb(255 151 0);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    margin: 45px;
    height: 60px;
    width: 280px;
    color: rgb(255, 255, 255);
}
img.attachment-medium_large.size-medium_large.wp-post-image {
    max-width: 100%;
    height: auto;
}
article.blog-item.border-radius-block {
    padding: 15px;
}



/* Адаптивность */
@media screen and (max-width: 1024px) {
    .about-info-block__content {
        text-align: center;
    }

    .about-info-block__image img {
        max-height: 350px;
    }
}

@media screen and (max-width: 900px) {
   .service-banner__container {
        flex-direction: row; /* Держим блоки в ряд */
    }

    .service-banner__content {
        flex: 1 1 40%;
    }

    .service-banner__image {
        flex: 1 1 40%;
    }

    .service-banner__image img {
        max-width: 100%;
    }
}     
@media screen and (max-width: 900px) {
    .service-banner__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-banner__content,
    .service-banner__image {
        flex: 1 1 100%;
        width: 100%;
        margin: auto;
    }

    .service-banner__image {
        margin-top: 30px;
    }

    .service-banner__image img {
        width: auto;
        max-height: 550px;
        display: block;
        border-radius: 20px;
        margin: auto;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .service-banner__content {
        order: 1;
    }
    
    .blue-button {
        margin: 20px auto;
    }
}


@media (max-width: 991px) {
	.service-layout {
		grid-template-columns: 1fr;
	}
	.service-sidebar {
		display: none;
	}
}

/* Базовая адаптивность: обе колонки по 100% */
@media screen and (max-width: 768px) {
    .about-info-block__text,
    .about-info-block__image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-info-block__content {
        flex-direction: column;
        align-items: stretch;
    }

    /* Только для нечётных блоков — переворачиваем порядок */
    .about-info-block--odd .about-info-block__content {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 600px) {
    .service-banner {
        padding: 0px;
        border-radius: 15px;
    }

    .service-banner__title {
        font-size: 28px;
    }

    .service-banner__subtitle {
        font-size: 18px;
    }

    .blue-button {
        padding: 12px 30px;
        font-size: 16px;
        margin: auto;
    }

    .blue-button-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .or__button {
        display: block;
        width: fit-content;
        margin: 36px auto;
    }
}

@media (max-width: 400px)  {
    
    .or_button-link {
        width: 200px;
    }
  
}

@media (max-width: 380px)  {
    
    .about-info-block.about-info-block--odd {
    padding: 10px;
    }
    .container.service-banner__container {
    padding: 10px;
}
    article.blog-item.border-radius-block {
    padding: 20px;
}
    img.attachment-medium_large.size-medium_large.wp-post-image {
    width: 320px;
    height: auto;
}
    .or_button-link {
        width: 200px;
    }
    .main-info-block.main-info-block--even.main-info-block--style-default {
    padding: 0px;
}
}

/*.about-info-block.about-info-block--even
 {
    background: #fdcb1f;
    border-radius: 10px;
    padding: 50px;
}
*/