/* General Styles */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	color: #333;
}
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
/* Header */
header {
	background: #007BFF;
	color: #fff;
	padding: 20px 0;
}
header .logo {
	font-size: 24px;
	font-weight: bold;
}
header nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
}
header nav ul li a {
	color: #fff;
	text-decoration: none;
}
.cta-button {
	background: #28a745;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
}
.cta-button.secondary {
	background: #ffc107;
}
/* Hero Section */
.hero {
	background: url('hero-bg.jpg') no-repeat center center/cover;
	color: #fff;
	padding: 100px 0;
	text-align: center;
}
.hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
}
.hero p {
	font-size: 18px;
	margin-bottom: 30px;
}
.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}
/* Services Section */
.services {
	padding: 60px 0;
	text-align: center;
}
.services h2 {
	font-size: 36px;
	margin-bottom: 40px;
}
.service-cards {
	display: flex;
	gap: 20px;
}
.card {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 10px;
	flex: 1;
}
.card img {
	width: 50px;
	margin-bottom: 20px;
}
/* Testimonials Section */
.testimonials {
	background: #f1f1f1;
	padding: 60px 0;
	text-align: center;
}
.testimonials h2 {
	font-size: 36px;
	margin-bottom: 40px;
}
.testimonial-carousel {
	display: flex;
	gap: 20px;
	justify-content: center;
}
.testimonial {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	max-width: 300px;
}
/* Footer */
footer {
	background: #333;
	color: #fff;
	padding: 40px 0;
	text-align: center;
}
footer .footer-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}
footer .footer-links a {
	color: #fff;
	text-decoration: none;
}
footer .social-media {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}
footer .social-media a {
	color: #fff;
	text-decoration: none;
}
