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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafaf8;
}

.ad-disclosure {
    background-color: #f4f4f0;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.hero-editorial {
    height: 70vh;
    min-height: 500px;
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-color: #8b7355;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 24px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.story-intro,
.story-content {
    padding: 80px 24px;
}

.text-column {
    max-width: 680px;
    margin: 0 auto;
}

.text-column-centered {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.opening-para {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.text-column p {
    margin-bottom: 28px;
}

.text-column h2 {
    font-size: 36px;
    font-weight: 400;
    margin-top: 56px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.text-column h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #2a2a2a;
}

.text-column ul {
    margin-left: 32px;
    margin-bottom: 28px;
}

.text-column ul li {
    margin-bottom: 12px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 48px 0;
    object-fit: cover;
    background-color: #e8e6e1;
}

.full-width-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #d4d2cd;
}

.visual-break {
    margin: 0;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-text-link {
    color: #2a5a8a;
    text-decoration: underline;
    font-size: 19px;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #1a3a5a;
}

.service-card-inline {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 56px 0;
    flex-wrap: wrap;
}

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

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

.service-card-inline img {
    flex: 0 0 400px;
    width: 400px;
    height: 266px;
    object-fit: cover;
    background-color: #d8d6d1;
}

.service-card-inline h3 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 16px;
}

.price-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 22px;
    font-weight: 600;
    color: #2a5a8a;
}

.btn-primary-inline {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2a5a8a;
    color: #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 17px;
    border-radius: 4px;
    margin: 32px 0;
    transition: background-color 0.3s ease;
}

.btn-primary-inline:hover {
    background-color: #1a3a5a;
}

.testimonial-flow {
    background-color: #f0ede7;
    padding: 80px 24px;
}

.testimonial-flow blockquote {
    max-width: 680px;
    margin: 0 auto 48px;
    font-size: 22px;
    font-style: italic;
    color: #3a3a3a;
    border-left: 4px solid #2a5a8a;
    padding-left: 28px;
}

.testimonial-flow blockquote:last-child {
    margin-bottom: 0;
}

.testimonial-flow cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.inline-form {
    background-color: #f8f7f4;
    padding: 40px;
    border-radius: 6px;
    margin: 48px 0;
}

.inline-form h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 24px;
}

.form-section {
    margin-bottom: 32px;
}

.service-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-option:hover {
    background-color: #f0ede7;
}

.service-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.service-option span {
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.form-fields {
    margin-top: 32px;
}

.field-group {
    margin-bottom: 24px;
}

.field-group label {
    display: block;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #3a3a3a;
}

.field-group input[type="text"],
.field-group input[type="email"],
.field-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0cec9;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    background-color: #fff;
}

.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    border-color: #2a5a8a;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2a5a8a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 32px;
    padding: 16px;
    background-color: #f0ede7;
    border-radius: 4px;
}

.page-header-simple {
    background-color: #f0ede7;
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header-simple h1 {
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.header-lead {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 680px;
    margin: 0 auto;
}

.service-detail-block {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid #e0ddd8;
}

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

.price-display {
    font-size: 32px;
    font-weight: 600;
    color: #2a5a8a;
    margin: 16px 0 24px;
}

.contact-info-block {
    background-color: #f8f7f4;
    padding: 40px;
    border-radius: 6px;
    margin-bottom: 48px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f0ede7;
    padding: 4px 8px;
    border-radius: 3px;
}

.note-text {
    font-size: 15px;
    color: #666;
    margin-top: 12px;
}

.contact-additional h2 {
    font-size: 32px;
}

.thanks-content {
    padding: 120px 24px;
    background-color: #f8f7f4;
}

.thanks-message {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.thanks-message h1 {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.service-confirm {
    background-color: #f0ede7;
    padding: 20px;
    border-radius: 4px;
    margin: 32px 0;
}

.service-selected {
    font-size: 18px;
    color: #2a2a2a;
}

.service-selected strong {
    color: #2a5a8a;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2a5a8a;
    color: #fff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2a5a8a;
    border: 2px solid #2a5a8a;
}

.btn-secondary:hover {
    background-color: #2a5a8a;
    color: #fff;
}

.legal-page .text-column {
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
}

.legal-page h3 {
    font-size: 20px;
}

.site-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 60px 24px 32px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    font-family: Arial, sans-serif;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.97);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 24px;
    z-index: 2000;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    font-family: Arial, sans-serif;
    margin: 0;
}

.cookie-content a {
    color: #8ab4d5;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2a5a8a;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #1a3a5a;
}

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

.btn-cookie-reject:hover {
    background-color: #fff;
    color: #2a2a2a;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 38px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .opening-para {
        font-size: 20px;
    }

    .text-column h2 {
        font-size: 30px;
    }

    .service-card-inline {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

    .hero-overlay h1 {
        font-size: 32px;
    }

    .page-header-simple h1 {
        font-size: 36px;
    }

    .inline-form {
        padding: 24px;
    }

    .thanks-message {
        padding: 40px 24px;
    }
}