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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

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

.btn-cookie-accept {
    background: #27ae60;
    color: white;
}

.btn-cookie-accept:hover {
    background: #229954;
}

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

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

.main-nav {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

.story-flow {
    background: #fff;
}

.story-header {
    margin-bottom: 60px;
}

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

.story-header h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
}

.lead-text {
    font-size: 22px;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
}

.hero-figure {
    width: 100%;
    margin: 0;
}

.hero-figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

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

.text-column {
    max-width: 100%;
}

.text-column p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #333;
}

.text-column h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 48px 0 24px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.text-column h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 32px 0 16px 0;
    color: #2c3e50;
    font-weight: 600;
}

.inline-cta {
    background: #ecf9ff;
    padding: 32px;
    border-left: 4px solid #3498db;
    margin: 48px 0;
    border-radius: 4px;
}

.inline-cta p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #3498db;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.insight-block {
    margin: 60px 0;
}

.feature-list {
    margin-top: 32px;
}

.feature-item {
    margin-bottom: 40px;
    padding-left: 24px;
    border-left: 3px solid #e0e0e0;
}

.feature-item h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.feature-item p {
    font-size: 18px;
    color: #555;
}

.inline-image {
    margin: 60px 0;
    width: 100%;
}

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

.inline-image figcaption {
    margin-top: 12px;
    font-size: 15px;
    color: #777;
    font-style: italic;
    text-align: center;
}

.case-narrative {
    margin: 60px 0;
}

.quote-block {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.quote-block blockquote {
    font-size: 24px;
    line-height: 1.5;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
}

.quote-block cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    color: #777;
    font-style: normal;
}

.methodology-section {
    margin: 80px 0;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.service-card.selected {
    border-color: #27ae60;
    background: #f0fdf4;
}

.service-card h3 {
    font-size: 22px;
    margin: 0 0 16px 0;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.btn-select-service {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #2980b9;
}

.service-card.selected .btn-select-service {
    background: #27ae60;
}

.service-card.selected .btn-select-service:hover {
    background: #229954;
}

.social-proof {
    margin: 80px 0;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.testimonial {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #777;
    font-style: normal;
    font-weight: 600;
}

.urgency-driver {
    margin: 60px 0;
    padding: 40px;
    background: #fff3cd;
    border-radius: 8px;
}

.cta-section-large {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.cta-section-large h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: white;
}

.cta-section-large > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.editorial-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-top: 32px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

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

.final-thought {
    margin: 80px 0 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.final-thought p {
    font-size: 20px;
    line-height: 1.6;
    color: #2c3e50;
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .text-column p {
        font-size: 17px;
    }

    .text-column h2 {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

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

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

.page-header {
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.content-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.content-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 32px 0 16px 0;
}

.content-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin: 16px 0 24px 24px;
}

.content-section li {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.service-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.service-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.service-item .price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 16px;
}

.contact-info {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.contact-item strong {
    display: block;
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 17px;
    color: #333;
    margin: 0;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.team-member h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.team-member .role {
    font-size: 16px;
    color: #777;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px auto;
    font-size: 48px;
    color: white;
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.thanks-container p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.thanks-container .selected-service {
    background: #f0fdf4;
    border: 2px solid #27ae60;
    padding: 24px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-container .selected-service strong {
    display: block;
    font-size: 16px;
    color: #27ae60;
    margin-bottom: 8px;
}

.thanks-container .selected-service p {
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0;
}

.btn-home {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 32px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
}
