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

:root {
--primary: #1a4d2e;
--secondary: #fa9884;
--accent: #ffc947;
--dark: #0f1419;
--light: #fef9f3;
--white: #ffffff;
--gray: #5a5a5a;
--border: #e8dfd0;
}

body {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--dark);
background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.8rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

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

.header {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
transition: transform 0.3s ease;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo a {
font-family: 'Cormorant Garamond', serif;
font-size: 1.6rem;
font-weight: 600;
color: var(--primary);
}

.nav {
display: flex;
gap: 25px;
}

.nav-link {
font-size: 14px;
color: var(--dark);
padding: 8px 0;
position: relative;
}

.nav-link:hover,
.nav-link.active {
color: var(--primary);
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--primary);
}

.menu-toggle {
display: none;
background: none;
border: none;
width: 30px;
height: 25px;
position: relative;
cursor: pointer;
flex-direction: column;
justify-content: space-between;
}

.menu-toggle span {
display: block;
width: 100%;
height: 3px;
background: var(--dark);
border-radius: 2px;
transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
position: relative;
min-height: 85vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
background: var(--light);
overflow: hidden;
padding: 80px 0;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 60%;
height: 150%;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
border-radius: 50%;
opacity: 0.08;
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
padding: 0 40px;
}

.hero-image {
position: relative;
z-index: 2;
height: 600px;
display: flex;
align-items: center;
justify-content: center;
}

.hero-image-wrapper {
position: relative;
width: 100%;
max-width: 500px;
}

.hero-image-wrapper::before {
content: '';
position: absolute;
top: -20px;
left: -20px;
width: 100%;
height: 100%;
background: var(--accent);
border-radius: 50% 50% 0 50%;
z-index: -1;
}

.hero-image-wrapper img {
width: 100%;
height: 550px;
object-fit: cover;
border-radius: 50% 50% 0 50%;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
color: var(--dark);
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.3rem;
color: var(--primary);
font-weight: 500;
margin-bottom: 1rem;
}

.hero p {
font-size: 1.1rem;
margin-bottom: 2.5rem;
color: var(--gray);
line-height: 1.8;
}

.hero-stats {
display: flex;
gap: 40px;
margin-top: 3rem;
}

.stat-item {
text-align: left;
}

.stat-number {
font-size: 2.5rem;
font-weight: 600;
color: var(--primary);
font-family: 'Cormorant Garamond', serif;
}

.stat-label {
font-size: 0.9rem;
color: var(--gray);
margin-top: 5px;
}

.btn-primary,
.btn-secondary {
display: inline-block;
padding: 12px 30px;
font-size: 14px;
font-weight: 500;
border-radius: 4px;
transition: all 0.3s ease;
cursor: pointer;
border: none;
}

.btn-primary {
background: var(--accent);
color: var(--white);
}

.btn-primary:hover {
background: #c49563;
transform: translateY(-2px);
}

.btn-secondary {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
}

.btn-secondary:hover {
background: var(--primary);
color: var(--white);
}

