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

:root {
--deep-emerald: #2D4F1E;
--forest-moss: #3B5323;
--weathered-slate: #4A4A4A;
--silver-willow: #B5BAB2;
--limestone-white: #EAE6DA;
--text-dark: #1a1a1a;
--text-light: #666;
--white: #ffffff;
}

body {
font-family: 'Outfit', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text-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; }

p {
margin-bottom: 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;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--weathered-slate);
color: var(--white);
padding: 15px 20px;
z-index: 9999;
display: none;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
flex-shrink: 0;
}

.privacy-actions a {
color: var(--limestone-white);
text-decoration: underline;
}

.privacy-actions button {
background: var(--deep-emerald);
color: var(--white);
border: none;
padding: 8px 20px;
cursor: pointer;
font-size: 13px;
border-radius: 3px;
font-family: 'Outfit', sans-serif;
}

.header {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid var(--limestone-white);
position: relative;
}

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

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--deep-emerald);
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--deep-emerald);
transition: all 0.3s ease;
}

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

.nav a {
color: var(--text-dark);
font-size: 14px;
font-weight: 400;
position: relative;
}

.nav a:hover,
.nav a.active {
color: var(--deep-emerald);
}

.nav a.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
right: 0;
height: 2px;
background: var(--deep-emerald);
}

.hero {
background: linear-gradient(135deg, var(--deep-emerald) 0%, var(--forest-moss) 100%);
color: var(--white);
padding: 80px 0;
text-align: center;
}

.hero-content h1 {
font-size: 2.8rem;
margin-bottom: 1rem;
}

.hero-content p {
font-size: 1.1rem;
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
opacity: 0.95;
}

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

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

.btn-primary:hover {
background: var(--limestone-white);
transform: translateY(-2px);
}

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

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

.services {
padding: 60px 0;
background: var(--limestone-white);
}

.services h2 {
text-align: center;
color: var(--deep-emerald);
margin-bottom: 2.5rem;
}

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

.service-card {
background: var(--white);
padding: 30px;
border-radius: 5px;
text-align: center;
transition: all 0.3s ease;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card i {
font-size: 2.5rem;
color: var(--deep-emerald);
margin-bottom: 1rem;
}

.service-card h3 {
color: var(--deep-emerald);
margin-bottom: 0.8rem;
}

.service-card p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 0;
}

.about {
padding: 60px 0;
}

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

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

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

.about-image {
border-radius: 5px;
overflow: hidden;
}

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

.features h2 {
text-align: center;
color: var(--deep-emerald);
margin-bottom: 2.5rem;
}

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

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

.feature-item i {
font-size: 2rem;
color: var(--deep-emerald);
margin-bottom: 1rem;
}

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

.feature-item p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 0;
}

.process {
padding: 60px 0;
}

.process h2 {
text-align: center;
color: var(--deep-emerald);
margin-bottom: 2.5rem;
}

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

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

.step-number {
font-family: 'Cormorant Garamond', serif;
font-size: 2.5rem;
font-weight: 600;
color: var(--silver-willow);
margin-bottom: 1rem;
}

.step h3 {
color: var(--deep-emerald);
margin-bottom: 0.8rem;
}

.step p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 0;
}

.cta {
padding: 60px 0;
background: var(--deep-emerald);
color: var(--white);
text-align: center;
}

.showcase {
padding: 60px 0;
background: var(--white);
}

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

.showcase-image {
border-radius: 5px;
overflow: hidden;
}

.showcase-text h2 {
color: var(--deep-emerald);
margin-bottom: 1.5rem;
}

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

.coverage-preview {
padding: 60px 0;
background: var(--limestone-white);
}

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

.coverage-preview-text h2 {
color: var(--deep-emerald);
margin-bottom: 1.5rem;
}

.coverage-preview-text p {
color: var(--text-light);
margin-bottom: 1.2rem;
}

.coverage-preview-image {
border-radius: 5px;
overflow: hidden;
}

.cta {
padding: 60px 0;
background: var(--deep-emerald);
color: var(--white);
text-align: center;
}

.cta h2 {
color: var(--white);
margin-bottom: 1rem;
}

.cta p {
font-size: 1.05rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.footer {
background: var(--weathered-slate);
color: var(--white);
padding: 25px 0;
font-size: 13px;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

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

.footer-links a {
color: var(--limestone-white);
}

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

.page-hero {
background: var(--deep-emerald);
color: var(--white);
padding: 50px 0;
text-align: center;
}

.page-hero h1 {
font-size: 2.5rem;
margin-bottom: 0.8rem;
}

.page-hero p {
font-size: 1.05rem;
opacity: 0.95;
margin-bottom: 0;
}

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

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

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

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

.content-image {
border-radius: 5px;
overflow: hidden;
}

.products {
padding: 60px 0;
background: var(--limestone-white);
}

.products h2 {
text-align: center;
color: var(--deep-emerald);
margin-bottom: 2.5rem;
}

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

.product-card {
background: var(--white);
padding: 35px 25px;
border-radius: 5px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-card.featured {
border-color: var(--deep-emerald);
}

.product-card i {
font-size: 2.5rem;
color: var(--deep-emerald);
margin-bottom: 1rem;
}

.product-card h3 {
color: var(--deep-emerald);
margin-bottom: 0.8rem;
}

.product-card p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 1.5rem;
}

.price {
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
font-weight: 600;
color: var(--deep-emerald);
margin-bottom: 1.5rem;
}

.benefits {
padding: 60px 0;
}

.benefits h2 {
text-align: center;
color: var(--deep-emerald);
margin-bottom: 2.5rem;
}

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

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

.benefit-item i {
font-size: 2rem;
color: var(--deep-emerald);
margin-bottom: 1rem;
}

.benefit-item h3 {
font-size: 1.2rem;
margin-bottom: 0.8rem;
}

.benefit-item p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 0;
}

.coverage {
padding: 60px 0;
}

.coverage h2 {
text-align: center;
color: var(--deep-emerald);
margin-bottom: 2.5rem;
}

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

.coverage-text p {
color: var(--text-light);
margin-bottom: 1.5rem;
}

.coverage-list {
display: flex;
flex-direction: column;
gap: 25px;
}

.coverage-item {
display: flex;
gap: 15px;
align-items: start;
}

.coverage-item i {
font-size: 1.5rem;
color: var(--deep-emerald);
flex-shrink: 0;
margin-top: 3px;
}

.coverage-item h3 {
color: var(--deep-emerald);
margin-bottom: 0.5rem;
}

.coverage-item p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 0;
}

