html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Lato', sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	color: #333333;
	background-color: #f8f9fa;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

h1,
h2,
h3 {
	font-family: 'Playfair Display', serif;
	color: #212529;
	line-height: 1.2;
}

.content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-block {
	padding: 80px 0;
}

.section-image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.header {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.logo {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	text-decoration: none;
	color: #4a90e2;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 30px;
}

.nav-link {
	text-decoration: none;
	color: #555555;
	font-weight: 400;
	font-size: 16px;
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #4a90e2;
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

/* Block 1: Hero Section */
.block-1-hero {
	background: linear-gradient(135deg, #e8f5ff 0%, #d1e5ff 100%);
	text-align: center;
	padding: 120px 0;
}

.hero-text-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero-text-content h1 {
	font-size: 56px;
	margin-bottom: 20px;
}

.hero-text-content p {
	font-size: 18px;
	line-height: 1.8;
	color: #555555;
}

/* Block 2 */
.block-2 {
	background-color: #ffffff;
}

.block-2 .content-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
}

.block-2-image {
	flex: 1;
}

.block-2-text {
	flex: 1;
}

/* Block 3 */
.block-3 {
	background-color: #f0f4f8;
}

.block-3 .content-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
	flex-direction: row-reverse;
}

.block-3-text {
	flex: 1;
}

.block-3-image {
	flex: 1;
}

/* Block 4: Benefits Grid */
.block-4-benefits {
	background: #ffffff;
}

.block-4-benefits h2 {
	text-align: center;
	margin-bottom: 50px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.benefit-item {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

.icon-small {
	font-size: 40px;
	color: #4a90e2;
	margin-bottom: 20px;
}

.small-text {
	font-size: 14px;
	color: #777777;
	margin-top: 40px;
	text-align: center;
}

/* Block 5 */
.block-5 {
	background: linear-gradient(135deg, #f0f4f8 0%, #d8e2ed 100%);
}

.block-5 .content-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
}

.block-5-text {
	flex: 1;
}

.block-5-image {
	flex: 1;
}

/* Block 6: Process */
.block-6-process {
	background-color: #ffffff;
}

.block-6-process h2 {
	text-align: center;
	margin-bottom: 50px;
}

.process-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.process-item {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
	font-family: 'Playfair Display', serif;
	font-size: 40px;
	font-weight: 700;
	color: #4a90e2;
	margin-bottom: 10px;
}

/* Block 7: Reviews */
.block-7-reviews {
	background: #f0f4f8;
}

.block-7-reviews .content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.review-box {
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.box-expert {
	background-color: #ffffff;
}

.box-user {
	background-color: #e8f5ff;
}

/* Block 8: Comparison Table */
.block-8-comparison {
	background-color: #ffffff;
}

.block-8-comparison h2 {
	text-align: center;
	margin-bottom: 30px;
}

.table-container {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 700px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
	background-color: #4a90e2;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
}

.comparison-table tr:nth-child(even) {
	background-color: #f8f9fa;
}

/* Block 9: Tips */
.block-9-tips {
	background: linear-gradient(135deg, #d1e5ff 0%, #e8f5ff 100%);
}

.block-9-tips h2 {
	text-align: center;
	margin-bottom: 50px;
}

.tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.tip-item {
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.icon-large {
	font-size: 50px;
	color: #4a90e2;
	margin-bottom: 20px;
}

/* Block 10: FAQ */
.block-10-faq {
	background-color: #ffffff;
}

.block-10-faq h2 {
	text-align: center;
	margin-bottom: 50px;
}

.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid #e0e0e0;
	padding: 20px 0;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-question h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.faq-question:hover h3 {
	color: #4a90e2;
}

.arrow-icon {
	font-size: 14px;
	color: #777777;
	transition: transform 0.3s ease;
}

.faq-item.active .arrow-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding-top: 20px;
}

/* Footer */
.footer {
	background-color: #212529;
	color: #a0a0a0;
	text-align: center;
	padding: 30px 0;
}

/* Responsividade */
@media (max-width: 768px) {
	.navbar {
		flex-direction: column;
	}
	.nav-links {
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 15px;
	}
	.hero-text-content h1 {
		font-size: 40px;
	}
	.section-block {
		padding: 50px 0;
	}
	.block-2 .content-wrapper,
	.block-3 .content-wrapper,
	.block-5 .content-wrapper {
		flex-direction: column;
	}
	.block-3 .content-wrapper {
		flex-direction: column;
	}
	.block-7-reviews .content-wrapper {
		grid-template-columns: 1fr;
	}
	.benefits-grid,
	.process-list,
	.tips-grid {
		grid-template-columns: 1fr;
	}
}
.form-wrap {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.form-container {
	background-color: #f0f4f8;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.08), -10px -10px 30px rgba(255, 255, 255, 0.8);
	width: 100%;
	max-width: 450px;
	transition: all 0.4s ease-in-out;
}

.form-container:hover {
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.12), -15px -15px 40px rgba(255, 255, 255, 1);
}

.form-container h2 {
	text-align: center;
	font-size: 28px;
	color: #4a90e2;
	margin-bottom: 30px;
}

.input-group {
	position: relative;
	margin-bottom: 35px;
}

.input-group label {
	color: #777;
	transition: all 0.3s ease;
	display: block;
	margin-bottom: 10px;
}

.input-group input {
	width: 100%;
	padding: 15px 15px;
	border: none;
	background-color: #e8f5ff;
	border-radius: 10px;
	box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.05), inset -5px -5px 10px rgba(255, 255, 255, 0.5);
	outline: none;
	font-size: 16px;
	color: #333;
	transition: all 0.3s ease;
}

.input-group input:focus {
	box-shadow: inset 3px 3px 7px rgba(0, 0, 0, 0.08), inset -3px -3px 7px rgba(255, 255, 255, 0.8);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
	top: 50px;
	left: 0;
	transform: translateY(-110%);
	font-size: 14px;
	color: #4a90e2;
	background: #f0f4f8;
	padding: 0 5px;
}

.submit-button {
	display: block;
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 15px;
	background: linear-gradient(135deg, #4a90e2, #5c7ae5);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1), -6px -6px 15px rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease;
}

.submit-button:hover {
	box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15), -8px -8px 20px rgba(255, 255, 255, 0.7);
	transform: translateY(-2px);
}

.submit-button:active {
	transform: translateY(0);
	box-shadow: inset 3px 3px 7px rgba(0, 0, 0, 0.1), inset -3px -3px 7px rgba(255, 255, 255, 0.7);
}

/* Адаптивные стили для формы */
@media (max-width: 768px) {
	.form-container {
		box-sizing: content-box;
	}
	.block-3 .content-wrapper {
		flex-direction: column;
	}

	.form-wrap {
		margin-top: 40px;
		width: 100%;
	}
}
ul {
	padding: 0;
}