/* 
   Main stylesheet for domain website
   Colors:
   - Main background: #f5f9f6 (mint)
   - Accent: #e24561 (watermelon)
   - Text: #222831
   - Blocks: #ffffff and #e8f0fe
   - Buttons: gradient from #e24561 to #a62349
   - Input borders: #a62349
*/

/* ---------- Base Styles ---------- */
:root {
	--main-bg: #f5f9f6;
	--accent: #e24561;
	--accent-dark: #a62349;
	--text: #222831;
	--block-light: #ffffff;
	--block-dark: #e8f0fe;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

section[id] {
	scroll-margin-top: 40px;
}

body {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background-color: var(--main-bg);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--accent-dark);
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 4px;
	text-align: center;
	font-weight: bold;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.primary-btn {
	background: linear-gradient(to right, var(--accent), var(--accent-dark));
	color: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
	color: white;
}

.secondary-btn {
	background-color: transparent;
	border: 2px solid var(--accent);
	color: var(--accent);
}

.secondary-btn:hover {
	background-color: var(--accent);
	color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	font-weight: bold;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 15px;
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 3px;
	background-color: var(--accent);
}

/* ---------- Header ---------- */
.main-header {
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.main-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.logo a {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--text);
	text-transform: lowercase;
	letter-spacing: -1px;
}

.logo a:hover {
	color: var(--accent);
}

.main-nav {
	position: relative;
}

.nav-list {
	display: flex;
	list-style: none;
}

.nav-list li {
	margin-left: 20px;
}

.nav-list a {
	color: var(--text);
	font-weight: 500;
	padding: 5px 0;
	position: relative;
}

.nav-list a:hover,
.nav-list a.active {
	color: var(--accent);
}

.nav-list a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
	width: 100%;
}

.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 20px;
	position: relative;
}

.menu-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: var(--text);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
	top: 0;
}

.menu-icon span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
	bottom: 0;
}

/* ---------- Hero Section ---------- */
.hero {
	height: 600px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	text-align: center;
	color: white;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(34, 40, 49, 0.7);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 2rem;
	margin-bottom: 20px;

}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

/* ---------- About Section ---------- */
.about-section {
	padding: 80px 0;
	background-color: white;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ---------- Services Section ---------- */
.services-section {
	padding: 80px 0;
	background-color: var(--main-bg);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
	height: 200px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
	transform: scale(1.05);
}

.service-content {
	padding: 20px;
}

.service-content h3 {
	margin-bottom: 15px;
	color: var(--text);
}

.service-content p {
	margin-bottom: 20px;
	color: var(--text);
}

/* ---------- Benefits Section ---------- */
.benefits-section {
	padding: 80px 0;
	background-color: var(--block-dark);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.benefit-item {
	text-align: center;
	padding: 30px 20px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-5px);
}

.benefit-icon {
	margin: 0 auto 20px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--block-light);
}

.benefit-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benefit-item h3 {
	margin-bottom: 15px;
	color: var(--text);
}

/* ---------- Why Us Section ---------- */
.why-us-section {
	padding: 80px 0;
	background-color: white;
}

.why-us-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.why-us-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-us-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.why-us-text {
	flex: 1;
}

.why-us-item {
	margin-bottom: 25px;
}

.why-us-item h3 {
	margin-bottom: 10px;
	color: var(--accent);
	font-size: 1.2rem;
}

/* ---------- Contact Form Section ---------- */
.contact-form-section {
	padding: 80px 0;
	background-color: var(--main-bg);
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	padding: 40px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
}

.required {
	color: var(--accent);
}

input[type="text"],
input[type="tel"],
select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	transition: border 0.3s ease;
	font-size: 1rem;
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
	border-color: var(--accent-dark);
	outline: none;
}

select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-position: right 15px top 50%;
	background-size: 10px auto;
}

/* Style for option elements in select */
select option {
	background-color: var(--block-dark);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 5px;
	accent-color: var(--accent-dark);
	cursor: pointer;
}

.checkbox-group label {
	font-weight: normal;
	cursor: pointer;
}

.form-submit {
	text-align: center;
	margin-top: 30px;
}

.error-messages {
	margin-bottom: 20px;
	padding: 15px;
	background-color: rgba(226, 69, 97, 0.1);
	border-left: 4px solid var(--accent);
	border-radius: 4px;
}

.error-message {
	color: var(--accent);
	margin-bottom: 5px;
}

.error-message:last-child {
	margin-bottom: 0;
}

