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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e67e22;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
}

body {
    font-family: 'Georgia', 'Palatino', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

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

.nav-minimal {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

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

.nav-menu li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

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

.text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.article-hero {
    padding: 4rem 0 3rem;
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-bottom: 3rem;
}

.article-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.hero-image-inline {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.story-intro {
    padding: 3rem 0;
}

.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.15rem 0 0;
    color: var(--accent-color);
}

.story-intro p {
    margin-bottom: 1.5rem;
}

.visual-break {
    padding: 3rem 0;
    text-align: center;
}

.inline-image-medium {
    margin: 0 auto 1rem;
    max-width: 800px;
}

.image-caption {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

.problem-section,
.insight-block,
.trust-build,
.reveal-section,
.story-content,
.services-detail {
    padding: 3rem 0;
}

.problem-section h2,
.insight-block h2,
.trust-build h2,
.trust-build h3,
.reveal-section h2,
.story-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.problem-section p,
.insight-block p,
.trust-build p,
.reveal-section p,
.story-content p {
    margin-bottom: 1.5rem;
}

.inline-cta {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.inline-cta:hover {
    transform: translateX(5px);
}

.quote-highlight {
    padding: 4rem 0;
    background: var(--light-bg);
}

.quote-highlight blockquote {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 3rem;
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    border-left: 4px solid var(--accent-color);
}

.quote-highlight cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #666;
}

.testimonial-inline {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: var(--light-bg);
    border-left: 3px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-name {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.services-pricing {
    padding: 4rem 0;
    background: var(--light-bg);
}

.services-pricing h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.service-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    flex: 1;
    min-width: 250px;
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
}

.service-item p {
    margin-top: 0.5rem;
    color: #555;
}

.urgency-section {
    padding: 3rem 0;
    text-align: center;
    background: #fff9f0;
}

.urgency-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-button-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button-large:hover {
    background: #d35400;
    transform: translateY(-2px);
    color: var(--white);
}

.form-section {
    padding: 4rem 0;
}

.form-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.final-thought {
    padding: 4rem 0;
    text-align: center;
}

.final-thought p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--secondary-color);
    font-style: italic;
}

.footer-minimal {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-copy {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.cookie-banner button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-header {
    padding: 4rem 0 2rem;
    background: var(--light-bg);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.document-date {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.legal-content {
    padding: 3rem 0;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    color: var(--secondary-color);
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 2rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.contact-info {
    padding: 3rem 0;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    margin: 3rem 0;
}

.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-details {
    margin: 3rem 0;
    text-align: left;
}

.thanks-details ul {
    margin-top: 1rem;
    padding-left: 2rem;
}

.thanks-details li {
    margin-bottom: 0.75rem;
}

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

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.thanks-image {
    margin: 3rem auto 0;
    max-width: 600px;
}

.service-detailed {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-visual {
    margin-bottom: 2rem;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-tag {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-info ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-info li {
    margin-bottom: 0.75rem;
}

.service-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.featured-service {
    background: #fff9f0;
    padding: 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
}

.featured-label {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.btn-featured {
    background: var(--accent-color);
}

.btn-featured:hover {
    background: #d35400;
}

.service-cta-block {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.service-cta-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        gap: 0;
    }

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

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

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

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

    body {
        font-size: 17px;
    }

    .quote-highlight blockquote {
        padding: 1.5rem;
        font-size: 1.2rem;
    }

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

    .service-price {
        margin-top: 0.5rem;
    }

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

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .testimonial-inline {
        padding: 2rem 0;
    }

    .price-tag {
        font-size: 1.5rem;
    }
}
