/* Base Styles */
:root {
	--primary-bg: #f6fff8;
	--accent-color: #ffb703;
	--secondary-bg: #073b3a;
	--text-color: #252525;
	--button-gradient-start: #fb8500;
	--button-gradient-end: #ffb703;
	--shadow-color: rgba(7, 59, 58, 0.15);
	--transition-speed: 0.3s;
	--border-radius: 8px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Open Sans", "Roboto", sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--primary-bg);
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

h2::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: var(--accent-color);
	margin: 15px auto 0;
	border-radius: 2px;
}

p {
	margin-bottom: 15px;
}

img {
	max-width: 100%;
	height: auto;
	border-radius: var(--border-radius);
}

a {
	color: var(--secondary-bg);
	text-decoration: none;
	transition: color var(--transition-speed) ease;
}

a:hover {
	color: var(--accent-color);
}

section {
	padding: 80px 0;
}

/* Buttons */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 12px 25px;
	border-radius: var(--border-radius);
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(to right, var(--button-gradient-start), var(--button-gradient-end));
	color: white;
	box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 7px 20px var(--shadow-color);
	color: white;
}

.btn-secondary {
	background-color: transparent;
	color: var(--secondary-bg);
	border: 2px solid var(--secondary-bg);
}

.btn-secondary:hover {
	background-color: var(--secondary-bg);
	color: white;
}

/* Header */
header {
	background-color: var(--primary-bg);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 15px 0;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo svg {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--secondary-bg);
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 25px;
}

.nav-menu a {
	font-weight: 600;
	font-size: 1rem;
	position: relative;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0%;
	height: 2px;
	background-color: var(--accent-color);
	transition: width var(--transition-speed) ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: var(--secondary-bg);
	border-radius: 3px;
	transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero {
	background: url("img/7feOKc.jpg") center/cover no-repeat;
	height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
	color: white;
	margin-top: 80px;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(7, 59, 58, 0.6);
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	animation: fadeInDown 1s ease;
}

.hero p {
	font-size: 1.5rem;
	max-width: 700px;
	margin: 0 auto 40px;
	animation: fadeInUp 1s ease 0.3s both;
}

.hero .btn-primary {
	animation: fadeInUp 1s ease 0.6s both;
}

/* About Section */
.about {
	background-color: white;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
}

/* Benefits Section */
.benefits {
	background-color: rgba(255, 183, 3, 0.1);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.benefit-item {
	background-color: white;
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 15px var(--shadow-color);
	text-align: center;
	transition: transform var(--transition-speed) ease;
}

.benefit-item:hover {
	transform: translateY(-10px);
}

.benefit-icon {
	margin-bottom: 20px;
}

.benefit-item h3 {
	margin-bottom: 15px;
	color: var(--secondary-bg);
}

/* Products Section */
.products {
	background-color: white;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.product-card {
	background-color: var(--primary-bg);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 5px 15px var(--shadow-color);
	transition: transform var(--transition-speed) ease;
}

.product-card:hover {
	transform: translateY(-10px);
}

.product-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-card h3,
.product-card p,
.product-card .product-price,
.product-card a {
	padding: 0 20px;
}

.product-card h3 {
	margin-top: 20px;
	color: var(--secondary-bg);
}

.product-card .product-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent-color);
	margin: 15px 0;
}

.product-card .btn-secondary {
	display: block;
	margin: 20px;
}

/* Testimonials Section */
.testimonials {
	background-color: var(--secondary-bg);
	color: white;
}

.testimonials h2 {
	color: white;
}

.testimonials h2::after {
	background: var(--accent-color);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.testimonial-card {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: var(--border-radius);
	padding: 30px;
	position: relative;
}

.testimonial-content {
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-content::before {
	content: '"';
	font-size: 4rem;
	position: absolute;
	top: 10px;
	left: 10px;
	color: rgba(255, 255, 255, 0.1);
	font-family: serif;
}

.testimonial-author {
	font-weight: 600;
	text-align: right;
	color: var(--accent-color);
}

/* FAQ Section */
.faq {
	background-color: var(--primary-bg);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 15px;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.faq-item input {
	display: none;
}

.faq-item label {
	display: block;
	padding: 20px;
	background-color: white;
	cursor: pointer;
	font-weight: 600;
	position: relative;
	box-shadow: 0 2px 5px var(--shadow-color);
	transition: background-color var(--transition-speed) ease;
}

.faq-item label::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: transform var(--transition-speed) ease;
}

.faq-item input:checked + label {
	background-color: var(--secondary-bg);
	color: white;
}

.faq-item input:checked + label::after {
	content: "-";
	transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background-color: white;
	transition: max-height 0.5s ease;
}

.faq-item input:checked ~ .faq-answer {
	max-height: 500px;
	padding: 20px;
}

/* Contact Section */
.contact {
	background-color: white;
}

.contact-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.contact-info {
	flex: 1;
}

.contact-image {
	flex: 1;
}

/* Order Form */
.order-form {
	background-color: rgba(7, 59, 58, 0.05);
}

form {
	max-width: 800px;
	margin: 0 auto;
	background-color: white;
	padding: 40px;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 15px var(--shadow-color);
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

input,
textarea,
select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	font-size: 1rem;
	font-family: inherit;
}

textarea {
	height: 120px;
	resize: vertical;
}

.product-checkbox,
.legal-checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.product-checkbox input,
.legal-checkbox input {
	width: auto;
	margin-right: 10px;
}

.products-selection,
.legal-checkboxes {
	margin-top: 30px;
}

.products-selection h3 {
	margin-bottom: 15px;
}

/* Footer */
footer {
	background-color: var(--secondary-bg);
	color: white;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.footer-logo,
.footer-links,
.footer-contact {
	margin-bottom: 20px;
}

.footer-logo .logo-text {
	color: white;
}

.footer-links h3,
.footer-contact h3 {
	color: var(--accent-color);
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
	color: var(--accent-color);
}

.footer-contact p {
	margin-bottom: 10px;
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
	color: var(--accent-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--secondary-bg);
	color: white;
	padding: 15px 0;
	z-index: 1001;
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-text {
	flex: 1;
	margin-right: 20px;
}

.cookie-accept {
	background-color: var(--accent-color);
	color: var(--secondary-bg);
	padding: 8px 20px;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	border: none;
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Media Queries */
@media (max-width: 1024px) {
	.benefits-grid,
	.products-grid,
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	section {
		padding: 60px 0;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.about-content,
	.contact-content {
		flex-direction: column;
	}

	.menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: var(--primary-bg);
		flex-direction: column;
		align-items: center;
		padding-top: 40px;
		transition: left var(--transition-speed) ease;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu li {
		margin: 0 0 30px 0;
	}

	.cookie-content {
		flex-direction: column;
	}

	.cookie-text {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@media (max-width: 576px) {
	.benefits-grid,
	.products-grid,
	.testimonials-grid,
	.footer-content {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	form {
		padding: 20px;
	}
}
