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

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b4513;
}

.ad-notice {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.editorial-main {
    background-color: #ffffff;
}

.hero-article {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.article-header {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.content-section {
    padding: 2rem 2rem 3rem;
}

.content-section.narrow,
.narrow {
    max-width: 700px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.9rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.content-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
    font-weight: 500;
}

.content-section h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    color: #3a3a3a;
    font-weight: 500;
}

.content-section p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.content-section ul,
.content-section ol {
    margin: 1rem 0 1.5rem 2rem;
}

.content-section li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.inline-image-block {
    margin: 2.5rem 0;
    width: 100%;
}

.inline-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 2px;
}

.cta-inline {
    margin: 2rem 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #a0522d;
}

.services-preview {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

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

.section-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro p {
    font-size: 1.1rem;
    color: #555;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}

.service-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #ebebeb;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8b4513;
    margin: 1.5rem 0 1rem;
}

.select-service-btn {
    padding: 0.8rem 1.8rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #4a4a4a;
}

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 1.8rem;
    background-color: #f7f7f7;
    border-left: 4px solid #8b4513;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.1rem;
    color: #3a3a3a;
    margin-bottom: 0.8rem;
}

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

.form-section {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.form-container {
    background-color: #ffffff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container > p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #a0522d;
}

.disclaimer-section {
    background-color: #f0f0f0;
    padding: 2.5rem 2rem;
    border-top: 1px solid #d5d5d5;
}

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

.disclaimer-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.site-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 3rem 2rem 1.5rem;
}

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

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

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

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

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

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

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.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-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #555;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #666;
}

.page-header {
    padding: 3rem 2rem 2rem;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 3px;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-price-display {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin: 1.5rem 0 1.2rem;
}

.price-label {
    font-size: 0.95rem;
    color: #666;
}

.price-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b4513;
}

.contact-info-block {
    margin: 1.5rem 0 2.5rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 3px solid #8b4513;
}

.contact-info-block p {
    margin-bottom: 0.5rem;
}

.email-display {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c2c2c;
}

.info-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.hours-list {
    list-style: none;
    margin: 1rem 0;
}

.hours-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.thanks-page {
    padding: 4rem 2rem;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f8f0;
    border: 1px solid #d0e8d0;
    border-radius: 3px;
    font-size: 1.05rem;
    color: #2d5a2d;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #8b4513;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #a0522d;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.thanks-additional {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-additional h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-additional ul {
    list-style: none;
}

.thanks-additional li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-additional li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.thanks-image-wrapper {
    margin-top: 3rem;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.thanks-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.legal-content {
    font-size: 0.98rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
}

.legal-content h4 {
    font-size: 1.1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
}

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

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

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-table td {
    color: #4a4a4a;
}

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

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

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

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

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

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

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

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}