/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

a {
    color: #8b6f47;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6b5537;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.btn-cookie-accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #6b5537;
}

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

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

/* Navigation */
.navbar {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

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

.nav-menu a {
    color: #2c2c2c;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8b6f47;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Main Content - Editorial Style */
.main-content {
    padding-bottom: 3rem;
}

/* Hero Editorial */
.hero-editorial {
    padding: 3rem 1.5rem;
    max-width: 680px;
    margin: 0 auto;
}

.hero-image-container {
    margin-bottom: 2.5rem;
}

.hero-image-container img {
    width: 100%;
    border-radius: 4px;
}

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Narrow Content Container (Editorial Style) */
.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Story Sections */
.story-section {
    padding: 3rem 0;
}

.story-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    line-height: 1.4;
}

.story-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.inline-image img {
    border-radius: 4px;
}

/* Highlight Section */
.highlight-section {
    padding: 4rem 0;
    background-color: #f5f3f0;
}

.editorial-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: #1a1a1a;
    border-left: 4px solid #8b6f47;
    padding-left: 2rem;
    margin: 0;
}

/* Services Preview */
.services-preview {
    padding: 3rem 0;
}

.services-preview h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.services-preview > .narrow-content > p {
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* Service Card Editorial */
.service-card-editorial {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-editorial:last-of-type {
    border-bottom: none;
}

.service-card-editorial h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
}

.service-card-editorial p {
    margin-bottom: 0.8rem;
    color: #555;
}

.service-card-editorial .price {
    font-size: 1.3rem;
    color: #8b6f47;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.cta-inline {
    display: inline-block;
    color: #8b6f47;
    font-weight: bold;
    border-bottom: 2px solid #8b6f47;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #6b5537;
    border-bottom-color: #6b5537;
}

/* Testimonial Section */
.testimonial-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.testimonial-card {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #8b6f47;
    border-radius: 4px;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    color: #777;
    font-size: 0.9rem;
}

/* CTA Section Editorial */
.cta-section-editorial {
    padding: 4rem 0;
    background-color: #f5f3f0;
}

.cta-section-editorial h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.cta-section-editorial p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Editorial Form */
.editorial-form {
    margin-top: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    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: #8b6f47;
}

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

.btn-submit-editorial {
    background-color: #8b6f47;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-submit-editorial:hover {
    background-color: #6b5537;
}

/* Footer Editorial */
.footer-editorial {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 1.5rem 1.5rem;
}

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: normal;
}

.footer-column p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    font-size: 0.9rem;
}

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-button {
    background-color: #8b6f47;
    color: #ffffff;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #6b5537;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Services Page - Detailed */
.services-detailed {
    padding: 3rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail-card:last-of-type {
    border-bottom: none;
}

.service-detail-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
}

.service-price {
    font-size: 1.5rem;
    color: #8b6f47;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

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

.service-description ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.service-description p {
    margin-bottom: 1rem;
    color: #555;
}

.cta-button-service {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
}

.cta-button-service:hover {
    background-color: #6b5537;
}

/* Process List */
.process-list {
    margin-left: 1.5rem;
    margin-top: 1.5rem;
}

.process-list li {
    margin-bottom: 1rem;
    color: #555;
}

.process-list strong {
    color: #2c2c2c;
}

/* Contact Page */
.contact-info-section {
    padding: 3rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-item a {
    color: #8b6f47;
    font-weight: bold;
}

.note-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

/* Simple List */
.simple-list {
    margin-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.simple-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
    color: #2c2c2c;
}

.faq-item p {
    color: #555;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
}

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

.thanks-container h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.thanks-details {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.thanks-details p {
    margin-bottom: 1.5rem;
}

.service-selected {
    margin-top: 1.5rem;
}

.service-highlight {
    color: #8b6f47;
    font-weight: bold;
}

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

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

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

.steps-list li {
    margin-bottom: 1rem;
    color: #555;
}

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

.thanks-cta p {
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8b6f47;
    color: #ffffff;
}

.contact-reminder {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f5f3f0;
    border-radius: 4px;
}

.contact-reminder p {
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.last-updated {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: normal;
}

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

.legal-section p {
    margin-bottom: 1rem;
    color: #555;
}

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

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

.legal-section strong {
    color: #2c2c2c;
}

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

.cookie-table thead {
    background-color: #f5f3f0;
}

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

.cookie-table th {
    font-weight: normal;
    color: #2c2c2c;
}

.cookie-table td {
    color: #555;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

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

    .editorial-quote {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-button {
        padding: 0.8rem 1.3rem;
        font-size: 0.9rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-text-narrow h1 {
        font-size: 1.6rem;
    }

    .service-card-editorial h3 {
        font-size: 1.2rem;
    }

    .sticky-cta {
        left: 1rem;
        right: 1rem;
    }

    .sticky-cta-button {
        width: 100%;
        text-align: center;
    }
}
