* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--sand: #E5D4C1;
--beige: #D4C5B0;
--cream: #F5F0E8;
--dark-walnut: #3E2723;
--sage: #9FA896;
--light-sage: #C8D5BB;
--text-dark: #2C2416;
--text-light: #6B5D4F;
}

body {
font-family: 'Helvetica Neue', Arial, sans-serif;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--cream);
}

.main-header {
background-color: var(--sand);
padding: 1.2rem 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 1000;
}

.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section img {
display: block;
}

.primary-nav ul {
list-style: none;
display: flex;
gap: 2.5rem;
}

.primary-nav a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
font-size: 1rem;
transition: color 0.3s;
}

.primary-nav a:hover,
.primary-nav a.active {
color: var(--sage);
}

.hero-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
max-width: 1400px;
margin: 4rem auto;
padding: 0 2.5rem;
align-items: center;
}

.hero-content h1 {
font-size: 3rem;
color: var(--dark-walnut);
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hero-content p {
font-size: 1.3rem;
color: var(--text-light);
margin-bottom: 2rem;
}

.cta-button {
display: inline-block;
background-color: var(--sage);
color: white;
padding: 1rem 2.5rem;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
transition: background-color 0.3s;
}

.cta-button:hover {
background-color: var(--dark-walnut);
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.info-block {
background-color: var(--beige);
padding: 2rem 0;
margin: 3rem 0;
}

.info-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2.5rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}

.date-time-block,
.fact-block {
background-color: white;
padding: 1.5rem;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.date-time-block h3,
.fact-block h3 {
color: var(--dark-walnut);
margin-bottom: 0.8rem;
font-size: 1.2rem;
}

.date-time-block p,
.fact-block p {
color: var(--text-light);
line-height: 1.6;
}

.section-container {
max-width: 1400px;
margin: 0 auto;
padding: 5rem 2.5rem;
}

.services-preview h2,
.about-preview h2,
.blog-preview h2 {
font-size: 2.5rem;
color: var(--dark-walnut);
margin-bottom: 3rem;
text-align: center;
}

.services-grid,
.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2.5rem;
margin-bottom: 2.5rem;
}

.service-card,
.blog-card {
background-color: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover,
.blog-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card img,
.blog-card img {
width: 100%;
height: auto;
display: block;
}

.service-card h3,
.blog-card h3 {
color: var(--dark-walnut);
font-size: 1.5rem;
margin: 1.5rem 1.5rem 1rem;
}

.service-card p,
.blog-card p {
color: var(--text-light);
margin: 0 1.5rem 1.5rem;
line-height: 1.6;
}

.blog-card a {
display: inline-block;
color: var(--sage);
margin: 0 1.5rem 1.5rem;
text-decoration: none;
font-weight: 600;
}

.link-button {
display: inline-block;
color: var(--sage);
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
margin-top: 2rem;
padding: 0.8rem 2rem;
border: 2px solid var(--sage);
border-radius: 4px;
transition: all 0.3s;
}

.link-button:hover {
background-color: var(--sage);
color: white;
}

.about-preview {
background-color: var(--sand);
}

.about-preview .section-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.about-content h2 {
text-align: left;
margin-bottom: 1.5rem;
}

.about-content p {
color: var(--text-light);
margin-bottom: 1.2rem;
}

.about-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.contact-cta {
background: linear-gradient(135deg, var(--sage) 0%, var(--light-sage) 100%);
color: white;
text-align: center;
}

.contact-cta h2 {
color: white;
font-size: 2.5rem;
margin-bottom: 1rem;
}

.contact-cta p {
font-size: 1.2rem;
margin-bottom: 2rem;
}

.cta-button-alt {
display: inline-block;
background-color: white;
color: var(--sage);
padding: 1rem 2.5rem;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
transition: all 0.3s;
}

.cta-button-alt:hover {
background-color: var(--dark-walnut);
color: white;
}

.main-footer {
background-color: var(--dark-walnut);
color: var(--cream);
padding: 3rem 0 1.5rem;
}

.footer-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2.5rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 2.5rem;
}

.footer-column h4 {
color: var(--sand);
margin-bottom: 1rem;
font-size: 1.2rem;
}

.footer-column p {
margin-bottom: 0.5rem;
line-height: 1.8;
color: var(--beige);
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 0.5rem;
}

.footer-column ul li a {
color: var(--beige);
text-decoration: none;
transition: color 0.3s;
}

.footer-column ul li a:hover {
color: var(--sand);
}

.footer-bottom {
max-width: 1400px;
margin: 0 auto;
padding: 1.5rem 2.5rem 0;
border-top: 1px solid rgba(229, 212, 193, 0.2);
text-align: center;
}

.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}

.footer-links a {
color: var(--beige);
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--sand);
}

.footer-bottom p {
color: var(--beige);
font-size: 0.95rem;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--dark-walnut);
color: white;
padding: 2rem;
box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
z-index: 10000;
display: none;
}

.cookie-banner.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
color: var(--sand);
margin-bottom: 1rem;
}

