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

:root {
    --primary-color: #1a2b3c;
    --secondary-color: #2c4a63;
    --accent-color: #8b4513;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --border-color: #e1e4e8;
    --white: #ffffff;
    --success-green: #2d6a4f;
    --error-red: #c1121f;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
    font-style: italic;
    font-family: 'Georgia', serif;
}

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

section {
    margin-bottom: 4rem;
}

.intro-narrative p,
.problem-amplification p,
.insight-reveal p,
.storytelling-section p,
.trust-building p {
    margin-bottom: 1.5rem;
}

.inline-image,
.inline-image-left,
.inline-image-wide {
    margin: 2.5rem 0;
}

.inline-image img,
.inline-image-left img,
.inline-image-wide img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e8e8e8;
    min-height: 350px;
}

figcaption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 0.75rem;
}

.inline-image-left {
    float: left;
    width: 100%;
    margin: 2rem 0;
}

.cta-inline {
    margin: 2.5rem 0;
    text-align: left;
}

.link-arrow {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: bold;
}

.link-arrow:hover {
    color: var(--secondary-color);
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: #555;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #777;
}

.insight-list {
    margin: 2rem 0;
}

.insight-item {
    margin-bottom: 2.5rem;
}

.insight-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.cta-section-block {
    background-color: var(--light-bg);
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.two-column-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.testimonials-inline {
    margin: 3rem 0;
}

.testimonial {
    background-color: var(--light-bg);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--secondary-color);
}

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

.testimonial cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.service-cards {
    margin: 2.5rem 0;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

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

.btn-select-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--accent-color);
}

.urgency-box {
    background-color: #fff8dc;
    border: 2px solid var(--accent-color);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.form-container {
    background-color: var(--light-bg);
    padding: 3rem;
    margin: 3rem 0;
}

.contact-form {
    max-width: 100%;
}

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

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

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

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

.btn-submit {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

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

.closing-thought {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-message {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--white);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 5%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 43, 60, 0.98);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-green);
    color: var(--white);
}

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

.btn-reject {
    background-color: #666;
    color: var(--white);
}

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

.services-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.styled-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.styled-list li {
    margin-bottom: 0.75rem;
}

.about-page .origin-story,
.about-page .methodology,
.about-page .team-philosophy,
.about-page .values-section {
    margin-bottom: 3rem;
}

.principle-item {
    margin-bottom: 2rem;
}

.principle-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.impact-section blockquote {
    margin: 2rem 0;
}

.looking-forward {
    margin-top: 3rem;
}

.service-detail-card {
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    margin-bottom: 3rem;
    background-color: var(--white);
}

.featured-service {
    border: 2px solid var(--accent-color);
    background-color: #fffef8;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.service-header h2 {
    font-size: 2rem;
}

.service-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-color);
    font-family: 'Arial', sans-serif;
}

.service-description h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.service-timeline {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--light-bg);
    border-left: 3px solid var(--secondary-color);
}

.faq-section {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item p {
    line-height: 1.8;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.process-steps {
    margin: 2rem 0;
}

.step {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.visitor-info,
.other-inquiries,
.privacy-note {
    margin: 3rem 0;
}

.additional-info h2 {
    margin-bottom: 1.5rem;
}

.thanks-page .thanks-message {
    background-color: var(--light-bg);
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--success-green);
}

.step-item {
    margin-bottom: 2rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.resource-list {
    list-style: none;
    margin: 1.5rem 0;
}

.resource-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.resource-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.legal-page .legal-section {
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
}

.legal-page p {
    margin-bottom: 1rem;
}

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

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

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

@media (min-width: 768px) {
    .nav-links {
        gap: 2.5rem;
    }

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

    .two-column-text {
        flex-direction: row;
        gap: 3rem;
    }

    .column {
        flex: 1;
    }

    .inline-image-left {
        width: 45%;
        margin-right: 2rem;
        margin-bottom: 1rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 0 0 calc(50% - 1.25rem);
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .editorial-content {
        max-width: 780px;
    }

    .contact-item {
        flex: 0 0 calc(33.333% - 1.67rem);
    }
}
