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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    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: 20px;
}

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

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

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

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

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

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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2980b9;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.editorial-main {
    background: #fff;
}

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

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

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.story-header {
    max-width: 700px;
    margin: -100px auto 0;
    padding: 40px 30px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-lead {
    font-size: 20px;
    color: #7f8c8d;
    font-style: italic;
    line-height: 1.6;
}

.story-content {
    padding: 60px 30px;
}

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

.content-narrow p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

.inline-image {
    margin: 50px 0;
    background-color: #ecf0f1;
}

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

.inline-image figcaption {
    padding: 16px;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.insight-box {
    background: #ecf0f1;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
}

.insight-box p {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

.service-reveal {
    background: #f8f9fa;
    padding: 40px;
    margin: 50px 0;
    border-radius: 2px;
}

.service-reveal h3 {
    margin-top: 0;
    color: #2c3e50;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-cta {
    background: #2980b9;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #21618c;
    transform: translateY(-2px);
}

.testimonial-inline {
    background: #fff;
    border-left: 3px solid #95a5a6;
    padding: 30px 30px 30px 40px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 19px;
    color: #34495e;
    margin-bottom: 12px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.cta-form-section {
    background: #34495e;
    padding: 50px;
    margin: 60px 0;
    color: #fff;
}

.cta-form-section h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
}

.story-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.form-submit {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-section p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 768px) {
    .story-header h1 {
        font-size: 32px;
    }

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

    .content-narrow p {
        font-size: 16px;
    }

    .content-narrow h2 {
        font-size: 26px;
    }

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

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

    .service-reveal,
    .cta-form-section {
        padding: 30px 20px;
    }
}

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

.services-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-page .intro {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 700px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    margin-bottom: 40px;
    line-height: 2;
}

.contact-info p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 12px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-info strong {
    color: #2c3e50;
}

.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.about-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-page p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 24px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.thanks-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-page p {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2980b9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-page a:hover {
    background: #21618c;
}