@charset "utf-8";
/* CSS Document */
html, body {
  overflow-x: hidden;
  width: 100%;
}
.logo-container {
  display: flex;
  align-items: center;
  flex: 0 1 90%;
}

/* Стили для логотипа */
.logo {
  height: 50px; /* Высота логотипа */
  margin-right: 15px; /* Отступ между логотипом и названием */
}

/* Корректируем стили заголовка */
.title {
  text-align: left; /* Выравнивание текста по левому краю */
  font-size: 1.8rem; /* Немного уменьшаем размер шрифта */
  flex-grow: 1; /* Занимает доступное пространство */
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .logo {
    height: 40px; /* Уменьшаем логотип на мобильных */
  }
  .title {
    font-size: 1.4rem; /* Уменьшаем размер шрифта на мобильных */
  }
}
/* Общие стили для тела */
body {
	margin: 0;
	padding: 0;
}

.contacts-section {
 background: linear-gradient(135deg, #0056b3 0%, #003366 100%);
    padding: 4rem 2rem;
    color: white;
}

.contacts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contacts-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.contact-card {
    background: ;
	border-radius: 15px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease;
	background-color: #00aacc;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.1);}
    100% {transform: scale(1);}
}

.call-button {
    display: block;
    background: #00cc66;
    color: white!important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    text-decoration: none;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.call-button:hover {
    background: #00b359;
    box-shadow: 0 5px 15px rgba(0,204,102,0.3);
}

.email-link {
    color: #00cc66;
    font-size: 1.2rem;
    text-decoration: none;
    border-bottom: 2px dashed;
    transition: all 0.3s ease;
}

.whatsapp-block {
    text-align: center;
    padding-top: 2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white!important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contacts-header h2 {
        font-size: 2rem;
    }
    
    .call-button {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
}







/* Изменение цвета ссылок в футере */
.footer-column a {
    color: #ffffff ; /* Белый цвет */
    text-decoration: none; /* Убираем подчеркивание */
    transition: color 0.3s ease; /* Плавное изменение цвета */
}

/* Стиль при наведении */
.footer-column a:hover {
    color: #30d5c8; /* Цвет при наведении (бирюзовый) */
    text-decoration: underline; /* Подчеркивание при наведении */
}
.contacts-section {
    padding: 80px 20px;
    background: #0056b3;
    position: relative;
    overflow: hidden;
}

.contacts-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contacts-content {
	padding: 60px 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	text-align: center;
	position: relative;
	background: rgba(255,255,255,0.95);
	background-position: 255;
}

.contacts-content:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulseContact 6s infinite;
}

@keyframes pulseContact {
    0% { transform: scale(0.8); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.4; }
    100% { transform: scale(0.8); opacity: 0.8; }
}

.contacts-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 30px;
}

.contacts-content h2 {
    color: #0056b3;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: "Times New Roman", serif;
}

.contacts-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.8rem;
    color: #30d5c8;
    margin-bottom: 15px;
    display: block;
}

.contact-item p {
    color: #212529;
    font-size: 1,5rem;
    margin: 0;
}

/* Обновленные стили для кнопки */
.contacts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Цвета WhatsApp */
    background: #25D366;
    color: white !important;
    border: 2px solid #25D366;
}

.contacts-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contacts-btn i {
    font-size: 1.5em;
}

