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

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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2px;
    color: #2c2c2c;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c2c2c;
}

.editorial-content {
    background-color: #fff;
}

.story-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    font-weight: normal;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

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

.story-intro {
    background-color: #f9f9f9;
}

.intro-paragraph {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.story-insight {
    background-color: #fff;
}

.story-insight h2 {
    font-size: 38px;
    font-weight: normal;
    margin-bottom: 40px;
    color: #2c2c2c;
}

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

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

.story-insight p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.story-approach {
    background-color: #f5f5f5;
}

.story-approach h2 {
    font-size: 38px;
    font-weight: normal;
    margin-bottom: 35px;
    color: #2c2c2c;
}

.story-approach > .content-narrow > p {
    font-size: 18px;
    margin-bottom: 45px;
    color: #555;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.principle-item {
    padding: 30px;
    background-color: #fff;
    border-left: 3px solid #2c2c2c;
}

.principle-item h3 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.principle-item p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.services-editorial {
    background-color: #fff;
    padding: 100px 0;
}

.services-editorial h2 {
    font-size: 42px;
    font-weight: normal;
    margin-bottom: 25px;
    color: #2c2c2c;
    text-align: center;
}

.services-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 70px;
    color: #666;
}

.service-card-story {
    display: flex;
    margin-bottom: 80px;
    gap: 50px;
    align-items: flex-start;
}

.service-card-story:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-details {
    flex: 1;
    padding: 20px 0;
}

.service-details h3 {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-details > p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.includes-list {
    list-style: none;
    margin-bottom: 30px;
}

.includes-list li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.includes-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-size: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: normal;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.cta-select {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cta-select:hover {
    background-color: #1a1a1a;
}

.testimonials-inline {
    background-color: #f9f9f9;
}

.testimonials-inline h2 {
    font-size: 38px;
    font-weight: normal;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.testimonial-quote {
    margin-bottom: 45px;
    padding-left: 30px;
    border-left: 3px solid #ccc;
}

.testimonial-quote p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-quote cite {
    font-size: 15px;
    font-style: normal;
    color: #888;
}

.consultation-form-section {
    background-color: #fff;
}

.consultation-form-section h2 {
    font-size: 38px;
    font-weight: normal;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.consultation-form-section > .content-narrow > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.editorial-form {
    background-color: #f9f9f9;
    padding: 40px;
    margin-top: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-family: inherit;
}

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

.form-submit {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.form-submit:hover {
    background-color: #1a1a1a;
}

.final-thought {
    background-color: #2c2c2c;
    color: #f0f0f0;
}

.closing-statement {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #f0f0f0;
}

.final-thought p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.7;
}

.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
}

.email-non-clickable {
    color: #aaa;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cookie-accept {
    background-color: #fff;
    color: #2c2c2c;
}

.cookie-accept:hover {
    background-color: #f0f0f0;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

    .service-card-story {
        flex-direction: column !important;
        gap: 30px;
    }

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

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