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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.75rem;
    text-align: center;
    padding: 0.4rem;
    border-bottom: 1px solid #dee2e6;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.editorial-container {
    background-color: #ffffff;
}

.story-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #34495e;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    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: #ffffff;
    padding: 4rem 2rem 3rem;
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero-text-overlay .subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro-narrative {
    background-color: #f8f9fa;
}

.opening-graf {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.intro-narrative p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.inline-visual-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.image-with-caption {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.image-with-caption img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.caption {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

.problem-amplification {
    background-color: #ecf0f1;
}

.problem-amplification h2,
.trust-building-narrative h2,
.service-preview-inline h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.insight-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-preview-inline {
    background-color: #ffffff;
}

.services-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card-inline {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.service-card-inline h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card-inline p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pricing-inline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

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

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

.trust-building-narrative {
    background-color: #ffffff;
}

.inline-image-break {
    margin: 2.5rem 0;
}

.inline-image-break img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonials-editorial {
    background-color: #f8f9fa;
}

.testimonial-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.cta-section-editorial {
    background-color: #ecf0f1;
}

.editorial-form {
    margin-top: 2rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.6;
    font-style: italic;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.85rem;
    color: #95a5a6;
}

.page-hero-simple {
    background-color: #34495e;
    color: #ffffff;
}

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

.intro-text {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-block {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.service-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-tag {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.service-detail-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-block h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-detail-block ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-block li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.about-narrative,
.team-philosophy,
.values-section,
.approach-detail,
.why-different,
.who-we-serve {
    background-color: #ffffff;
}

.about-narrative:nth-of-type(even),
.values-section {
    background-color: #f8f9fa;
}

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

.value-block h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.value-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-info-section {
    background-color: #ffffff;
}

.contact-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-block:last-child {
    border-bottom: none;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-detail {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 0.8rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.location-context,
.contact-expectations {
    background-color: #f8f9fa;
}

.thanks-hero {
    background-color: #27ae60;
    color: #ffffff;
}

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

.thanks-details,
.thanks-resources {
    background-color: #ffffff;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.next-steps {
    margin-top: 2rem;
}

.step-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid #3498db;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

.preparation-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-continue {
    background-color: #f8f9fa;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.text-link {
    color: #3498db;
    text-decoration: none;
    font-size: 1.05rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.text-link:hover {
    border-bottom-color: #3498db;
}

.legal-content {
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.legal-content strong {
    color: #2c3e50;
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    border: 1px solid #ddd;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .hero-text-overlay .subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .narrow-column {
        padding: 2rem 1.5rem;
    }

    .opening-graf {
        font-size: 1.15rem;
    }

    .service-card-inline {
        padding: 1.5rem;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .hero-editorial {
        height: 400px;
    }
}