/* Адаптивные стили */
@media (max-width: 992px) {
    .contacts-content {
        padding: 30px;
    }
    
    .contacts-info {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 40px 10px;
    }
    
    .contacts-content {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contacts-btn {
        width: 60%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 14px 20px;
    }
    
    .contacts-btn i {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .contacts-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contacts-info {
        gap: 15px;
    }
}

/* FAQ Styles */
.faq-section {
    padding: 60px 20px;
    background-color: #f8fafc;
    position: relative;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 50px;
    font-family: "Times New Roman", Times, serif;
    position: relative;
}

.faq-title:after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #30d5c8;
    margin: 20px auto 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-details {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e1e5eb;
}

.faq-details:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-summary {
    padding: 20px 25px;
    background-color: #f0f8ff;
    color: #0056b3;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.faq-summary:hover {
    background-color: #e1f0fa;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #30d5c8;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-details[open] .faq-icon {
    transform: rotate(180deg);
    color: #ff6b6b;
}

.faq-answer {
	padding: 25px;
	font-size: 1.1rem;
	line-height: 1.7;
	color: #000000;
	border-top: 1px solid #e1e5eb;
}

.faq-list {
    margin: 20px 0;
    padding-left: 0;
}

.faq-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    list-style-type: none;
}

.faq-list i {
    color: #30d5c8;
    position: absolute;
    left: 0;
    top: 4px;
}

.faq-note {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #0056b3;
}

.faq-note i {
    color: #0056b3;
    margin-right: 10px;
}

.faq-docs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.faq-doc-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 6px;
}

.faq-doc-item i {
    color: #30d5c8;
    margin-right: 10px;
    font-size: 1.2rem;
}

.faq-comment {
    font-style: italic;
    color: #718096;
    text-align: center;
    margin-top: 20px;
}

.faq-answer-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.faq-answer-header i {
    font-size: 2rem;
    color: #30d5c8;
    margin-right: 15px;
}

.faq-answer-header h3 {
    margin: 0;
    color: #0056b3;
}

.faq-protected {
    padding-left: 25px;
}

.faq-protected li {
    margin-bottom: 10px;
    position: relative;
}

.faq-protected li:before {
    content: "✓";
    color: #30d5c8;
    font-weight: bold;
    position: absolute;
    left: -25px;
}

.faq-warning {
    background: #fff5f5;
    color: #e53e3e;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.faq-warning i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.faq-timeline {
    margin: 25px 0;
}

.faq-stage {
    display: flex;
    margin-bottom: 25px;
}

.faq-stage-number {
    width: 40px;
    height: 40px;
    background: #30d5c8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.faq-stage-content h4 {
    margin: 0 0 5px 0;
    color: #0056b3;
}

.faq-total {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0056b3;
    margin-top: 30px;
}

.faq-restrictions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.faq-restriction {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.faq-restriction i {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-restriction.bad {
    background: #fff5f5;
    border-left: 4px solid #e53e3e;
}

.faq-restriction.good {
    background: #f0fff4;
    border-left: 4px solid #38a169;
}

.faq-restriction.bad i {
    color: #e53e3e;
}

.faq-restriction.good i {
    color: #38a169;
}

.faq-contact {
    background: #0056b3;
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.faq-contact:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.faq-contact-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.faq-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.faq-contact p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px;
    opacity: 0.9;
}

.faq-contact-btn {
    background: white;
    color: #0056b3;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.faq-contact-btn i {
    margin-right: 10px;
}

.faq-contact-btn:hover {
    background: #e6f0ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .faq-summary {
        padding: 15px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 15px;
    }
    
    .faq-docs {
        grid-template-columns: 1fr;
    }
    
    .faq-restrictions {
        grid-template-columns: 1fr;
    }
    
    .faq-contact {
        padding: 30px 20px;
    }
}
.highlight {
            color: #0066cc;
            text-decoration: underline;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .highlight:hover {
            color: #004499;
        }
		
		
		/* Стили для анимированной кнопки WhatsApp */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: pulse 3s infinite;
  opacity: 0;
  z-index: 1;
}

.pulse-ring.delay-1 {
  animation-delay: 1s;
}

.pulse-ring.delay-2 {
  animation-delay: 2s;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  } }
		