.cookie-content p {
margin-bottom: 1.5rem;
line-height: 1.6;
}

.cookie-buttons {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.8rem 1.5rem;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s;
}

.cookie-btn.accept {
background-color: var(--sage);
color: white;
}

.cookie-btn.customize {
background-color: var(--beige);
color: var(--dark-walnut);
}

.cookie-btn.decline {
background-color: transparent;
color: var(--beige);
border: 1px solid var(--beige);
}

.cookie-btn:hover {
opacity: 0.9;
transform: translateY(-2px);
}

.cookie-content a {
color: var(--sand);
text-decoration: underline;
}

.page-hero {
background: linear-gradient(135deg, var(--sand) 0%, var(--beige) 100%);
padding: 5rem 2.5rem;
text-align: center;
}

.page-hero h1 {
font-size: 3rem;
color: var(--dark-walnut);
margin-bottom: 1rem;
}

.page-hero p {
font-size: 1.3rem;
color: var(--text-light);
}

.our-story {
background-color: white;
}

.our-story .section-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.story-content h2 {
color: var(--dark-walnut);
margin-bottom: 1.5rem;
font-size: 2.2rem;
}

.story-content p {
color: var(--text-light);
margin-bottom: 1.2rem;
line-height: 1.7;
}

.story-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.team-section {
background-color: var(--cream);
}

.team-intro {
text-align: center;
color: var(--text-light);
font-size: 1.2rem;
margin-bottom: 3rem;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
}

.team-member {
text-align: center;
background-color: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.team-member img {
border-radius: 50%;
margin-bottom: 1.5rem;
}

.team-member h3 {
color: var(--dark-walnut);
margin-bottom: 0.5rem;
}

.team-member .position {
color: var(--sage);
font-weight: 600;
margin-bottom: 1rem;
}

.team-member p {
color: var(--text-light);
line-height: 1.6;
}

.values-section {
background-color: var(--sand);
}

.values-section h2 {
text-align: center;
color: var(--dark-walnut);
font-size: 2.5rem;
margin-bottom: 3rem;
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
}

.value-card {
background-color: white;
padding: 2.5rem;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
color: var(--dark-walnut);
margin-bottom: 1rem;
font-size: 1.5rem;
}

.value-card p {
color: var(--text-light);
line-height: 1.7;
}

.cta-section {
background: linear-gradient(135deg, var(--sage) 0%, var(--light-sage) 100%);
text-align: center;
color: white;
}

.cta-section h2 {
color: white;
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta-section p {
font-size: 1.2rem;
margin-bottom: 2rem;
}

.services-detailed {
background-color: var(--cream);
}

.service-detail {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
margin-bottom: 5rem;
align-items: center;
}

.service-detail.reverse {
direction: rtl;
}

.service-detail.reverse > * {
direction: ltr;
}

.service-detail-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-detail-content h2 {
color: var(--dark-walnut);
margin-bottom: 1.5rem;
font-size: 2rem;
}

.service-detail-content p {
color: var(--text-light);
margin-bottom: 1.2rem;
line-height: 1.7;
}

.service-detail-content ul {
list-style: none;
margin: 1.5rem 0;
}

.service-detail-content ul li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
color: var(--text-light);
}

.service-detail-content ul li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--sage);
font-weight: bold;
}

.price-info {
font-weight: 600;
color: var(--sage);
font-size: 1.2rem;
margin: 1.5rem 0;
}

.service-button {
display: inline-block;
background-color: var(--sage);
color: white;
padding: 0.8rem 2rem;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
transition: background-color 0.3s;
}

.service-button:hover {
background-color: var(--dark-walnut);
}

.process-section {
background-color: var(--sand);
}

.process-section h2 {
text-align: center;
color: var(--dark-walnut);
font-size: 2.5rem;
margin-bottom: 3rem;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}

.process-step {
background-color: white;
padding: 2rem;
border-radius: 8px;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-number {
width: 60px;
height: 60px;
background-color: var(--sage);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: bold;
margin: 0 auto 1.5rem;
}

.process-step h3 {
color: var(--dark-walnut);
margin-bottom: 1rem;
}

.process-step p {
color: var(--text-light);
line-height: 1.6;
}

.faq-section {
background-color: white;
}

.faq-section h2 {
text-align: center;
color: var(--dark-walnut);
font-size: 2.5rem;
margin-bottom: 3rem;
}

.faq-list {
max-width: 900px;
margin: 0 auto;
}

.faq-item {
background-color: var(--cream);
padding: 2rem;
margin-bottom: 1.5rem;
border-radius: 8px;
border-left: 4px solid var(--sage);
}

.faq-item h3 {
color: var(--dark-walnut);
margin-bottom: 1rem;
}

.faq-item p {
color: var(--text-light);
line-height: 1.7;
}

.blog-list {
background-color: var(--cream);
}

.blog-posts {
max-width: 1200px;
margin: 0 auto;
}

.blog-post-card {
background-color: white;
border-radius: 8px;
overflow: hidden;
margin-bottom: 3rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
display: grid;
grid-template-columns: 400px 1fr;
gap: 2rem;
}

.post-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-content {
padding: 2rem;
}

.post-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
}

