.ns-section-about {
	padding: 10px 0;
	background-color: #b8def5;
}

.ns-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ns-header {
	font-family: "BebasNeue", cursive;
	font-weight: 400;
	font-size: 40px;
	line-height: 48px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 45px;
}

.ns-about-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.ns-about-text {
	flex: 1;
	min-width: 300px;
	color: #2c2c2c;
}

.ns-about-text p {
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	line-height: 126%;
	margin-bottom: 20px;
}

.ns-about-text p:last-child {
	margin-bottom: 0;
}

.ns-about-image {
	flex: 0 0 auto;
}

.ns-about-image img {
	max-width: 350px;
	height: auto;
}

/* Мобильная адаптация */
@media screen and (max-width: 768px) {
	.ns-about-wrapper {
		flex-direction: column;
		text-align: center;
	}

	.ns-about-image {
		order: -1;
	}

	.ns-header {
		font-size: 34px;
		line-height: 42px;
	}
}






.ns-ingredients-section {
	padding: 80px 0;
	background-color: #b8def5;
}

.ns-ingredients-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ns-ingredients-header {
	font-family: "BebasNeue", cursive;
	font-weight: 400;
	font-size: 40px;
	line-height: 48px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 50px;
}

.ns-ingredients-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: center;
}

.ns-ingredient-card {
	flex: 1;
	min-width: 300px;
	max-width: 580px;
	background: #1d83c1;
	color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ns-ingredient-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
}

.ns-ingredient-img {
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.ns-ingredient-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.ns-ingredient-card:hover .ns-ingredient-img img {
	transform: scale(1.08);
}

.ns-ingredient-content {
	padding: 25px 30px;
	flex: 1;
}

.ns-ingredient-title {
	font-family: "Raleway", sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.ns-ingredient-content p {
	font-family: "Raleway", sans-serif;
	font-size: 17px;
	line-height: 150%;
	color: #e6f5ff;
	margin-bottom: 14px;
}

.ns-ingredient-content p:last-child {
	margin-bottom: 0;
}

/* Мобильная адаптация */
@media screen and (max-width: 768px) {
	.ns-ingredients-grid {
		gap: 20px;
	}

	.ns-ingredient-card {
		min-width: 100%;
		max-width: none;
	}

	.ns-ingredient-img {
		height: 180px;
	}

	.ns-ingredients-header {
		font-size: 34px;
		line-height: 42px;
	}
}

@media screen and (max-width: 480px) {
	.ns-ingredient-content {
		padding: 20px;
	}

	.ns-ingredient-title {
		font-size: 20px;
	}

	.ns-ingredient-content p {
		font-size: 16px;
		line-height: 155%;
	}
}






.ns-leaflet-section {
	padding: 80px 0;
	background-color: #b8def5;
}

.ns-leaflet-container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
}

.ns-leaflet-header {
	font-family: "BebasNeue", cursive;
	font-weight: 400;
	font-size: 40px;
	line-height: 48px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 40px;
}

.ns-leaflet-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	padding: 30px;
}

.ns-leaflet-item {
	margin-bottom: 24px;
}

.ns-leaflet-item:last-child {
	margin-bottom: 0;
}