.review-blocks {
	gap: 30px;
	justify-content: space-between;
	top: 20px;
	bottom: 20px;
	margin: 20px;
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.review {
	width: 28%; /* Три блока с учетом gap */
	background-color: #30d5c8;
	border-radius: 15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	padding: 10px;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}
.containerideo {
	display: flex;
	justify-content: space-between;
	gap: 20px; /* Зазор между блоками */
	flex-wrap: nowrap; /* Запрет на перенос */
}
.review-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 15px;
}
.review-avatar {
	background-color: #007bff;
	color: white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
}
.review-city {
	margin-top: 10px;
	font-size: 16px;
	color: #555;
}
.review-details {
	margin-top: 20px;
}
.review-debt {
	font-size: 16px;
	color: #007bff;
	margin-bottom: 10px;
	font-weight: bold;
}
.review-text {
	font-size: 14px;
	color: #333;
	line-height: 1.5;
}
@media (max-width: 768px) {
 .review {
 width: 100%; /* На мобильных устройствах блоки занимают всю ширину */
}
}
@media (max-width: 768px) {
 .containerideo {
 flex-wrap: wrap; /* Разрешаем перенос блоков на новую строку */
 justify-content: center; /* Центрируем блоки */
 gap: 10px; /* Уменьшаем зазор между блоками */
}
}

/* Адаптивность для экранов меньше 480px */
@media (max-width: 480px) {
 .containerideo {
 flex-direction: column; /* Блоки располагаются вертикально */
 align-items: center; /* Центрируем блоки по горизонтали */
 gap: 15px; /* Увеличиваем зазор для вертикального расположения */
}
}
.video-section {
	display: flex;
	flex-wrap: wrap; /* Для адаптивности */
	gap: 20px;
	padding: 20px;
}
.text-blockvideo, .video-block {
	width: 45%;
	background-color: rgba(255, 255, 255, 0.1); /* Белый фон с 50% прозрачностью */
	padding: 20px; /* Отступы: сверху 20px, справа 15px, снизу 25px, слева 10px */
	border-radius: 15px;
	font-size: 1.5 rem;
	margin-top:30px;
}
.text-blockvideo {
	background-color: rgba(255, 255, 255, 0.1); /* Белый фон с 50% прозрачностью */
	border-radius: 15px;
	font-size: 1.5 rem;
}
.video-block video {
	width: 100%;
	height: auto;
	border-radius: 10px;
	border: 5px solid #003366; /* Черная граница 2 пикселя */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Тень с небольшим размытем */
}
 @media (max-width: 768px) {
 .text-blockvideo, .video-block {
 flex: 1 1 100%; /* Блоки занимают всю ширину экрана на маленьких устройствах */
 width: 80%;
}
}
.image-text-block {
	display: flex;
	align-items: center;
}
.image-container {
	width: 48%;
	height: 500px;
	margin-top: 20px; /* Устанавливает отступ сверху в 20 пикселей */
	padding:20px;
}
.text-container {
	width: 48%;
	height: 500px;
	margin-top: 20px; /* Устанавливает отступ сверху в 20 пикселей */
	padding:20px;
	font-family: "Times New Roman", Times, serif;
}
.image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: 450px;
}
.text-container h2 {
	font-size: 24px;
	margin-bottom: 10px;
}
.text-container p {
	font-size: 20px;
	color: #333;
}
@media (max-width: 768px) {
 .image-text-block {
 flex-direction: column;
 align-items: center;
}
 .image-container {
 width: 100%;
 text-align: center;
}
 .text-container {
 text-align: center;
 width: 90%;
 height: 300px;
 margin-top: 0px; /* Устанавливает отступ сверху в 20 пикселей */
 padding:0px;
}
 details {
 max-width: 90%;
}
}
 @media (max-width: 480px) {
 .text-container h2 {
 font-size: 20px;
}
 .text-container p {
 font-size: 14px;
}
}
/* Стили для заголовка */
header {
	top: 0;
	left: 0;
	width: 100%;
	color: #000000;
	padding: 10px 20px;
	display: flex;
	align-items: center; /* Центрирует элементы по вертикали */
	z-index: 1000;
	background-color: #FFFFFF;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Тень для полоски */
}
/* Стили для названия в заголовке */
.title {
	flex: 0 1 90%; /* Заголовок занимает 80% ширины */
	text-align: center; /* Текст внутри заголовка центрируется */
	font-size: 2rem;
	font-family: "Times New Roman", Times, serif;
}
/* Кнопка для мобильного меню */
.menu-toggle {
	border: none;
	font-size: 1.5rem;
	text-align: right; /* Кнопка выравнивается вправо */
	cursor: pointer;
	position: fixed;
	right: 10px; /* Смещено вправо */
	top: 10px; /* При необходимости, добавьте смещение сверху */
	color: #30d5c8;
	border-radius: 10px;
	background-color: #FFFFFF;
	background-image: none;
	z-index: 1200; /* Убедитесь, что блок находится поверх других элементов */
}
/* Панель с полным экраном */
.full-width-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative; /* Изначально блок не фиксируется */
	top: 0;
	left: 0;
	right: 0;
	background-color: #00AACC;
	padding: 10px 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	z-index: 900;
	width: 100%;
}