.coverage-map {
border-radius: 5px;
overflow: hidden;
}

.location {
padding: 60px 0;
background: var(--limestone-white);
}

.location h2 {
text-align: center;
color: var(--deep-emerald);
margin-bottom: 2.5rem;
}

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

.location-info {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-item {
display: flex;
gap: 15px;
align-items: start;
}

.info-item i {
font-size: 1.5rem;
color: var(--deep-emerald);
flex-shrink: 0;
margin-top: 3px;
}

.info-item h3 {
color: var(--deep-emerald);
margin-bottom: 0.5rem;
font-size: 1.1rem;
}

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

.location-map iframe {
width: 100%;
height: 400px;
border-radius: 5px;
}

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

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

.contact-info h2 {
color: var(--deep-emerald);
margin-bottom: 1.5rem;
}

.contact-info > p {
color: var(--text-light);
margin-bottom: 2rem;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 25px;
}

.detail-item {
display: flex;
gap: 15px;
align-items: start;
}

.detail-item i {
font-size: 1.5rem;
color: var(--deep-emerald);
flex-shrink: 0;
margin-top: 3px;
}

.detail-item h3 {
color: var(--deep-emerald);
margin-bottom: 0.5rem;
font-size: 1.1rem;
}

.detail-item p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 0;
}

.contact-form-wrapper {
background: var(--limestone-white);
padding: 35px;
border-radius: 5px;
}

.contact-form h3 {
color: var(--deep-emerald);
margin-bottom: 1.5rem;
text-align: center;
}

.form-group {
margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid var(--silver-willow);
border-radius: 3px;
font-family: 'Outfit', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.checkbox-group {
margin-top: 15px;
}

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

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

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

.contact-form button {
width: 100%;
margin-top: 10px;
}

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

.thankyou-content,
.error-content {
max-width: 700px;
margin: 0 auto;
}

.thankyou-content i {
font-size: 4rem;
color: var(--deep-emerald);
margin-bottom: 1.5rem;
}

.thankyou-content h1 {
color: var(--deep-emerald);
margin-bottom: 1rem;
}

.thankyou-content p {
color: var(--text-light);
margin-bottom: 1.5rem;
}

.thankyou-info {
background: var(--limestone-white);
padding: 20px;
border-radius: 5px;
margin: 2rem 0;
}

.thankyou-info p {
margin-bottom: 0;
font-size: 14px;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-family: 'Cormorant Garamond', serif;
font-size: 8rem;
font-weight: 600;
color: var(--silver-willow);
line-height: 1;
margin-bottom: 1rem;
}

.error-content h1 {
color: var(--deep-emerald);
margin-bottom: 1rem;
}

.error-content p {
color: var(--text-light);
margin-bottom: 2rem;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

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

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

.policy-content h1 {
color: var(--deep-emerald);
margin-bottom: 1rem;
font-size: 2.5rem;
}

.policy-date {
color: var(--text-light);
font-size: 13px;
margin-bottom: 2rem;
font-style: italic;
}

.policy-content h2 {
color: var(--deep-emerald);
margin-top: 2rem;
margin-bottom: 1rem;
font-size: 1.6rem;
}

.policy-content h3 {
color: var(--forest-moss);
margin-top: 1.5rem;
margin-bottom: 0.8rem;
font-size: 1.3rem;
}

.policy-content p {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.7;
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
gap: 0;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.nav.active {
max-height: 300px;
}

.nav a {
padding: 15px 20px;
border-bottom: 1px solid var(--limestone-white);
}

.nav a.active::after {
display: none;
}

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

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

h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

.about-grid,
.content-grid,
.coverage-content,
.location-grid,
.contact-wrapper,
.showcase-grid,
.coverage-preview-grid {
grid-template-columns: 1fr;
gap: 30px;
}

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

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

.privacy-actions {
width: 100%;
justify-content: space-between;
}

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

.footer-links {
justify-content: center;
}

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

.thankyou-section,
.error-section {
padding: 50px 0;
min-height: calc(100vh - 180px);
}
}

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

.hero {
padding: 50px 0;
}

.hero-content h1 {
font-size: 1.6rem;
}

.services,
.about,
.features,
.process,
.cta,
.content-section,
.products,
.benefits,
.coverage,
.location,
.contact-section,
.policy-section {
padding: 40px 0;
}

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

.service-card,
.product-card {
padding: 25px 20px;
}

.contact-form-wrapper {
padding: 25px 20px;
}

.page-hero {
padding: 40px 0;
}

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

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

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

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

.logo {
font-size: 1.3rem;
}

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

.btn-primary,
.btn-secondary {
padding: 9px 20px;
font-size: 12px;
}
}