.post-date,
.post-category {
color: var(--sage);
font-weight: 600;
font-size: 0.9rem;
}

.post-content h2 {
margin-bottom: 1rem;
}

.post-content h2 a {
color: var(--dark-walnut);
text-decoration: none;
transition: color 0.3s;
}

.post-content h2 a:hover {
color: var(--sage);
}

.post-content p {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.read-more {
color: var(--sage);
font-weight: 600;
text-decoration: none;
}

.contact-content {
background-color: var(--cream);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
}

.contact-info {
background-color: white;
padding: 2.5rem;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
height: fit-content;
}

.contact-info h2 {
color: var(--dark-walnut);
margin-bottom: 2rem;
}

.info-item {
margin-bottom: 2rem;
}

.info-item h3 {
color: var(--sage);
margin-bottom: 0.5rem;
font-size: 1.1rem;
}

.info-item p {
color: var(--text-light);
line-height: 1.7;
}

.info-item a {
color: var(--text-light);
text-decoration: none;
}

.info-item a:hover {
color: var(--sage);
}

.contact-form-wrapper {
background-color: white;
padding: 2.5rem;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
color: var(--dark-walnut);
margin-bottom: 2rem;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
color: var(--dark-walnut);
margin-bottom: 0.5rem;
font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 0.8rem;
border: 1px solid var(--beige);
border-radius: 4px;
font-family: inherit;
font-size: 1rem;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--sage);
}

.submit-button {
background-color: var(--sage);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 4px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s;
}

.submit-button:hover {
background-color: var(--dark-walnut);
}

.map-section {
background-color: white;
}

.map-wrapper {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.modal {
display: none;
position: fixed;
z-index: 10001;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
}

.modal-content {
background-color: white;
margin: 10% auto;
padding: 3rem;
border-radius: 8px;
width: 90%;
max-width: 500px;
text-align: center;
position: relative;
}

.close-modal {
position: absolute;
right: 1.5rem;
top: 1rem;
font-size: 2rem;
cursor: pointer;
color: var(--text-light);
}

.modal-content h2 {
color: var(--sage);
margin-bottom: 1rem;
}

.modal-content p {
color: var(--text-light);
margin-bottom: 2rem;
}

.modal-button {
background-color: var(--sage);
color: white;
padding: 0.8rem 2rem;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: 600;
}

.blog-post {
background-color: var(--cream);
}

.post-header {
background-color: white;
margin-bottom: 3rem;
}

.post-header-content {
max-width: 900px;
margin: 0 auto;
padding: 3rem 2.5rem 2rem;
}

.post-header img {
width: 100%;
height: auto;
display: block;
}

.post-excerpt {
font-size: 1.3rem;
color: var(--text-light);
margin-top: 1rem;
line-height: 1.6;
}

.post-content {
background-color: white;
padding: 3rem 0;
}

.content-wrapper {
max-width: 900px;
margin: 0 auto;
padding: 0 2.5rem;
}

.content-wrapper h2 {
color: var(--dark-walnut);
margin: 2.5rem 0 1.5rem;
font-size: 2rem;
}

.content-wrapper h3 {
color: var(--dark-walnut);
margin: 2rem 0 1rem;
font-size: 1.5rem;
}

.content-wrapper p {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
margin: 1.5rem 0;
padding-left: 2rem;
color: var(--text-light);
line-height: 1.8;
}

.content-wrapper li {
margin-bottom: 0.5rem;
}

.post-navigation {
margin-top: 4rem;
padding-top: 2rem;
border-top: 2px solid var(--beige);
}

.back-to-blog {
color: var(--sage);
text-decoration: none;
font-weight: 600;
display: inline-block;
margin-bottom: 1.5rem;
}

.post-nav-links {
display: flex;
justify-content: space-between;
gap: 2rem;
}

.nav-prev,
.nav-next {
color: var(--sage);
text-decoration: none;
font-weight: 600;
}

.related-posts {
background-color: var(--sand);
}

@media (max-width: 768px) {
.header-container {
flex-direction: column;
gap: 1.5rem;
}

.primary-nav ul {
flex-direction: column;
gap: 1rem;
text-align: center;
}

.hero-section,
.about-preview .section-container,
.our-story .section-container,
.service-detail,
.contact-wrapper {
grid-template-columns: 1fr;
}

.hero-content h1,
.page-hero h1 {
font-size: 2rem;
}

.info-container {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.services-grid,
.blog-grid,
.team-grid,
.values-grid {
grid-template-columns: 1fr;
}

.blog-post-card {
grid-template-columns: 1fr;
}

.post-image img {
height: 250px;
}

.footer-container {
grid-template-columns: 1fr;
}

.footer-links {
flex-direction: column;
gap: 1rem;
}

.cookie-buttons {
flex-direction: column;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
