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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #4a7c59;
    --color-accent: #8b7355;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #fafafa;
    --color-bg-alt: #f5f0eb;
    --color-white: #ffffff;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width-content: 720px;
    --max-width-wide: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.25rem;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

address {
    font-style: normal;
    line-height: 1.8;
}

.nav-editorial {
    background-color: var(--color-white);
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--color-secondary);
}

.ad-disclosure {
    font-size: 0.7rem;
    color: var(--color-text-light);
    background-color: #f5f5f5;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    white-space: nowrap;
}

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

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.2s ease;
}

.hero-editorial {
    position: relative;
    background-color: var(--color-bg-alt);
}

.hero-image-container {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

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

.hero-content {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

.page-header {
    background-color: var(--color-bg-alt);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

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

.editorial-main {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.story-section {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.lead-paragraph {
    font-size: 1.25rem;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    line-height: 1.6;
}

.inline-image {
    margin: 2.5rem -4rem;
    border-radius: 4px;
    overflow: hidden;
}

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

.highlight-section {
    background-color: var(--color-bg-alt);
    max-width: 100%;
    padding: 3rem 2rem;
}

.highlight-section > * {
    max-width: var(--max-width-content);
    margin-left: auto;
    margin-right: auto;
}

.highlight-section .inline-image {
    max-width: calc(var(--max-width-content) + 8rem);
    margin-left: auto;
    margin-right: auto;
}

.cta-inline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2rem;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-inline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

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

.services-preview {
    padding: 4rem 2rem;
    background-color: var(--color-white);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 0;
}

.services-grid {
    display: flex;
    gap: 2rem;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-image-wrap {
    height: 200px;
    overflow: hidden;
}

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

.service-card h3 {
    margin: 1.5rem 1.5rem 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.service-card .price {
    display: block;
    margin: 0 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.service-card .service-link {
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--color-secondary);
    border-bottom: 1px solid currentColor;
}

.testimonial-section {
    background-color: #f8f6f3;
    max-width: 100%;
    padding: 4rem 2rem;
}

.testimonial-section h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2.5rem;
}

.testimonial {
    max-width: var(--max-width-content);
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: var(--color-white);
    border-left: 4px solid var(--color-secondary);
    border-radius: 0 6px 6px 0;
}

.testimonial p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: normal;
}

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

.cta-section h2 {
    color: var(--color-white);
    margin-top: 0;
}

.cta-section p {
    max-width: 500px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.services-detailed {
    padding: 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    max-width: var(--max-width-wide);
    margin: 0 auto 4rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    max-width: 500px;
    border-radius: 6px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    margin-top: 0;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
}

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

.booking-section {
    background-color: var(--color-bg-alt);
    max-width: 100%;
    padding: 4rem 2rem;
}

.booking-section h2 {
    margin-top: 0;
}

.consultation-form {
    max-width: var(--max-width-content);
    margin: 2rem auto 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--color-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

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

.form-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-body);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-submit:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.contact-details-section {
    padding: 4rem 2rem;
    background-color: var(--color-white);
}

.contact-grid {
    display: flex;
    gap: 3rem;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.contact-block h2 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-secondary);
}

.email-display {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.coverage-areas {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.coverage-column {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 6px;
}

.coverage-column h3 {
    margin-top: 0;
    color: var(--color-secondary);
}

.coverage-column p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.info-list {
    background-color: var(--color-bg-alt);
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.info-list li {
    color: var(--color-text-light);
}

.values-section {
    background-color: var(--color-white);
    max-width: 100%;
}

.value-block {
    max-width: var(--max-width-content);
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 6px;
}

.value-block h3 {
    margin-top: 0;
    color: var(--color-secondary);
}

.value-block p {
    margin-bottom: 0;
}

.team-section {
    background-color: var(--color-bg-alt);
    max-width: 100%;
}

.thanks-main {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--color-bg-alt);
}

.thanks-container {
    max-width: 600px;
    text-align: center;
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 1.5rem;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

.thanks-details {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 6px;
}

.thanks-details ul {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-link {
    color: var(--color-secondary);
    border-bottom: 1px solid currentColor;
}

.legal-content {
    padding-bottom: 4rem;
}

.legal-content h2 {
    margin-top: 3rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--color-secondary);
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

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

.cookie-table tr:last-child td {
    border-bottom: none;
}

.footer-editorial {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    max-width: var(--max-width-wide);
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links,
.footer-legal {
    flex: 1;
    min-width: 150px;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--color-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links a,
.footer-legal a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-bottom .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.footer-bottom .contact-email {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept,
.cookie-reject {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-family: var(--font-body);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid #ddd;
}

.cookie-reject:hover {
    background-color: #f5f5f5;
}

.cookie-link {
    font-size: 0.85rem;
    color: var(--color-secondary);
}

@media (max-width: 900px) {
    .service-detail-card {
        flex-direction: column;
    }

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

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

    .inline-image {
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-inner {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        border-top: 1px solid #eee;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .ad-disclosure {
        display: none;
    }

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

    .hero-image-container {
        height: 40vh;
    }

    .story-section {
        padding: 2rem 1.5rem;
    }

    .services-preview {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        min-width: 100%;
    }

    .contact-grid {
        gap: 2rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-brand {
        min-width: 100%;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

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

    .page-header {
        padding: 3rem 1rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .thanks-container {
        padding: 2rem 1.5rem;
    }

    .footer-editorial {
        padding: 3rem 1rem 1.5rem;
    }
}
