/* Main Styles for domain - Accountant Website */
:root {
	--background: #FAF3E0;
	--accent: #E63946;
	--text: #1D3557;
	--white: #F1FAEE;
}

* {
	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: 'Arial', sans-serif;
	background-color: var(--background);
	color: var(--text);
	line-height: 1.6;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header Styles */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(250, 243, 224, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
}

.logo {
	font-size: 28px;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
}

.logo span {
	color: var(--accent);
}

/* Navigation Styles */
.hamburger {
	display: none;
}

#menu-toggle {
	display: none;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 25px;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text);
	font-weight: 500;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: var(--accent);
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 60px;
}

.hero:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('./img/wQMu4.jpg') center/cover no-repeat;
	opacity: 0.2;
	z-index: -1;
}

.hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.hero-title {
	font-size: 3rem;
	margin-bottom: 20px;
	color: var(--text);
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(45deg, var(--accent), var(--white));
	color: var(--text);
	font-weight: bold;
	text-decoration: none;
	border-radius: 30px;
	border: none;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

/* Section Styles */
section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
	font-size: 2.5rem;
	color: var(--text);
}

.section-title:after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: var(--accent);
	margin: 15px auto;
}

/* About Section */
.about-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.about-text {
	flex: 1;
	min-width: 300px;
	padding-right: 30px;
}

.about-image {
	flex: 1;
	min-width: 300px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
	height: 180px;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 15px;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--text);
}

/* Benefits Section */
.benefits-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.benefit-item {
	flex-basis: 30%;
	min-width: 250px;
	text-align: center;
	margin-bottom: 30px;
}

.benefit-icon {
	font-size: 3rem;
	color: var(--accent);
	margin-bottom: 15px;
}

.benefit-title {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin: 0 auto;
}

.testimonial-card {
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 15px;
}

.testimonial-author {
	font-weight: bold;
	text-align: right;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 15px;
	border-radius: 5px;
	overflow: hidden;
}

.faq-question {
	display: block;
	background: white;
	padding: 15px;
	cursor: pointer;
	position: relative;
	font-weight: bold;
}

.faq-checkbox {
	display: none;
}

.faq-checkbox:checked~.faq-answer {
	max-height: 500px;
	padding: 15px;
}

.faq-checkbox:checked~.faq-question:after {
	transform: rotate(45deg);
}

.faq-question:after {
	content: "+";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: transform 0.3s;
}

.faq-answer {
	background: #f8f8f8;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
}

/* Contact Form Section */
.form-container {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
}

.form-control {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
}

.form-control:focus {
	outline: none;
	border-color: var(--accent);
}

.form-select {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	appearance: none;
	background: white url("data:image/svg+xml;charset=utf8,%3Csvg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 10px center;
}



.form-check {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.form-check-input {
	margin-right: 10px;
	margin-top: 5px;
}

.form-check-label {
	font-size: 14px;
}

.form-check-label a {
	color: var(--accent);
	text-decoration: none;
}

.form-error {
	color: var(--accent);
	font-size: 14px;
	margin-top: 5px;
}

/* Trusted By Section */
.trusted-container {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}

.trusted-logo {
	flex: 0 0 150px;
	margin: 15px;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.trusted-logo:hover {
	opacity: 1;
}

/* Footer */
footer {
	background: var(--text);
	color: white;
	padding: 50px 0 20px;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer-column {
	flex: 1;
	min-width: 250px;
	margin-bottom: 30px;
}

.footer-title {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: var(--white);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--accent);
}

.footer-contact p {
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
}

.footer-contact span {
	margin-right: 10px;
	color: var(--accent);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 30px;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	padding: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	display: none;
	z-index: 2000;
	max-width: 500px;
}

.cookie-popup p {
	margin-bottom: 15px;
}

.cookie-buttons {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.cookie-btn {
	padding: 8px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.cookie-accept {
	background: var(--accent);
	color: white;
}

.cookie-decline {
	background: #ddd;
	color: var(--text);
}

/* Policy Pages */
.policy-container {
	max-width: 800px;
	margin: 10rem auto 5rem;
	padding: 30px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-title {
	margin-bottom: 30px;
	text-align: center;
}

.policy-section {
	margin-bottom: 30px;
}

.policy-section h3 {
	margin-bottom: 15px;
}

.policy-section ul,
.policy-section ol {
	padding-left: 20px;
	margin-bottom: 15px;
}

/* Thank You Page */
.thank-you-container {
	max-width: 600px;
	margin: 10rem auto 5rem;
	padding: 30px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.thank-you-icon {
	font-size: 5rem;
	color: var(--accent);
	margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.hamburger {
		display: block;
		font-size: 24px;
		cursor: pointer;
		z-index: 1001;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		background: white;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: right 0.3s;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		z-index: 1000;
	}

	.nav-menu li {
		margin: 15px 0;
	}

	#menu-toggle:checked~.nav-menu {
		right: 0;
	}

	.about-content {
		flex-direction: column;
	}

	.about-text {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.benefit-item {
		flex-basis: 100%;
	}

	.hero-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {
	.section-title {
		font-size: 2rem;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}
}