:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f7f5;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.main-header {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

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

.magazine-layout {
    background-color: var(--background-white);
}

.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-overlay {
    position: relative;
    height: 600px;
    background-color: var(--primary-color);
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--background-white);
    max-width: 800px;
    padding: 2rem;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text-overlay p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.intro-columns {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.two-column-editorial {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.column-left {
    flex: 1;
}

.column-right {
    flex: 1;
}

.column-right img {
    border-radius: 4px;
    background-color: var(--secondary-color);
}

.feature-block-offset {
    padding: 4rem 0;
}

.offset-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.text-block-wide {
    flex: 2;
}

.image-block-small {
    flex: 1;
}

.image-block-small img {
    border-radius: 4px;
    background-color: var(--accent-color);
}

.services-preview {
    padding: 5rem 0;
    background-color: var(--background-light);
}

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

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.service-image {
    height: 200px;
    background-color: var(--primary-color);
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.price-tag {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.cta-centered {
    text-align: center;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary, .btn-primary-large, .btn-secondary-large {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

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

.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(--background-white);
}

.btn-primary-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: var(--background-white);
}

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

.btn-secondary-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.narrative-section {
    padding: 4rem 0;
}

.narrative-layout {
    display: flex;
    gap: 3rem;
}

.narrative-text {
    flex: 2;
}

.narrative-callout {
    flex: 1;
    background-color: var(--background-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.narrative-callout blockquote {
    font-style: italic;
    font-size: 1.2rem;
}

.narrative-callout cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.form-section-inline {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.form-wrapper-editorial {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.visual-break {
    margin: 4rem 0;
}

.full-width-image {
    height: 500px;
    background-color: var(--accent-color);
}

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

.final-cta-editorial {
    padding: 5rem 0;
}

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

.cta-text {
    flex: 2;
}

.cta-action {
    flex: 1;
    text-align: center;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--background-white);
}

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

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.page-hero {
    padding: 4rem 0 2rem;
    text-align: center;
    background-color: var(--background-light);
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
}

.services-page {
    background-color: var(--background-white);
}

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

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 8px;
    background-color: var(--primary-color);
}

.service-detail-content {
    flex: 1;
}

.service-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.service-pricing {
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.services-cta {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-page {
    background-color: var(--background-white);
}

.about-hero {
    padding: 4rem 0 2rem;
    text-align: center;
    background-color: var(--background-light);
}

.about-story {
    padding: 4rem 0;
}

.story-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    background-color: var(--secondary-color);
}

.philosophy-section {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.philosophy-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.philosophy-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

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

.expertise-section {
    padding: 4rem 0;
}

.expertise-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.expertise-image {
    flex: 1;
}

.expertise-image img {
    border-radius: 8px;
    background-color: var(--accent-color);
}

.expertise-content {
    flex: 1;
}

.expertise-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1.5rem;
}

.expertise-list li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.values-section {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-column {
    flex: 1;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

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

.team-approach {
    padding: 4rem 0;
}

.team-approach h2 {
    margin-bottom: 2rem;
}

.about-cta {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.contact-page {
    background-color: var(--background-white);
}

.contact-hero {
    padding: 4rem 0 2rem;
    text-align: center;
    background-color: var(--background-light);
}

.contact-content {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 8px;
    background-color: var(--accent-color);
}

.info-block {
    margin-bottom: 2.5rem;
}

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

.transport-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.transport-list li {
    margin-bottom: 0.25rem;
    list-style-type: disc;
}

.response-info {
    padding: 3rem 0;
    background-color: var(--background-light);
}

.response-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.visit-info {
    padding: 3rem 0;
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.visit-content h2 {
    margin-bottom: 1.5rem;
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: var(--background-light);
}

.disclaimer-box {
    padding: 2rem;
    background-color: var(--background-white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.disclaimer-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.thanks-page {
    background-color: var(--background-white);
}

.thanks-content {
    padding: 5rem 0;
}

.thanks-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

.service-info {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 3rem auto;
}

.steps-list {
    list-style: decimal;
    margin-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    list-style-type: decimal;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.additional-info {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.additional-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.info-cards {
    display: flex;
    gap: 2rem;
}

.info-card {
    flex: 1;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

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

.info-card a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.legal-section ol {
    list-style: decimal;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.legal-section ol li {
    margin-bottom: 0.5rem;
    list-style-type: decimal;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
}

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

.cookie-table th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .two-column-editorial,
    .offset-content,
    .narrative-layout,
    .story-layout,
    .expertise-layout,
    .values-columns,
    .contact-layout,
    .cta-content-split,
    .service-detail-layout {
        flex-direction: column;
    }

    .services-grid-magazine,
    .philosophy-grid,
    .info-cards {
        flex-direction: column;
    }

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

    .hero-text-overlay p {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}