div,
section,
main {
	box-sizing: border-box;
}
:root {
	--primary: #0059ab;
	--background: #f9fafa;
	--text: #333;
	--accent: #f44336;
	--radius: 12px;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body {
	margin: 0;
	font-family: "Segoe UI", sans-serif;
	background: var(--background);
	color: var(--text);
	line-height: 1.6;
}

header {
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.5rem 2rem;
	text-align: center;

	> div {
		margin: 0;
		font-size: 2rem;
		color: var(--primary);
	}
}

.container {
	max-width: 1100px;
	margin: auto;
	padding: 2rem;
}

.hero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: var(--radius);
	padding: 2rem;
	gap: 2rem;
	box-shadow: var(--shadow);

	.hero-image {
        flex: 0 0 calc(50% - 1rem);

        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
        }
	}

	.hero-content {
		flex: 0 0 calc(50% - 1rem);

		h1 {
			font-size: 1.75rem;
			margin-bottom: 1rem;
		}

		p {
			font-size: 1rem;
			margin-bottom: 1.5rem;
		}
	}
}

.hero-content .cta-button {
	background: var(--primary);
	color: white;
	border: none;
	padding: 0.9rem 1.5rem;
	font-size: 1rem;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background 0.3s;
	text-decoration: none;
	display: inline-block;

	&:hover {
		background: #005ea3;
	}
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;

	.feature {
		background: #fff;
		padding: 1.5rem;
		border-radius: var(--radius);
		box-shadow: var(--shadow);
		text-align: center;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		cursor: default;

		&:hover {
			transform: translateY(-8px) scale(1.02);
			box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
		}

		i {
			font-size: 2rem;
			color: var(--accent);
			margin-bottom: 1rem;
		}

		h3 {
			margin-bottom: 0.5rem;
			font-size: 1.2rem;
		}
	}
}

.testimonials {
	margin-top: 2rem;

	.section-title {
		text-align: center;
		font-size: 1.8rem;
		margin-top: 3rem;
		margin-bottom: 1.5rem;
		color: var(--primary);
	}
}

.testimonial-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial {
	background: #fff;
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
	font-style: italic;
	position: relative;

	p {
		margin-bottom: 1rem;
		font-size: 1rem;
	}

	.author {
		text-align: right;
		font-weight: bold;
		font-style: normal;
		color: #666;
	}
}

.steps {
	margin-top: 4rem;

	.section-title {
		text-align: center;
		font-size: 1.8rem;
		margin-bottom: 2rem;
		color: var(--primary);
	}

	.step-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 2rem;
		text-align: center;
	}

	.step {
		background: #fff;
		padding: 1.5rem;
		border-radius: var(--radius);
		box-shadow: var(--shadow);
		transition: transform 0.3s ease, box-shadow 0.3s ease;

		&:hover {
			transform: translateY(-6px);
			box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
		}

		i {
			font-size: 2rem;
			color: var(--accent);
			margin-bottom: 1rem;
		}

		h3 {
			font-size: 1.2rem;
			margin-bottom: 0.5rem;
		}

		p {
			font-size: 1rem;
			color: #555;
		}
	}
}

.benefits {
	margin-top: 3rem;

	.section-title {
		text-align: center;
		font-size: 1.8rem;
		margin-top: 3rem;
		margin-bottom: 1.5rem;
		color: var(--primary);
	}

	.benefit-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
		margin-top: 1.5rem;

		.benefit {
			background: #fff;
			padding: 1.5rem;
			border-radius: var(--radius);
			box-shadow: var(--shadow);
			text-align: center;
			transition: transform 0.3s ease, box-shadow 0.3s ease;
			cursor: default;

			&:hover {
				transform: translateY(-8px) scale(1.02);
				box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
			}

			i {
				font-size: 2rem;
				color: var(--primary);
				margin-bottom: 1rem;
			}

			h3 {
				font-size: 1.2rem;
				margin-bottom: 0.5rem;
			}

			p {
				font-size: 1rem;
				color: #555;
			}
		}
	}
}

footer {
	text-align: center;
	font-size: 0.9rem;
	color: #888;
	margin: 2rem auto;
}

@media (max-width: 768px) {
	.hero {
		flex-direction: column;
		text-align: center;

		.hero-content {
			padding: 0;
		}
	}
}

@media (max-width: 992px) {
	.benefit-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.benefit-grid {
		grid-template-columns: 1fr;
	}
}