/* Дополнительные стили */
        .advantages-section {
	background-color: #0056b3;
	color: white;
	padding: 40px 0;
}
.advantages-section h1 {
	font-size: 2rem;
	font-family: "Times New Roman", Times, serif;
	word-spacing: 10px;
	text-align: center;
}
.advantages-section h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.5rem;
	color: #FFFFFF;
	font-weight: normal;
}

.advantage-block p{
	font-size: 1.5rem;
    font-family: "Times New Roman", Times, serif;
	padding: 20px;
	margin: 10px 0;
	
}
.advantage-block {
            background-color: white;
            color: #333333;
            border-radius: 15px;
            padding: 20px;
            margin: 10px auto;
			width: 90%;
            display: flex;
            align-items: center;
            transition: transform 0.2s ease;
        }
.advantage-block:hover {
	animation: shake 0.5s ease-in-out;
}
 @keyframes shake {
 0% {
transform: translateX(0);
}
 25% {
transform: translateX(-5px);
}
 50% {
transform: translateX(5px);
}
 75% {
transform: translateX(-5px);
}
 100% {
transform: translateX(0);
}
}
.advantage-block img {
	width: 64px;
	height: 64px;
	margin-right: 20px;
}
/* Класс для фиксированного элемента */
.sticky {
	position: fixed;  /* Когда класс добавляется, блок фиксируется */
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000; /* Убедитесь, что блок находится поверх других элементов */
}
/* Сообщение в панели */
.full-width-bar .message {
	font-size: 2rem;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: underline;
}
/* Общие стили для всплывающего окна */

/* Кнопка открытия попапа */

#open-popup {
	padding: 10px 20px;
	font-size: 1rem;
	background-color: #FF0000;
	color: #fff;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	position: relative; /* Чтобы использовать left */
	left: -80px; /* Смещаем кнопку влево */
	font-weight: bold;
}
#apply-button-1 {
	padding: 10px 20px;
	font-size: 1rem;
	background-color: #FF0000;
	color: #fff;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	position: relative; /* Чтобы использовать left */
	font-weight: bold;
}
/* Стиль для меню */
.menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	color: white;
	align-items: center;
	justify-content: center;
	z-index: 1200;
	transition: left 0.5s ease;
}
/* Заголовок для меню */
.menu-header {
	text-align: center;
	margin-bottom: 1rem;
}
/* Открытое меню */
.menu.open {
	left: 0;
}
/* Ссылки в меню */
.menu a {
	color: white;
	text-decoration: none;
	font-size: 2rem;
	margin: 1rem 0;
}
/* Ховер для ссылок в меню */
.menu a:hover {
	text-decoration: underline;
}
/* Кнопка закрытия меню */
.menu-close {
	position: absolute;
	top: 5rem;
	right: 15rem;
	font-size: 2rem;
	cursor: pointer;
	    z-index: 1500;
}
/* Герой секции */
.hero {
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000000;
	text-align: center; /* Отступ от фиксированного заголовка */
	font-family: "Times New Roman", Times, serif;
	background-image: url(img/pravo.jpg);
	padding-top: 50px;
	padding-bottom: 50px;
	background-attachment: fixed; /* Фиксированное положение фона */
	background-position: center; /* Центрируем фон */
	background-repeat: no-repeat; /* Не повторять фон */
	background-size: cover; /* Фон должен покрывать весь контейнер */
	position: relative;
	z-index: 0;
}
/* Герой меню */
.hero-menu {
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	margin-top: 80px; /* Отступ от фиксированного заголовка */
}
/* Контейнер для контента героя */
.hero-content {
	display: flex;
	justify-content: space-between;
	width: 80%;
	max-width: 1200px;
	gap: 20px; /* Добавлено расстояние между блоками */
}
/* Левый блок героя */
.hero-left, .hero-right {
	width: 45%;
	padding: 20px;
	background-color: #30d5c8;
	border-radius: 10px;
	font-size: 16px;
}
/* Заголовок внутри блоков героя */
.hero-left h1, .hero-right h1 {
	font-size: 2rem;
	color: #000000;
	margin-bottom: 20px;
	font-weight: bold;
	text-transform: uppercase;
}
/* Параграфы внутри блоков героя */
.hero-left p, .hero-right p {
	font-size: 1.2rem;
	color: #333333;
	line-height: 1.6;
}
/* Меню внутри героя */
/* Добавляем стили для одноколоночного меню */
.menu-single-column {
  width: 100%;
  padding: 20px;
  text-align: center; /* Центрируем пункты меню */
}

