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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1a3d6d;
    --accent-color: #e8943a;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6b6b6b;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 17px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 60%;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.editorial-content {
    background-color: var(--bg-white);
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    padding: 60px 30px 40px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-lead {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

.story-intro {
    padding: 60px 0;
}

.intro-paragraph {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-intro p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-light);
}

.visual-break {
    padding: 40px 0;
}

.inline-image {
    margin: 0;
}

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

.inline-image figcaption {
    font-size: 15px;
    color: var(--text-muted);
    padding: 12px 0;
    font-style: italic;
    text-align: center;
}

.problem-amplification,
.insight-reveal,
.service-story,
.trust-building,
.final-call,
.final-thought {
    padding: 60px 0;
}

.problem-amplification h2,
.insight-reveal h2,
.service-story h2,
.trust-building h2,
.final-call h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--text-dark);
}

.problem-amplification p,
.insight-reveal p,
.service-story p,
.trust-building p,
.final-call p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-light);
}

.story-quote {
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    margin: 40px 0;
    background-color: var(--bg-light);
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
}

.story-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    color: var(--text-muted);
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.insight-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    color: var(--text-light);
}

.service-list-editorial {
    margin-top: 50px;
}

.service-item-story {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-item-story h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-item-story p {
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 25px 0;
    font-size: 18px;
}

.price-label {
    color: var(--text-muted);
    font-size: 16px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service-select {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-story {
    margin: 40px 0;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-muted);
    font-style: normal;
}

.visual-break-secondary {
    padding: 40px 0;
}

.contact-form-editorial {
    margin-top: 40px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

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

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

.form-privacy {
    margin: 25px 0;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.closing-paragraph {
    font-size: 19px;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
}

.footer-minimal {
    background-color: var(--text-dark);
    color: white;
    padding: 40px 30px;
    margin-top: 80px;
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.btn-sticky {
    display: block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #d67f28;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.page-header {
    padding: 80px 0 40px;
    background-color: var(--bg-light);
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.header-lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-story,
.services-intro,
.services-detailed,
.services-cta,
.contact-intro,
.contact-info-section,
.map-placeholder,
.contact-cta {
    padding: 40px 0;
}

.about-story h2,
.services-intro h2,
.contact-info-section h2,
.contact-cta h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.about-story p,
.services-intro p,
.contact-intro p,
.contact-cta p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-light);
}

.principle-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.principle-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.principle-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.principle-item p {
    margin: 0;
}

.service-detail-card {
    margin-bottom: 50px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.service-header {
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.service-detail-card h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin: 0;
}

.service-detail-card h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.service-includes {
    margin: 20px 0;
    padding-left: 25px;
}

.service-includes li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-pricing-detail {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-box {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-message {
    padding: 80px 0;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-message h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-message h2 {
    font-size: 28px;
    margin: 50px 0 30px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 16px;
    margin: 0;
    color: var(--text-light);
}

.thanks-cta {
    margin: 50px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.thanks-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-footer a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 40px 0;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-update {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

.legal-content li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 17px;
}

.legal-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-contact a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

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

.cookie-table td {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 15px 30px;
    }

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

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

    .hero-image-wrapper {
        height: 350px;
    }

    .narrow-content {
        padding: 0 20px;
    }

    .intro-paragraph {
        font-size: 19px;
    }

    .problem-amplification h2,
    .insight-reveal h2,
    .service-story h2,
    .trust-building h2,
    .final-call h2 {
        font-size: 28px;
    }

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

    .contact-form-editorial {
        padding: 30px 20px;
    }

    .service-pricing-detail {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-pricing-detail .btn-service-select {
        width: 100%;
    }

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

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

    .sticky-cta {
        right: 15px;
        bottom: 15px;
    }

    .btn-sticky {
        padding: 14px 20px;
        font-size: 14px;
    }

    .service-detail-card {
        padding: 25px 20px;
    }

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

    .cookie-content p {
        flex: 1 1 100%;
    }

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}

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

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

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

    .problem-amplification h2,
    .insight-reveal h2,
    .service-story h2,
    .trust-building h2,
    .final-call h2 {
        font-size: 24px;
    }

    .service-item-story h3 {
        font-size: 22px;
    }

    .price-amount {
        font-size: 28px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}