* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	background-color: white;
}

.logo img {
	width: 80px;
	height: auto;
	display: block;
}

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

.nav-links a {
	color: black;
	text-decoration: none;
	font-size: 16px;
}

.book-btn {
	text-decoration: none;
	background-color: white;
	color: black;
	padding: 10px 18px;
	border-radius: 6px;
	font-weight: bold;
}


.hero {
	height: 90vh;
	background: linear-gradient(to right, #111, #222);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px;
}

.hero-content {
	max-width: 700px;
}

.hero h1 {
	font-size: 20px;
	margin-bottom: 30px;
}


.hero p {
	font-size: 20px;
	margin-bottom: 30px;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.primary-btn, .secondary-btn {
	text-decoration: none;
	padding: 14px 24px;
	border-radius: 6px;
	font-weight: bold;
}

.primary-btn {
	background-color: white;
	color: black;
}

.secondary-btn {
	border: 1px solid white;
	color: white;
}




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

.services {
	padding: 80px 40px;
	background-color: #f4f4f4;
	text-align: center;
}

.services-header h2 {
	font-size: 36px;
	margin-bottom: 10px;
	color: #111;
}

.services-header p {
	font-size: 18px;
	color: #555;
	margin-bottom: 40px;
}


.service-grid {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.services-grid {
    display: flex;
    justify-content: center; 
    gap: 30px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.service-card {
	backgroud-color: #f9f9f9;
	padding: 25px;
	width: 300px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


.service-card h3 {
	margin-bottom: 15px;
}


.service-card p {
	color: #666;
	margin-bottom: 16px;
	line-height: 1.5;
}

.service-card span {
	font-weight: bold;
	margin-top: 10px;
	display: block;
	color: #111;
}

.services-section {
	text-align: center;
	padding: 60px 20px;

}

.about {
	padding: 80px 40px;
	background-color: #111;
	color: white;
	text-align: center;
}

.about-text {
	max-width: 700px;
	margin: 0 auto 50px;
}

.about-text h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

.about-text p {
	font-size: 18px;
	line-height: 1.7;
	color: #ccc;
}

.about-features {
	display: flex;
	justify-content: center;
	gap: 25px;
	glex-wrap: wrap;
}

.feature-box {
	background-color: #1c1c1c;
	padding: 30px;
	width: 300px;
	border-radius: 10px;
}

.feature-box h3 {
	margin-bottom: 15px;
	font-size: 22px;
}

.feature-box p {
	color: #bbb;
	line-height: 1.6;
}




.testimonials {
	padding: 80px 40px;
	background-color: #f8f8f8;
	text-align: center;
}

.testimonials-header h2 {
	font-size: 36px;
	margin-bottom: 10px;
	color: #111;
}

.testimonials-header p {
	font-size: 18px;
	color: #666;
	margin-bottom: 40px;
}

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

.testimonial-card {
	background-color: white;
	padding: 30px;
	width: 300px;
	border-radius: 10px;
}

.testimonial-card p {
	color: #444;
	linie-height: 1.6;
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-card h4 {
	color: #111;
	font-size: 16px;
}





.final-cta {
	padding: 100px 40px;
	background: linear-gradient(to right, #111, #222);
	color: white;
	text-align: center;
}

.final-cta h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.final-cta p {
	font-size: 18px;
	color: #ccc;
	margin-bottom: 30px;
	line-height: 1.6;
}

.cta-btn {
	text-decoration: none;
	background-color: white;
	color: black;
	padding: 14px 24px;
	border-radius: 6px;
	font-weight: bold;
}





.footer {
	background-color: #0b0b0b;
	color: white;
	padding: 50px 20px 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.footer-brand, .footer-info, .footer-hours {
	max-width: 300px;
}

.footer h3, .footer h4 {
	margin-bottom: 15px;
}

.footer p {
	color: #bbb;
	line-height: 1.8;
}

.footer-bottom {
	border-top: 1px solid #222;
	padding-top: 20px;
	text-align: center;
}

.footer-bottom p {
	color: #888;
}