.menu-single-column p {
  margin: 15px 0; /* Отступы между пунктами меню */
  font-size: 1.5rem; /* Размер шрифта */
}


/* На случай, если есть фиксированный заголовок */
section {
  scroll-margin-top: -300px; /* Подстройте под высоту вашего заголовка */
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 768px) {
  .menu-single-column {
    padding: 10px;
  }
  
  .menu-single-column p {
    font-size: 1.2rem;
    margin: 10px 0;
  }
}
.menu-left, .menu-right {
	width: 35%;
	padding: 20px;
	border-radius: 10px;
	font-size: 16px;
	  display: none; /* Скрываем старые колонки */
}
/* Контейнер для контента меню */
.menu-conten {
	display: flex;
	justify-content: space-between;
	width: 80%;
	max-width: 1200px;
	gap: 20px; /* Добавлено расстояние между блоками */
}
/* Горизонтальная линия */
hr {
	width: 100%;
	border: 1px solid white;
}
/* Секция футера */
footer {
	background-color: #333;
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
/* Колонка футера */
.footer-column {
	flex: 1;
	line-height: 1.8;
}
/* Общая секция */
.section {
	padding: 2rem;
	text-align: center;
	margin-top: 80px;
}
/* Важный блок */
.important {
	margin:  auto;
	max-width: 100%;
	background-color: #00AACC;
	padding: 1rem;
}
/* Блок details */
details {
	margin-bottom: 1rem;
	padding: 1rem;
	border: 1px solid #ccc;
	border-radius: 15px;
	max-width: 90%;
	display: block; /* Убедитесь, что элемент блоковый */
	margin: 1rem auto; /* Центровка по горизонтали */
	background-color: #FFFFFF;
	overflow: hidden;
}
/* Ховер для summary внутри details */
details summary:hover {
	color: #FF0000;
	animation: shake 0.5s ease-in-out;
}
@keyframes shake {
 0% {
 transform: translateX(0);
}
 25% {
 transform: translateX(-5px);
}
 50% {
 transform: translateX(5px);
}
 75% {
 transform: translateX(-5px);
}
 100% {
 transform: translateX(0);
}
}
details[open] summary {
	font-weight: bold;
}
details summary {
	cursor: pointer;
	transition: all 0.3s ease-in-out; /* Добавляем плавный переход */
}
/* Убираем стандартный маркер у summary */
summary {
	list-style-type: none; /* Убираем стандартный маркер */
	position: relative;
	padding-left: 20px; /* Добавляем отступ для маркера */
}
 summary::-webkit-details-marker {
 display: none; /* Убираем стандартный маркер Webkit (треугольник) */
}

/* Добавляем свой маркер для summary */
summary::before {
 content: "+";
 position: absolute;
 left: 0;
 top: 0;
}
.container {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding: 10px;
	flex-wrap: wrap;
}
.apply-button {
	background-color: #007BFF; /* Цвет фона */
	color: white; /* Цвет текста */
	border: none; /* Без границ */
	padding: 10px 20px; /* Внутренние отступы */
	font-size: 16px; /* Размер шрифта */
	border-radius: 5px; /* Скругленные углы */
	cursor: pointer; /* Указатель при наведении */
	margin-top: 20px; /* Отступ сверху */
	transition: background-color 0.3s ease; /* Анимация при наведении */
}
.apply-button:hover {
	background-color: #0056b3; /* Темнее при наведении */
}
.containerblok {
	display: flex; /* Включаем Flexbox */
	justify-content: space-between; /* Распределяем пространство между блоками */
	gap: 20px; /* Расстояние между блоками */
}
@media (max-width: 768px) {
 .containerblok {
 flex-direction: column; /* Блоки располагаются вертикально */
 gap: 10px; /* Уменьшаем расстояние между блоками */
}
 .advantages-section h1 {
 font-size: 1.4rem;
 font-family: "Times New Roman", Times, serif;
 margin-bottom: 40px;
}
}
.text-block {
	width: 45%;
	opacity: 0;
	transform: translateX(100px); /* Исходное положение для эффекта */
	transition: opacity 1s ease, transform 1s ease;
	background-color: rgba(255, 255, 255, 0.1); /* Белый фон с 50% прозрачностью */
	padding: 20px; /* Отступы: сверху 20px, справа 15px, снизу 25px, слева 10px */
	border-radius: 15px;
	font-size: 1.5rem;
	margin: 20px;
}
}
.text-block {
	width: 45%;
	opacity: 0;
	transform: translateX(100px); /* Исходное положение для эффекта */
	transition: opacity 1s ease, transform 1s ease;
	background-color: rgba(255, 255, 255, 0.1); /* Белый фон с 50% прозрачностью */
	padding: 20px; /* Отступы: сверху 20px, справа 15px, снизу 25px, слева 10px */
	border-radius: 15px;
	font-size: 1.5rem;
	margin: 20px;
}
.text-block p {
	font-size: 18px;
}




