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

:root {
    --color-primary: #2c5f2d;
    --color-secondary: #8b7355;
    --color-accent: #d4a574;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #fdfbf7;
    --color-bg-alt: #f5f2ed;
    --color-border: #e0ddd7;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

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

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

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

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

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

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

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-left: 1rem;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-alt);
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    color: #ffffff;
    padding: 4rem 2rem 3rem;
}

.hero-text-overlay h1 {
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 1rem;
}

.hero-text-overlay p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.magazine-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.main-column {
    flex: 2;
}

.sidebar-column {
    flex: 1;
    position: sticky;
    top: 120px;
}

.intro-section,
.philosophy-section {
    margin-bottom: 3rem;
}

.image-break {
    margin: 3rem 0;
    background-color: var(--color-bg-alt);
}

.image-break img {
    width: 100%;
}

.highlight-box {
    background-color: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
}

.highlight-box p {
    margin-bottom: 0;
}

.card-widget {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    padding: 2rem;
    margin-bottom: 2rem;
}

.card-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-list-compact {
    list-style: none;
}

.service-list-compact li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-list-compact li:last-child {
    border-bottom: none;
}

.highlight-card {
    background-color: var(--color-primary);
    color: #ffffff;
}

.highlight-card h3,
.highlight-card p {
    color: #ffffff;
}

.image-card {
    padding: 0;
    overflow: hidden;
}

.image-card img {
    width: 100%;
}

.btn-primary,
.btn-secondary,
.btn-cookie,
.btn-cookie-alt {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #234f24;
    color: #ffffff;
}

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

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

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

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

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

.cta-section-inline {
    background-color: #ffffff;
    padding: 5rem 0;
}

.cta-section-inline h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section-inline > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

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

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

.disclaimer-section {
    background-color: var(--color-bg-alt);
    padding: 2rem 0;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-light);
    text-align: center;
    font-style: italic;
}

.main-footer {
    background-color: var(--color-dark);
    color: #cccccc;
    padding: 4rem 0 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #444444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 2rem;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #234f24;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-hero-compact {
    background-color: var(--color-bg-alt);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero-compact h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.split-text {
    flex: 1.5;
}

.split-visual {
    flex: 1;
    position: sticky;
    top: 120px;
}

.text-block {
    margin-bottom: 3rem;
}

.visual-stack {
    margin-bottom: 2rem;
}

.visual-stack img {
    width: 100%;
    background-color: var(--color-bg-alt);
}

.visual-caption {
    background-color: var(--color-bg-alt);
    padding: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-text-light);
}

.visual-caption p {
    margin-bottom: 0;
}

.stat-boxes {
    display: flex;
    gap: 1rem;
}

.stat-box {
    flex: 1;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.values-section {
    background-color: var(--color-bg-alt);
    padding: 5rem 0;
}

.values-section 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);
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid var(--color-primary);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

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

.team-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-simple {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.cta-simple h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-simple p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.services-detail-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: var(--color-bg-alt);
}

.service-visual img {
    width: 100%;
    height: auto;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.service-includes {
    margin: 2rem 0;
    background-color: var(--color-bg-alt);
    padding: 1.5rem;
}

.service-includes h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style-position: inside;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.service-includes ul li {
    margin-bottom: 0.5rem;
}

.pricing-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-border);
}

.price-label {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
}

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

.contact-prompt-section {
    background-color: var(--color-bg-alt);
    padding: 5rem 0;
    text-align: center;
}

.contact-prompt-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-prompt-section p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
}

.contact-form-side {
    flex: 1.5;
}

.info-block {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.info-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-note {
    background-color: #ffffff;
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.info-note p {
    margin-bottom: 0;
}

.contact-form {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    padding: 2.5rem;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form > p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 6rem 0;
    background-color: var(--color-bg-alt);
}

.thanks-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    margin: 4rem 0;
}

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

.steps-list {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid var(--color-border);
    text-align: center;
}

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

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

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

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

.legal-intro {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p,
.legal-section ul {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

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

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

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

.cookies-table thead {
    background-color: var(--color-bg-alt);
}

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

.cookies-table th {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    color: var(--color-dark);
}

.cookies-table td {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

@media (max-width: 1024px) {
    .magazine-layout,
    .split-layout {
        flex-direction: column;
    }

    .sidebar-column,
    .split-visual {
        position: static;
    }

    .services-grid-layout {
        flex-direction: column;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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

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

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

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

    h2 {
        font-size: 1.6rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-editorial {
        height: 400px;
    }

    .hero-text-overlay {
        padding: 2rem 1rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

    .stat-boxes {
        flex-direction: column;
    }

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