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

:root {
    --primary-color: #2c5f7c;
    --primary-dark: #1a3d52;
    --accent-color: #e8a44c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand a {
    text-decoration: none;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.hero-story {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 5rem 5% 4rem;
}

.hero-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero-story h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.hero-image {
    margin-top: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.story-section {
    padding: 4rem 5%;
}

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

.story-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
}

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

.story-section h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.story-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.inline-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-callout {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.story-callout p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.story-callout cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.inline-cta {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.inline-cta:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.insight-section {
    background-color: var(--bg-light);
    padding: 4rem 5%;
}

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

.insight-block h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.problem-amplification {
    padding: 4rem 5%;
}

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

.problem-list li {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

.trust-building {
    background-color: var(--bg-light);
    padding: 4rem 5%;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.approach-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.approach-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.results-section {
    padding: 4rem 5%;
}

.result-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.result-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.services-reveal {
    background-color: var(--bg-light);
    padding: 4rem 5%;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.service-card h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    color: var(--text-medium);
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-select {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.urgency-section {
    padding: 4rem 5%;
}

.urgency-callout {
    background-color: #fff3e0;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

.urgency-callout p {
    font-weight: 600;
    color: var(--text-dark);
}

.form-section {
    background-color: var(--bg-light);
    padding: 4rem 5%;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.final-cta {
    padding: 4rem 5%;
    text-align: center;
}

.btn-primary,
.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary-large {
    padding: 1.3rem 3rem;
    font-size: 1.3rem;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-block {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.cta-block h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 5% 1.5rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    padding: 1rem 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

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

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

.sticky-content span {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 4rem 5%;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-story {
    padding: 4rem 5%;
}

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

.commitment-list li {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

.about-cta {
    background-color: var(--bg-light);
    padding: 3rem 5%;
    text-align: center;
}

.about-cta h2 {
    margin-bottom: 1rem;
}

.services-page {
    padding: 2rem 5% 4rem;
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    text-align: center;
}

.services-faq {
    background-color: var(--bg-light);
    padding: 4rem 5%;
}

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

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-medium);
}

.services-cta {
    padding: 3rem 5%;
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 1rem;
}

.contact-page {
    padding: 3rem 5%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-medium);
}

.contact-item a {
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-note {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-note h3 {
    margin-bottom: 1rem;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
}

.contact-cta h3 {
    margin-bottom: 1rem;
}

.thanks-page {
    padding: 4rem 5%;
    text-align: center;
}

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

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 500px;
}

.thanks-details p {
    margin-bottom: 0.5rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
    text-align: left;
}

.step-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.thanks-cta h3 {
    margin-bottom: 1rem;
}

.legal-page {
    padding: 3rem 5%;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.legal-page .updated {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

.legal-page ul li {
    margin-bottom: 0.6rem;
    color: var(--text-medium);
}

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

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

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

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

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

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 5%;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

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

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

    .story-section h2 {
        font-size: 1.6rem;
    }

    .service-price {
        font-size: 1.8rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

    .cookie-table {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-story h1 {
        font-size: 2.4rem;
    }

    .footer-content {
        flex-wrap: wrap;
    }
}