/* General Styles */
:root {
	--color-bg: #FF6B6B;
	--color-accent: #FF9F1C;
	--color-text: #2E2E2E;
	--color-button: #06D6A0;
	--color-bg-light: #FFE8D6;
	--font-main: 'Arial', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

body {
	font-family: var(--font-main);
	color: var(--color-text);
	background-color: #fff;
	line-height: 1.6;
}

section[id] {
	scroll-margin-top: 40px;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	line-height: 1.2;
}

p {
	margin-bottom: 1.5rem;
}

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--color-bg);
}

img {
	max-width: 100%;
	height: auto;
}

/* Header & Navigation */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 15px;
}

.logo a {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--color-bg);
	text-decoration: none;
}

.menu {
	display: flex;
	list-style: none;
}

.menu li {
	margin-left: 1.5rem;
}

.menu a {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.menu a:hover {
	color: var(--color-accent);
}

.cta-button {
	background-color: var(--color-button);
	color: white !important;
	padding: 0.5rem 1rem;
	border-radius: 30px;
	transition: background-color 0.3s;
}

.cta-button:hover {
	background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
}

.menu-icon span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--color-text);
	margin: 5px 0;
	transition: all 0.3s;
}

@media (max-width: 768px) {
	.menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background-color: white;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		z-index: 1000;
	}

	.menu li {
		margin: 0;
		text-align: center;
	}

	.menu li a {
		display: block;
		padding: 15px;
		border-bottom: 1px solid #f0f0f0;
	}

	.menu-icon {
		display: block;
	}

	.menu-toggle:checked~.menu {
		display: flex;
	}

	.menu-toggle:checked~.menu-icon span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.menu-toggle:checked~.menu-icon span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked~.menu-icon span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}
}

/* Hero Section */
.hero {
	background-image: url('./img/Qlwzr.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 120px 0;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	animation: fadeInUp 1s ease;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	animation: fadeInUp 1s 0.2s ease both;
}

.hero .cta-button {
	padding: 0.8rem 2rem;
	font-size: 1.1rem;
	animation: fadeInUp 1s 0.4s ease both;
}

/* About Section */
.about {
	padding: 5rem 0;
	background-color: var(--color-bg-light);
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	display: inline-block;
	position: relative;
	padding-bottom: 0.5rem;
	font-size: 2.2rem;
}

.section-title h2::after {
	content: '';
	position: absolute;
	left: 25%;
	bottom: 0;
	width: 50%;
	height: 4px;
	background-color: var(--color-accent);
}

.about-content {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.about-image:hover {
	transform: scale(1.02);
}

/* Services Section */
.services {
	padding: 5rem 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: var(--color-bg-light);
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--color-accent);
}

/* Benefits Section */
.benefits {
	padding: 5rem 0;
	background-color: var(--color-bg-light);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.benefit-item {
	text-align: center;
	padding: 1.5rem;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
	font-size: 2.5rem;
	color: var(--color-accent);
	margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
	padding: 5rem 0;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background-color: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 20px;
	font-size: 4rem;
	color: var(--color-bg);
	opacity: 0.2;
	font-family: serif;
	line-height: 1;
}

.testimonial-text {
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	font-weight: bold;
	color: var(--color-accent);
}

/* FAQ Section */
.faq {
	padding: 5rem 0;
	background-color: var(--color-bg-light);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1.5rem;
}

.faq-question {
	display: none;
}

.faq-label {
	display: block;
	padding: 1rem;
	background-color: white;
	border-radius: 8px;
	cursor: pointer;
	position: relative;
	font-weight: bold;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.faq-label::after {
	content: '+';
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: transform 0.3s;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: white;
	border-radius: 0 0 8px 8px;
	margin-top: -8px;
	padding: 0 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question:checked~.faq-content {
	max-height: 500px;
	padding: 1rem;
}

.faq-question:checked~.faq-label {
	border-radius: 8px 8px 0 0;
	background-color: var(--color-accent);
	color: white;
}

.faq-question:checked~.faq-label::after {
	content: '-';
}

/* Contact Form Section */
.contact {
	padding: 5rem 0;
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	background-color: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-control {
	width: 100%;
	padding: 0.8rem;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.form-control:focus {
	border-color: var(--color-accent);
	outline: none;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.checkbox-group input {
	margin-right: 10px;
	margin-top: 6px;
}

.submit-btn {
	background-color: var(--color-button);
	color: white;
	border: none;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 30px;
	cursor: pointer;
	transition: background-color 0.3s;
	display: block;
	width: 100%;
}

.submit-btn:hover {
	background-color: var(--color-accent);
}

/* Blog Section */
.blog {
	padding: 5rem 0;
	background-color: var(--color-bg-light);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.blog-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.blog-card:hover {
	transform: translateY(-10px);
}

.blog-image {
	height: 200px;
	overflow: hidden;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
	transform: scale(1.05);
}

.blog-content {
	padding: 1.5rem;
}

.blog-content h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.blog-date {
	color: #777;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.read-more {
	display: inline-block;
	margin-top: 0.5rem;
	color: var(--color-accent);
	font-weight: 500;
}

/* Footer */
footer {
	background-color: #333;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-column h3 {
	color: white;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 50px;
	height: 2px;
	background-color: var(--color-accent);
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 0.8rem;
}

.footer-column ul li a {
	color: #ddd;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: var(--color-accent);
}

.footer-column address {
	font-style: normal;
}

.footer-column address p {
	margin-bottom: 0.8rem;
}

.copyright {
	border-top: 1px solid #444;
	padding-top: 1.5rem;
	text-align: center;
	font-size: 0.9rem;
	color: #aaa;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	background-color: #333;
	color: white;
	padding: 1rem 0;
	box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	transition: bottom 0.5s;
}

.cookie-popup.show {
	bottom: 0;
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.cookie-content p {
	margin: 0;
	padding-right: 1rem;
}

#accept-cookies {
	background-color: var(--color-button);
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	cursor: pointer;
	white-space: nowrap;
}

/* Policy Pages */
.policy-container {
	max-width: 800px;
	margin: 10rem auto 5rem;
	padding: 2rem;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--color-accent);
}

.policy-container h2 {
	color: var(--color-bg);
	margin-top: 2rem;
}

/* Gracias Page */
.gracias-container {
	max-width: 600px;
	margin: 10rem auto 5rem;
	padding: 3rem;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.gracias-container h1 {
	font-size: 3rem;
	color: var(--color-accent);
	margin-bottom: 1.5rem;
}

.gracias-container p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.back-home {
	display: inline-block;
	background-color: var(--color-button);
	color: white;
	padding: 0.8rem 2rem;
	border-radius: 30px;
	font-weight: 500;
	transition: background-color 0.3s;
}

.back-home:hover {
	background-color: var(--color-accent);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 992px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.about-content {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.section-title h2 {
		font-size: 1.8rem;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-content p {
		margin-bottom: 1rem;
		padding-right: 0;
	}
}