* {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #888;
    font-family: 'Arial', sans-serif;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 3px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c2c2c;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

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

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-accept {
    background-color: #6b4e3d;
    color: #ffffff;
}

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

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

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

.hero-editorial {
    background-color: #ffffff;
    padding: 80px 20px 60px;
    border-bottom: 1px solid #e0e0e0;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.hero-subtext {
    font-size: 22px;
    color: #666;
    font-style: italic;
}

.editorial-flow {
    background-color: #ffffff;
    padding: 60px 0;
}

.lead-text {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.editorial-flow h2 {
    font-size: 32px;
    margin: 50px 0 24px;
    color: #2c2c2c;
    font-weight: 400;
}

.editorial-flow h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: #3a3a3a;
    font-weight: 400;
}

.editorial-flow p {
    margin-bottom: 20px;
    font-size: 18px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.insight-block {
    background-color: #f9f7f4;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #6b4e3d;
}

.insight-block h3 {
    margin-top: 0;
    color: #6b4e3d;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.citation {
    color: #6b4e3d;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

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

.cta-inline {
    background-color: #6b4e3d;
    color: #ffffff;
    padding: 35px;
    margin: 50px 0;
    text-align: center;
    border-radius: 4px;
}

.cta-inline p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #6b4e3d;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #6b4e3d;
    text-decoration: none;
    border: 2px solid #6b4e3d;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #6b4e3d;
    color: #ffffff;
}

.services-preview {
    background-color: #f5f3f0;
    padding: 80px 20px;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    max-width: 680px;
    margin: 0 auto 50px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 4px;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 400;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-family: 'Arial', sans-serif;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #6b4e3d;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.btn-select {
    padding: 12px 24px;
    background-color: #6b4e3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #8b6e5d;
    transform: translateY(-2px);
}

.form-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-section > .content-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 520px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6b4e3d;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #6b4e3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #8b6e5d;
    transform: translateY(-2px);
}

.references {
    background-color: #f9f7f4;
    padding: 60px 20px;
}

.references h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 400;
}

.reference-list {
    padding-left: 20px;
}

.reference-list li {
    margin-bottom: 15px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.reference-list a {
    color: #6b4e3d;
    word-break: break-all;
}

.disclaimer {
    background-color: #fff9e6;
    padding: 40px 20px;
    border-top: 1px solid #e6d9b8;
}

.disclaimer-text {
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    color: #666;
    line-height: 1.7;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ccc;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    color: #888;
}

.page-hero {
    background-color: #f5f3f0;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
}

.hero-description {
    font-size: 20px;
    color: #666;
    margin-top: 15px;
}

.about-content {
    background-color: #ffffff;
    padding: 60px 20px;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.mission-section,
.values-section {
    margin-bottom: 60px;
}

.mission-section h2,
.values-section h2,
.approach-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.mission-section p,
.values-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.approach-section {
    margin-bottom: 60px;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.approach-card {
    background-color: #f9f7f4;
    padding: 30px;
    border-radius: 4px;
    flex: 1;
    min-width: 260px;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 400;
    color: #6b4e3d;
}

.approach-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.services-detailed {
    background-color: #ffffff;
    padding: 60px 20px;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #f5f5f5;
}

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

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-features li {
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    padding: 10px 0 10px 25px;
    position: relative;
    color: #4a4a4a;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6b4e3d;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #6b4e3d;
    font-family: 'Arial', sans-serif;
}

.cta-section {
    background-color: #f5f3f0;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.contact-info {
    background-color: #ffffff;
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-details > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

.contact-note {
    background-color: #f9f7f4;
    padding: 25px;
    border-radius: 4px;
    margin-top: 20px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.thanks-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f9f7f4;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.selected-service-info {
    font-size: 17px;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    background-color: #fafafa;
    padding: 35px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    background-color: #ffffff;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 400;
}

.last-updated {
    font-size: 14px;
    color: #888;
    font-family: 'Arial', sans-serif;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 400;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content-narrow h1 {
        font-size: 36px;
    }

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

    .editorial-flow h2 {
        font-size: 28px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

    .about-intro,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}