/* Hero Section */
.hero {
	background:
		linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.474)),
		url("/assets/images/1.webp") center center/cover no-repeat;
	color: white;
	padding: 80px 0;
	text-align: center;
}

.hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
	font-weight: bold;
}

.hero-subtitle {
	font-size: 24px;
	margin-bottom: 30px;
	color: #e2e8f0;
}

.hero-price {
	font-size: 64px;
	font-weight: bold;
	color: #fed7d7;
	margin-bottom: 40px;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-primary {
	background: #e53e3e;
	color: white;
	padding: 18px 35px;
	border: none;
	border-radius: 5px;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s;
}

.btn-primary:hover {
	background: #c53030;
	transform: translateY(-2px);
}

/* Advantages Section */
.advantages {
	padding: 80px 0;
	background: #f7fafc;
}

.advantages h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 60px;
	color: #2d3748;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.advantage-card {
	background: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.advantage-card:hover {
	transform: translateY(-5px);
}

.advantage-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.advantage-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #2d3748;
}

.advantage-card p {
	color: #718096;
	font-size: 16px;
}

/* Prices Section */
.prices {
	padding: 80px 0;
	background: white;
}

.prices h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 60px;
	color: #2d3748;
}

.prices-table {
	max-width: 600px;
	margin: 0 auto 30px;
	border-collapse: collapse;
	width: 100%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

.prices-table th,
.prices-table td {
	padding: 20px;
	text-align: left;
	border-bottom: 1px solid #e2e8f0;
}

.prices-table th {
	background: #2d3748;
	color: white;
	font-weight: bold;
}

.prices-table tr:nth-child(even) {
	background: #f7fafc;
}

.price-value {
	font-weight: bold;
	color: #e53e3e;
	font-size: 18px;
}

.prices-note {
	text-align: center;
	color: #718096;
	font-style: italic;
	max-width: 600px;
	margin: 0 auto 30px;
}

.prices-button {
	text-align: center;
}

/* How We Work Section */
.how-we-work {
	padding: 80px 0;
	background: #f7fafc;
}

.how-we-work h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 60px;
	color: #2d3748;
}

.work-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: flex-start;
}

.work-image {
	width: 100%;
	height: 350px;
	background: #a0aec0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4a5568;
	font-size: 18px;
}

.work-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.work-steps {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.work-step {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.work-step-number {
	background: #e53e3e;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	flex-shrink: 0;
}

.work-step-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #2d3748;
	font-weight: bold;
}

.work-step-content p {
	color: #718096;
	font-size: 16px;
	line-height: 1.6;
}

/* About Section */
.about {
	padding: 80px 0;
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-text h2 {
	font-size: 36px;
	margin-bottom: 30px;
	color: #2d3748;
}

.about-text p {
	font-size: 18px;
	color: #718096;
	margin-bottom: 20px;
	line-height: 1.8;
}

.about-image {
	width: 100%;
	height: 300px;
	background: #a0aec0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4a5568;
	font-size: 18px;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: #2d3748;
	color: white;
	text-align: center;
}

.contact h2 {
	font-size: 36px;
	margin-bottom: 30px;
}

.contact-phone {
	font-size: 48px;
	font-weight: bold;
	color: #fed7d7;
	margin-bottom: 30px;
	text-decoration: none;
}

.contact-info {
	font-size: 20px;
	margin-bottom: 40px;
	color: #e2e8f0;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.hero-price {
		font-size: 48px;
	}

	.work-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-phone {
		font-size: 26px;
	}
}