.ns-leaflet-title {
	font-family: "Raleway", sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: #1d83c1;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ns-leaflet-card p,
.ns-leaflet-card ul {
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	line-height: 150%;
	color: #2c2c2c;
	margin-bottom: 12px;
}

.ns-leaflet-list {
	padding-left: 20px;
}

.ns-leaflet-list li {
	margin-bottom: 8px;
}

.ns-leaflet-list li::before {
	content: "•";
	color: #1d83c1;
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

/* Мобильная адаптация */
@media screen and (max-width: 768px) {
	.ns-leaflet-header {
		font-size: 34px;
		line-height: 42px;
	}

	.ns-leaflet-card {
		padding: 25px;
	}

	.ns-leaflet-title {
		font-size: 18px;
	}

	.ns-leaflet-card p,
	.ns-leaflet-card ul {
		font-size: 17px;
		line-height: 155%;
	}
}

@media screen and (max-width: 480px) {
	.ns-leaflet-card {
		padding: 20px;
	}

	.ns-leaflet-title {
		font-size: 17px;
	}

	.ns-leaflet-card p,
	.ns-leaflet-card ul {
		font-size: 16px;
	}
}





.nsl-expert-reviews {
	padding: 100px 0;
	background-color: #b8def5;
}

.nsl-expert-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.nsl-expert-header {
	font-family: "BebasNeue", cursive;
	font-weight: 400;
	font-size: 40px;
	line-height: 48px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 80px;
}

.nsl-expert-review {
	display: flex;
	gap: 50px;
	align-items: flex-start;
	margin-bottom: 90px;
}

.nsl-expert-review:last-child {
	margin-bottom: 0;
}

/* Фото слева */
.nsl-expert-review-left {
	flex-direction: row;
}

/* Фото справа */
.nsl-expert-review-right {
	flex-direction: row-reverse;
	justify-content: space-between;
}

.nsl-expert-photo {
	flex: 0 0 231px;
	width: 231px;
	height: 237px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	border: 2px solid #1d83c1;
}

.nsl-expert-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nsl-expert-content {
	flex: 1;
	background: #fff;
	padding: 30px 34px;
	border-radius: 14px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
	position: relative;
}

.nsl-expert-quote {
	font-family: "Raleway", sans-serif;
	font-size: 19px;
	font-style: italic;
	line-height: 155%;
	color: #2c2c2c;
	margin: 0 0 20px 0;
}

.nsl-expert-quote::before {
	content: """;
	font-family: "BebasNeue", cursive;
	font-size: 60px;
	color: #1d83c1;
	opacity: 0.1;
	position: absolute;
	top: 12px;
	left: 20px;
	line-height: 1;
	pointer-events: none;
}

.nsl-expert-name {
	font-family: "Raleway", sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: #1d83c1;
	margin: 0 0 6px 0;
}

.nsl-expert-title {
	font-family: "Raleway", sans-serif;
	font-size: 15px;
	color: #2c2c2c;
	line-height: 145%;
	margin: 0;
}

/* === МОБИЛЬНЫЕ УСТРОЙСТВА === */
@media screen and (max-width: 768px) {
	.nsl-expert-review,
	.nsl-expert-review-right {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.nsl-expert-photo {
		margin-bottom: 20px;
	}

	.nsl-expert-content {
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}

	.nsl-expert-name {
		text-align: center;
	}

	.nsl-expert-title {
		text-align: center;
	}
}

/* === Очень узкие экраны === */
@media screen and (max-width: 480px) {
	.nsl-expert-header {
		font-size: 34px;
		line-height: 42px;
	}

	.nsl-expert-review {
		gap: 20px;
		margin-bottom: 60px;
	}

	.nsl-expert-content {
		padding: 26px 20px;
		font-size: 16px;
	}

	.nsl-expert-quote {
		font-size: 17px;
		line-height: 155%;
	}

	.nsl-expert-name {
		font-size: 17px;
	}

	.nsl-expert-title {
		font-size: 14px;
	}
}








.nsl-cust-reviews {
	padding: 90px 0;
	background-color: #b8def5;
}

.nsl-cust-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.nsl-cust-header {
	font-family: "BebasNeue", cursive;
	font-weight: 400;
	font-size: 40px;
	line-height: 48px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 20px;
}

.nsl-cust-subheader {
	font-family: "Raleway", sans-serif;
	font-size: 19px;
	line-height: 155%;
	color: #2c2c2c;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 10px;
}

.nsl-cust-list {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.nsl-cust-item {
	background: #fff;
	padding: 28px 32px;
	border-radius: 14px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.nsl-cust-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
	flex-wrap: wrap;
	gap: 10px;
}

.nsl-cust-meta {
	font-family: "Raleway", sans-serif;
	font-size: 17px;
	color: #2c2c2c;
}

.nsl-cust-name {
	color: #1d83c1;
	font-weight: 700;
}

.nsl-cust-age {
	color: #666;
}

.nsl-cust-rating {
	font-family: "Arial", sans-serif;
	font-size: 18px;
	letter-spacing: 2px;
	color: #1d83c1;
	min-width: 90px;
	text-align: right;
}

.nsl-cust-quote {
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	line-height: 155%;
	color: #2c2c2c;
	font-style: normal;
	margin: 0;
}

/* Мобильная адаптация */
@media screen and (max-width: 768px) {
	.nsl-cust-header {
		font-size: 34px;
		line-height: 42px;
	}

	.nsl-cust-subheader {
		font-size: 17px;
		line-height: 155%;
	}

	.nsl-cust-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.nsl-cust-rating {
		text-align: left;
		min-width: auto;
	}
}

@media screen and (max-width: 480px) {
	.nsl-cust-item {
		padding: 24px 20px;
	}

	.nsl-cust-meta {
		font-size: 16px;
	}

	.nsl-cust-quote {
		font-size: 16px;
		line-height: 155%;
	}

	.nsl-cust-rating {
		font-size: 16px;
	}
}








.nsl-faq-section {
	padding: 90px 0;
	background-color: #b8def5;
}

.nsl-faq-container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
}

.nsl-faq-header {
	font-family: "BebasNeue", cursive;
	font-weight: 400;
	font-size: 40px;
	line-height: 48px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 20px;
}

.nsl-faq-subheader {
	font-family: "Raleway", sans-serif;
	font-size: 19px;
	line-height: 155%;
	color: #2c2c2c;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 50px;
}

.nsl-faq-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.nsl-faq-item {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.nsl-faq-question {
	font-family: "Raleway", sans-serif;
	font-size: 19px;
	font-weight: 600;
	color: #1d83c1;
	padding: 20px 30px;
	background: #f8fbfe;
	border-bottom: 1px solid #e0f0ff;
	cursor: default;
}

.nsl-faq-answer {
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	line-height: 155%;
	color: #2c2c2c;
	padding: 24px 30px;
}

/* Мобильная адаптация */
@media screen and (max-width: 768px) {
	.nsl-faq-header {
		font-size: 34px;
		line-height: 42px;
	}

	.nsl-faq-subheader {
		font-size: 17px;
		line-height: 155%;
	}

	.nsl-faq-question {
		font-size: 18px;
		padding: 18px 24px;
	}

	.nsl-faq-answer {
		font-size: 17px;
		padding: 20px 24px;
	}
}

@media screen and (max-width: 480px) {
	.nsl-faq-header {
		font-size: 30px;
		line-height: 38px;
	}

	.nsl-faq-subheader {
		font-size: 16px;
	}

	.nsl-faq-question {
		font-size: 17px;
	}

	.nsl-faq-answer {
		font-size: 16px;
		line-height: 155%;
	}
}



/* === СТИЛИ ДЛЯ ФОРМЫ ВНУТРИ .how-form__main — БЕЗ ИЗМЕНЕНИЯ КЛАССОВ === */

/* Применяем стили только к форме внутри .how-form__main */
.how-form__main form {
    margin: 0;
    width: 100%;
}

/* Стилизуем поля ввода: name и phone */
.how-form__main .form__body input[name="name"],
.how-form__main .form__body input[name="phone"] {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    color: #000;
    width: 100%;
    height: 60px;
    border: 2px solid #1d83c1;
    border-radius: 10px;
    background: transparent;
    text-align: center;
    margin-bottom: 12px;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

/* Стилизуем select — под общий стиль формы */
.how-form__main .form__body .country_select {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    color: #000;
    width: 100%;
    height: 60px;
    border: 2px solid #1d83c1;
    border-radius: 10px;
    background: #fff;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d83c1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding: 0 20px;
    margin-bottom: 12px;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Убираем стандартные стрелки у select в некоторых браузерах */
.how-form__main .form__body .country_select::-ms-expand {
    display: none;
}

/* Кнопка формы: "Ordina ora" */
.how-form__main form button[type="submit"] {
    display: block;
    width: 100%;
    height: 60px;
    background: #2e45b1;
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.how-form__main form button[type="submit"]:hover {
    background: #283c9b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 69, 177, 0.2);
}

/* Адаптивность: мобильные устройства */
@media screen and (max-width: 480px) {
    .how-form__main .form__body input[name="name"],
    .how-form__main .form__body input[name="phone"],
    .how-form__main .form__body .country_select {
        font-size: 17px;
        height: 56px;
    }

    .how-form__main form button[type="submit"] {
        font-size: 17px;
        height: 56px;
    }
}







.nsl-mechanism-section {
	padding: 100px 0;
	background-color: #b8def5;
}

.nsl-mechanism-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.nsl-mechanism-header {
	font-family: "BebasNeue", cursive;
	font-weight: 400;
	font-size: 40px;
	line-height: 48px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 30px;
}

.nsl-mechanism-text {
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	line-height: 130%;
	color: #2c2c2c;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 60px;
}

.nsl-mechanism-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.nsl-mechanism-card {
	background: #1d83c1;
	color: #fff;
	border-radius: 14px;
	padding: 28px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nsl-mechanism-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.nsl-mechanism-icon {
	width: 70px;
	height: 70px;
	margin-bottom: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nsl-mechanism-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.nsl-mechanism-title {
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.nsl-mechanism-desc {
	font-family: "Raleway", sans-serif;
	font-size: 17px;
	line-height: 145%;
	color: #e6f5ff;
	margin: 0;
}

/* Мобильная адаптация */
@media screen and (max-width: 768px) {
	.nsl-mechanism-header {
		font-size: 34px;
		line-height: 42px;
	}

	.nsl-mechanism-text {
		font-size: 18px;
		line-height: 145%;
		margin-bottom: 50px;
	}

	.nsl-mechanism-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}

@media screen and (max-width: 480px) {
	.nsl-mechanism-section {
		padding: 80px 0;
	}

	.nsl-mechanism-header {
		font-size: 30px;
		line-height: 38px;
	}

	.nsl-mechanism-text {
		font-size: 17px;
	}

	.nsl-mechanism-card {
		padding: 24px 16px;
	}

	.nsl-mechanism-icon {
		width: 60px;
		height: 60px;
	}

	.nsl-mechanism-title {
		font-size: 18px;
	}

	.nsl-mechanism-desc {
		font-size: 15px;
		line-height: 145%;
	}
}