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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #8b7355;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --border-color: #e1e4e8;
    --white: #ffffff;
}

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

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

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.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: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #745d45;
}

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

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

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
}

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

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 400;
}

.editorial-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.3;
}

.editorial-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: var(--secondary-color);
    font-weight: 500;
}

.editorial-content p {
    margin-bottom: 1.5rem;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: var(--background-light);
}

.insight-box {
    background-color: var(--background-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.insight-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.insight-content {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.citation {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.service-story-card {
    margin: 3rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-story-card:last-child {
    border-bottom: none;
}

.service-story-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    object-fit: cover;
    background-color: var(--background-light);
}

.service-story-card h3 {
    font-size: 1.6rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1.5rem;
}

.testimonial-quote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.testimonial-quote p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.cta-section-one,
.cta-about,
.cta-services {
    background-color: var(--background-light);
    margin: 4rem 0;
    padding: 3rem 2rem;
}

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

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #745d45;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-step {
    margin: 2.5rem 0;
}

.process-step h3 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.consultation-form {
    margin: 2rem 0;
}

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

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

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

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

.submit-button {
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #745d45;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.email-display {
    color: var(--white);
    font-style: normal;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
}

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

.reference-item {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.reference-item a {
    color: var(--white);
    text-decoration: underline;
}

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

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

.principle-block {
    margin: 2.5rem 0;
}

.principle-block h3 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.service-detailed {
    margin: 3rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-image {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    object-fit: cover;
    background-color: var(--background-light);
}

.service-includes {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.price-display {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.delivery-time {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.service-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin: 2rem 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.contact-note {
    background-color: var(--background-light);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
    font-size: 0.95rem;
}

.directions-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.directions-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.faq-item {
    margin: 2.5rem 0;
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.thanks-content {
    min-height: 50vh;
}

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

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

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.preparation-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.preparation-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-cta {
    margin: 3rem 0;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thanks-link-button {
    padding: 0.9rem 1.8rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.thanks-link-button:hover {
    background-color: #745d45;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem 0;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.8rem 0 1rem 0;
    color: var(--secondary-color);
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.legal-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

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

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

    .content-narrow {
        padding: 2rem 1.5rem;
    }

    .editorial-content h2 {
        font-size: 1.6rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .thanks-links {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-link-button {
        width: 100%;
        text-align: center;
    }
}