/* Адаптивность для мобильных */
@media (max-width: 768px) {
 .text-block {
 width: 80%;
}
}

/* Мобильная версия: экран до 768px */
@media (max-width: 768px) {
 .hero {
 padding-top: 250px;
 padding-bottom: 250px;
}
 .advantage-block {
 font-size: 1rem;
     width: 80%;
}

 .hero-menu {
 flex-direction: column;
 align-items: center;
     width: 80%;
}
 .menu-left, .menu-right {
 width: 100%;
 margin-bottom: 1rem;
}
 .hero-content {
 align-items: center;
 flex-direction: column;
}
 .hero-left, .hero-right {
 width: 100%;
 margin-bottom: 1rem;
}
}


/* Мобильная версия: экран до 768px */
@media (max-width: 768px) {
 .full-width-bar {
 flex-direction: column; /* Меняем направление на вертикальное */
 align-items: flex-start; /* Выравниваем элементы по левому краю */
}
 .full-width-bar .message {
 font-size: 1.2rem; /* Уменьшаем размер текста */
}
 #open-popup {
 width: 80%; /* Кнопка занимает всю ширину */
 text-align: center; /* Текст кнопки по центру */
 margin-top: 10px; /* Отступ сверху */
     left: 20px;
 
}
.menu-toggle {
 font-size: 1.2rem; /* Уменьшаем размер текста на маленьких экранах */
 top: 10px; /* Можно отрегулировать для лучшего видимого положения */
}
}
/* Адаптация для мобильных */
@media (max-width: 768px) {
  .title {
    font-size: 1.2rem;
    max-width: 200px; /* Ограничиваем ширину */
  }
}

/* Адаптация для маленьких мобильных */
@media (max-width: 480px) {
  .title {
    font-size: 1rem;
    max-width: 150px;
    white-space: normal; /* Разрешаем перенос */
  }