.features {
padding: 60px 0;
background: var(--light);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.feature-card {
text-align: center;
padding: 30px 20px;
background: var(--white);
border-radius: 8px;
transition: transform 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
}

.feature-card .icon-wrapper {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 20px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.feature-card .icon-wrapper::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
background: inherit;
border-radius: inherit;
opacity: 0.3;
transform: scale(1.2);
z-index: -1;
}

.feature-card .icon-wrapper svg {
width: 35px;
height: 35px;
fill: var(--white);
}

.feature-card h3 {
font-size: 1.2rem;
margin-bottom: 0.8rem;
}

.feature-card p {
font-size: 14px;
color: var(--gray);
}

.about {
padding: 80px 0;
}

.about-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.about-image img {
border-radius: 8px;
width: 100%;
}

.about-text h2 {
margin-bottom: 1.5rem;
color: var(--primary);
}

.about-text p {
margin-bottom: 1.2rem;
color: var(--gray);
}

.products {
padding: 80px 0;
background: var(--light);
}

.products h2 {
text-align: center;
margin-bottom: 3rem;
color: var(--primary);
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.product-card {
background: var(--white);
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s ease;
}

.product-card:hover {
transform: translateY(-5px);
}

.product-image {
height: 300px;
overflow: hidden;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-info {
padding: 25px;
text-align: center;
}

.product-info h3 {
margin-bottom: 0.8rem;
}

.product-info p {
font-size: 14px;
color: var(--gray);
margin-bottom: 1rem;
}

.price {
display: block;
font-size: 1.4rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 1.2rem;
}

.btn-product {
display: inline-block;
padding: 10px 25px;
background: var(--primary);
color: var(--white);
border-radius: 4px;
font-size: 14px;
}

.btn-product:hover {
background: var(--secondary);
}

.services {
padding: 80px 0;
}

.services h2 {
text-align: center;
margin-bottom: 3rem;
color: var(--primary);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.service-item {
padding: 30px;
background: var(--light);
border-radius: 8px;
text-align: center;
}

.service-item .icon-wrapper {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 20px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.service-item .icon-wrapper::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
background: inherit;
border-radius: inherit;
opacity: 0.3;
transform: scale(1.2);
z-index: -1;
}

.service-item .icon-wrapper svg {
width: 35px;
height: 35px;
fill: var(--white);
}

.service-item i {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 1rem;
}

.service-item h3 {
margin-bottom: 1rem;
}

.service-item p {
font-size: 14px;
color: var(--gray);
margin-bottom: 1.2rem;
}

.link-arrow {
color: var(--primary);
font-weight: 500;
font-size: 14px;
}

.link-arrow:hover {
color: var(--secondary);
}

.testimonials {
padding: 80px 0;
background: var(--light);
}

.testimonials h2 {
text-align: center;
margin-bottom: 3rem;
color: var(--primary);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-card p {
font-size: 15px;
line-height: 1.8;
color: var(--gray);
margin-bottom: 1.5rem;
font-style: italic;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 5px;
}

.testimonial-author strong {
color: var(--dark);
font-size: 15px;
}

.testimonial-author span {
color: var(--gray);
font-size: 13px;
}

.process-section {
padding: 80px 0;
}

.process-section h2 {
text-align: center;
margin-bottom: 3rem;
color: var(--primary);
}

.newsletter {
padding: 80px 0;
background: var(--primary);
position: relative;
overflow: hidden;
}

.newsletter::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: var(--secondary);
opacity: 0.1;
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.newsletter-content {
position: relative;
z-index: 2;
max-width: 800px;
margin: 0 auto;
text-align: center;
color: var(--white);
}

.newsletter h2 {
color: var(--white);
margin-bottom: 1rem;
font-size: 2.5rem;
}

.newsletter p {
font-size: 1.1rem;
margin-bottom: 2.5rem;
opacity: 0.95;
}

.newsletter-form {
display: flex;
gap: 15px;
max-width: 500px;
margin: 0 auto;
}

.newsletter-form input {
flex: 1;
padding: 15px 20px;
border: none;
border-radius: 50px;
font-size: 15px;
}

.newsletter-form button {
padding: 15px 35px;
background: var(--accent);
color: var(--dark);
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.newsletter-form button:hover {
background: var(--white);
transform: translateY(-2px);
}

.footer {
background: var(--dark);
color: var(--white);
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.footer-col h4 {
font-size: 1rem;
margin-bottom: 1rem;
color: var(--accent);
}

.footer-col p,
.footer-col a {
font-size: 13px;
color: #cccccc;
display: block;
margin-bottom: 8px;
}

.footer-col a:hover {
color: var(--accent);
}

.footer-bottom {
border-top: 1px solid #333;
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-bottom p {
font-size: 13px;
color: #999;
}

.footer-links {
display: flex;
gap: 20px;
}

.footer-links a {
font-size: 13px;
color: #999;
}

.footer-links a:hover {
color: var(--accent);
}

.page-hero {
padding: 60px 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
text-align: center;
}

.page-hero h1 {
color: var(--white);
margin-bottom: 1rem;
}

.content-section {
padding: 80px 0;
}

.content-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.content-wrapper.reverse {
direction: rtl;
}

.content-wrapper.reverse > * {
direction: ltr;
}

.content-text h2 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.content-text p {
margin-bottom: 1.2rem;
color: var(--gray);
}

.content-image img {
border-radius: 8px;
width: 100%;
}

.features-alt {
padding: 80px 0;
background: var(--light);
}

.features-alt h2 {
text-align: center;
margin-bottom: 3rem;
color: var(--primary);
}

.features-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.feature-box {
background: var(--white);
padding: 25px;
border-radius: 8px;
text-align: center;
}

.feature-box i {
font-size: 2rem;
color: var(--secondary);
margin-bottom: 1rem;
}

.feature-box h3 {
font-size: 1.1rem;
margin-bottom: 0.8rem;
}

.feature-box p {
font-size: 14px;
color: var(--gray);
}

.process {
padding: 80px 0;
}

.process h2 {
text-align: center;
margin-bottom: 3rem;
color: var(--primary);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
}

.step {
text-align: center;
padding: 25px;
}

.step-number {
width: 60px;
height: 60px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 600;
margin: 0 auto 1.5rem;
}

.step h3 {
margin-bottom: 1rem;
}

.step p {
font-size: 14px;
color: var(--gray);
}

.info-section {
padding: 80px 0;
}

.info-section h2 {
text-align: center;
margin-bottom: 3rem;
color: var(--primary);
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

.info-card {
background: var(--light);
padding: 25px;
border-radius: 8px;
}

.info-card h3 {
margin-bottom: 1rem;
color: var(--primary);
}

.info-card p {
font-size: 14px;
color: var(--gray);
}

.contact-hero {
padding: 60px 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
text-align: center;
}

.contact-hero h1 {
color: var(--white);
margin-bottom: 1rem;
}

.contact-main {
padding: 80px 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 50px;
}

.contact-form-wrapper h2 {
margin-bottom: 2rem;
color: var(--primary);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-size: 14px;
font-weight: 500;
margin-bottom: 8px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border);
border-radius: 4px;
font-family: inherit;
font-size: 14px;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--primary);
text-decoration: underline;
}

.btn-submit {
padding: 14px 30px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 4px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-submit:hover {
background: var(--secondary);
transform: translateY(-2px);
}

.contact-info-wrapper {
display: flex;
flex-direction: column;
}

.contact-info-card {
background: var(--light);
padding: 30px;
border-radius: 8px;
}

.contact-info-card h3 {
margin-bottom: 2rem;
color: var(--primary);
}

.info-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.info-item i {
font-size: 1.3rem;
color: var(--primary);
margin-top: 3px;
}

.info-item strong {
display: block;
margin-bottom: 5px;
font-size: 14px;
}

.info-item p {
font-size: 14px;
color: var(--gray);
margin: 0;
}

.map-section {
padding: 0 0 80px;
}

.map-section h2 {
text-align: center;
margin-bottom: 2rem;
color: var(--primary);
}

.map-wrapper {
border-radius: 8px;
overflow: hidden;
}

.thankyou-section,
.error-section {
padding: 100px 0;
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.thankyou-icon {
font-size: 4rem;
color: var(--primary);
margin-bottom: 2rem;
}

.thankyou-content h1,
.error-content h1 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.thankyou-content p,
.error-content p {
font-size: 1.05rem;
color: var(--gray);
margin-bottom: 1.2rem;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 2rem;
flex-wrap: wrap;
}

.error-number {
font-size: 6rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 1rem;
}

.policy-section {
padding: 60px 0;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
}

.policy-content h1 {
color: var(--primary);
margin-bottom: 1rem;
}

.policy-date {
font-size: 14px;
color: var(--gray);
margin-bottom: 2rem;
}

.policy-content h2 {
color: var(--primary);
margin-top: 2.5rem;
margin-bottom: 1rem;
}

.policy-content h3 {
color: var(--secondary);
margin-top: 1.5rem;
margin-bottom: 0.8rem;
}

.policy-content p {
margin-bottom: 1rem;
color: var(--gray);
}

.policy-content ul {
margin: 1rem 0 1.5rem 2rem;
}

.policy-content li {
margin-bottom: 0.5rem;
color: var(--gray);
}

.policy-content a {
color: var(--primary);
text-decoration: underline;
}

.cookie-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 20px;
z-index: 1000;
display: none;
}

.cookie-popup.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.cookie-content p {
font-size: 14px;
margin: 0;
flex: 1;
min-width: 250px;
}

.cookie-buttons {
display: flex;
gap: 15px;
}

.btn-accept,
.btn-learn {
padding: 10px 20px;
border-radius: 4px;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-accept {
background: var(--accent);
color: var(--white);
border: none;
}

.btn-accept:hover {
background: #c49563;
}

.btn-learn {
background: transparent;
color: var(--white);
border: 1px solid var(--white);
}

.btn-learn:hover {
background: var(--white);
color: var(--dark);
}

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

.hero {
grid-template-columns: 1fr;
min-height: auto;
padding: 60px 0;
}

.hero-content {
padding: 0 20px;
text-align: center;
}

.hero h1 {
font-size: 2.2rem;
}

.hero-subtitle {
font-size: 1.1rem;
}

.hero-image {
height: 400px;
margin-top: 40px;
}

.hero-image-wrapper {
max-width: 350px;
}

.hero-image-wrapper img {
height: 400px;
}

.hero-stats {
justify-content: center;
gap: 30px;
}

.stat-item {
text-align: center;
}

.newsletter-form {
flex-direction: column;
}

.newsletter-form button {
width: 100%;
}
  
.nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: var(--white);
flex-direction: column;
padding: 30px;
gap: 0;
transition: left 0.3s ease;
border-top: 1px solid var(--border);
}

.nav.active {
left: 0;
}

.nav-link {
padding: 15px 0;
border-bottom: 1px solid var(--border);
}

.menu-toggle {
display: flex;
}

.hero {
height: 400px;
}

.hero h1 {
font-size: 2rem;
}

.hero p {
font-size: 1rem;
}

.about-wrapper,
.content-wrapper {
grid-template-columns: 1fr;
gap: 30px;
}

.contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.features-grid,
.products-grid,
.services-grid,
.features-list,
.process-steps,
.info-grid {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: 1fr 1fr;
}

.footer-bottom {
flex-direction: column;
text-align: center;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.error-number {
font-size: 4rem;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }

.hero h1 {
font-size: 1.8rem;
}

.hero-subtitle {
font-size: 1rem;
}

.hero-image {
height: 350px;
}

.hero-image-wrapper {
max-width: 280px;
}

.hero-image-wrapper img {
height: 350px;
}

.hero-stats {
flex-direction: column;
gap: 20px;
align-items: center;
}

.stat-number {
font-size: 2rem;
}

.features,
.about,
.products,
.services,
.cta,
.content-section,
.features-alt,
.process,
.info-section,
.contact-main {
padding: 50px 0;
}

.footer-content {
grid-template-columns: 1fr;
}

.cookie-content {
flex-direction: column;
align-items: flex-start;
}

.cookie-buttons {
width: 100%;
flex-direction: column;
}

.btn-accept,
.btn-learn {
width: 100%;
text-align: center;
}
}

@media (max-width: 360px) {
body {
font-size: 14px;
}

.logo a {
font-size: 1.3rem;
}

.hero h1 {
font-size: 1.5rem;
}

.hero-subtitle {
font-size: 0.95rem;
}

.hero-image {
height: 300px;
}

.hero-image-wrapper {
max-width: 250px;
}

.hero-image-wrapper img {
height: 300px;
}

.btn-primary,
.btn-secondary {
padding: 10px 20px;
font-size: 13px;
}

.stat-number {
font-size: 1.8rem;
}

.stat-label {
font-size: 0.85rem;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}

.hero h1 {
font-size: 1.4rem;
}

.hero-image {
height: 280px;
}

.hero-image-wrapper {
max-width: 220px;
}

.hero-image-wrapper img {
height: 280px;
}

.hero-stats {
margin-top: 2rem;
}
}