/* ---------- FAQ Section ---------- */
.faq-section {
	padding: 80px 0;
	background-color: var(--block-dark);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: white;
	border-radius: 8px;
	margin-bottom: 15px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.faq-toggle {
	display: none;
}

.faq-question {
	display: block;
	padding: 20px;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	padding-right: 40px;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-toggle:checked+.faq-question::after {
	content: '−';
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 20px;
}

.faq-toggle:checked+.faq-question+.faq-answer {
	max-height: 500px;
	padding: 0 20px 20px;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
	padding: 80px 0;
	background-color: white;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background-color: var(--block-dark);
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	font-size: 4rem;
	color: var(--accent);
	opacity: 0.2;
	position: absolute;
	top: 10px;
	left: 10px;
	line-height: 1;
}

.testimonial-content {
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	text-align: right;
}

/* ---------- Contact Section ---------- */
.contact-section {
	padding: 80px 0;
	background-size: cover;
	background-position: center;
	position: relative;
	color: white;
}

.contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(34, 40, 49, 0.8);
}

.contact-section .container {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.contact-content {
	padding-right: 20px;
}

.contact-info {
	margin-top: 30px;
}

.contact-detail {
	margin-bottom: 25px;
}

.contact-detail h3 {
	color: white;
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.contact-detail p {
	margin-bottom: 5px;
}

.contact-detail a {
	color: var(--accent);
}

.contact-map {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ---------- Footer ---------- */
.main-footer {
	background-color: var(--text);
	color: white;
	padding: 60px 0 20px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-company h3,
.footer-contact h3,
.footer-legal h3 {
	color: white;
	font-size: 1.2rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-company h3::after,
.footer-contact h3::after,
.footer-legal h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--accent);
}

.footer-contact a {
	color: white;
}

.footer-contact a:hover {
	color: var(--accent);
}

.footer-legal ul {
	list-style: none;
}

.footer-legal li {
	margin-bottom: 10px;
}

.footer-legal a {
	color: white;
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: var(--accent);
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Thank You Page ---------- */
.thank-you-section {
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.thank-you-content {
	background-color: white;
	border-radius: 8px;
	padding: 50px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	max-width: 600px;
	margin: 8rem auto 5rem;
}

.thank-you-content h1 {
	color: var(--accent);
	margin-bottom: 20px;
}

.thank-you-content p {
	margin-bottom: 30px;
}

/* ---------- Policy Pages ---------- */
.policy-section {
	padding: 80px 0;
}

.policy-section h1 {
	text-align: center;
	margin-bottom: 40px;
}

.policy-content {
	background-color: white;
	border-radius: 8px;
	padding: 40px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
	color: var(--text);
	margin-top: 30px;
	margin-bottom: 20px;
}

.policy-content h3 {
	color: var(--accent);
	margin-top: 25px;
	margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
	margin-bottom: 20px;
	margin-left: 20px;
}

.policy-content li {
	margin-bottom: 10px;
}

/* ---------- Cookie Popup ---------- */
.cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background-color: var(--text);
	color: white;
	padding: 15px;
	z-index: 9999;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	transition: bottom 0.5s ease;
}

.cookie-popup.show {
	bottom: 0;
}

.cookie-content {
	display: flex;
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px;
}

.cookie-content h3 {
	margin-bottom: 10px;
	color: white;
}

.cookie-actions {
	margin-top: 15px;
	display: flex;
	gap: 15px;
	align-items: center;
}

#accept-cookies {
	background: linear-gradient(to right, var(--accent), var(--accent-dark));
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
}

#accept-cookies:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-policy-link {
	color: var(--accent);
	font-size: 0.9rem;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
	.hero {
		height: 500px;
	}



	.about-content,
	.why-us-content {
		flex-direction: column;
	}

	.contact-section .container {
		grid-template-columns: 1fr;
	}

	.contact-content {
		padding-right: 0;
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.menu-icon {
		display: block;
	}

	.nav-list {
		position: absolute;
		top: 100%;
		right: 0;
		flex-direction: column;
		background-color: white;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.5s ease;
		width: 95vw;
	}

	.menu-toggle:checked~.nav-list {
		max-height: 500px;
	}

	.nav-list li {
		margin: 0;
	}

	.nav-list a {
		display: block;
		padding: 15px 20px;
		border-bottom: 1px solid #eee;
	}

	.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, -8px);
	}



	.hero p {
		font-size: 1.2rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.testimonials-grid,
	.services-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.container {
		padding: 0 15px;
	}

	.hero {
		height: 400px;
	}

	.hero h1 {
		font-size: 1.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.contact-form {
		padding: 20px;
	}

	.policy-content {
		padding: 20px;
	}

	.thank-you-content {
		padding: 30px;
	}
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}