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

:root {
    --primary-color: #2d5016;
    --primary-light: #4a7a28;
    --primary-dark: #1a3009;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --bg-cream: #faf8f5;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

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

button {
    cursor: pointer;
    border: none;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.nav-disclosure {
    background-color: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 4px;
}

.disclosure-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    border-radius: 4px;
    font-weight: 500;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie-accept:hover {
    background-color: var(--primary-light);
}

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

.btn-cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.hero-magazine {
    background-color: var(--bg-cream);
    padding: 4rem 2rem;
}

.hero-overlay {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 320px;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.hero-image-block {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-narrative {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.narrative-container {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.narrative-col-main {
    flex: 2;
    min-width: 320px;
}

.narrative-col-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.narrative-col-side {
    flex: 1;
    min-width: 280px;
}

.highlight-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.highlight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.services-preview {
    padding: 5rem 0;
    background-color: var(--bg-cream);
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card-large {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card-small {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-large:hover .service-image img,
.service-card-small:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: var(--primary-light);
}

.testimonials-inline {
    padding: 5rem 0;
    background-color: var(--bg-light);
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-left: 3px solid var(--primary-color);
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.booking-section {
    padding: 5rem 0;
}

.booking-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.booking-form-wrapper {
    flex: 1;
    min-width: 320px;
}

.booking-form-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.booking-intro {
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.booking-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--bg-white);
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--primary-light);
}

.booking-image {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.booking-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.disclaimer-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.disclaimer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.about-page,
.services-page,
.contact-page,
.legal-page,
.thanks-page {
    min-height: 60vh;
}

.about-hero,
.services-hero,
.contact-hero {
    background-color: var(--bg-cream);
    padding: 4rem 2rem;
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-subtitle,
.services-subtitle,
.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 5rem 2rem;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 320px;
}

.story-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
}

.about-values {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.values-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-team {
    padding: 5rem 2rem;
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.team-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-medium);
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-block {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.approach-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-partnership {
    padding: 5rem 2rem;
    background-color: var(--bg-cream);
}

.partnership-container {
    max-width: 900px;
    margin: 0 auto;
}

.partnership-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-price-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-description {
    margin-bottom: 2rem;
}

.service-description h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-description ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-description ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.booking-cta-section {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.booking-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.booking-cta-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.booking-cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-cta-large:hover {
    background-color: var(--bg-cream);
}

.contact-content {
    padding: 3rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    min-width: 320px;
}

.contact-image-block img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-light);
    margin-bottom: 1.5rem;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.contact-faq {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.legal-content {
    padding: 3rem 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
}

.legal-container ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.thanks-content {
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.selected-service-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.step-item {
    flex: 1;
    min-width: 220px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.step-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-text-block h1 {
        font-size: 2.3rem;
    }

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

    .narrative-container {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-small {
        flex: 1 1 100%;
    }

    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
    }
}