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

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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 40px;
}

.intro-narrative .lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 32px;
}

.intro-narrative p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #4a4a4a;
}

.intro-narrative h2 {
    font-size: 32px;
    margin: 56px 0 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.inline-image-block {
    margin: 48px 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 16px 20px;
    font-size: 15px;
    font-style: italic;
    color: #666;
}

.services-inline {
    background-color: #fafafa;
}

.services-inline h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.service-story-block {
    margin-bottom: 56px;
    padding: 32px 0;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-story-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2a2a2a;
}

.service-story-block p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.price-inline {
    font-size: 20px;
    font-weight: 600;
    color: #1a5f3a;
    margin: 20px 0;
}

.cta-inline {
    background-color: #2a5f4a;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cta-inline:hover {
    background-color: #1a4f3a;
}

.testimonial-editorial {
    background-color: #f0f4f2;
}

.testimonial-editorial blockquote {
    border-left: 4px solid #2a5f4a;
    padding-left: 32px;
    font-size: 20px;
    font-style: italic;
    color: #3a3a3a;
}

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

.approach-section h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #4a4a4a;
}

.cta-section-editorial {
    background-color: #f9f9f9;
}

.cta-section-editorial h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.editorial-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #3a3a3a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: white;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a5f4a;
}

.submit-btn {
    background-color: #2a5f4a;
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

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

.disclaimer-section {
    background-color: #f5f5f5;
    padding: 48px 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.footer-editorial {
    background-color: #2a2a2a;
    color: #cccccc;
    padding: 64px 40px 24px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 24px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a4a4a;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cookie-accept {
    background-color: #2a5f4a;
    color: white;
}

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

.cookie-reject {
    background-color: #e0e0e0;
    color: #3a3a3a;
}

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

.contact-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-page-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-page-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.contact-info {
    margin-top: 48px;
}

.contact-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e8e8e8;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.contact-item p {
    font-size: 17px;
    color: #4a4a4a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.about-content h2 {
    font-size: 28px;
    margin: 48px 0 24px;
    color: #2a2a2a;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.about-image {
    width: 100%;
    height: auto;
    margin: 48px 0;
    background-color: #e8e8e8;
}

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

.services-page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.services-page-content h1 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #1a1a1a;
    text-align: center;
}

.service-card {
    background-color: #fafafa;
    padding: 40px;
    margin-bottom: 32px;
    border-left: 4px solid #2a5f4a;
}

.service-card h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2a2a2a;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #1a5f3a;
    margin: 24px 0;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a5f3a;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-content .back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background-color: #2a5f4a;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.thanks-content .back-link:hover {
    background-color: #1a4f3a;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: #2a2a2a;
}

.legal-content h3 {
    font-size: 20px;
    margin: 32px 0 12px;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .narrow-column {
        padding: 48px 20px;
    }

    .intro-narrative .lead-text {
        font-size: 19px;
    }

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

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