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

body {
    font-family: 'Georgia', 'Palatino', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fdfcfa;
}

.ad-disclosure {
    background-color: #f4f1ed;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6b6b6b;
    border-bottom: 1px solid #e0ddd8;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e5e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.editorial-container {
    max-width: 100%;
}

.story-flow {
    width: 100%;
}

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

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

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

.intro-section {
    padding: 60px 0;
}

.opening-paragraph {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3c3c3c;
}

.visual-break {
    margin: 80px 0;
}

.inline-image-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

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

.image-caption {
    text-align: center;
    font-style: italic;
    font-size: 15px;
    color: #7a7a7a;
    margin-top: 15px;
    padding: 0 30px;
}

.content-block {
    padding: 60px 0;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3c3c3c;
}

.service-preview-inline {
    padding: 40px 0;
}

.service-card-compact {
    padding: 40px;
    border-radius: 6px;
    margin: 40px 0;
}

.service-card-compact h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card-compact p {
    margin-bottom: 20px;
}

.inline-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.storytelling-section {
    padding: 60px 0;
}

.storytelling-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}

.storytelling-section p {
    font-size: 18px;
    margin-bottom: 25px;
}

.services-selection {
    padding: 80px 0;
    background-color: #f9f7f4;
}

.services-selection h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.service-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-item {
    padding: 35px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 20px 0;
}

.select-service-btn {
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.service-item.selected {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.editorial-form {
    margin-top: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d4d0ca;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8a7a6a;
}

.form-group input[readonly] {
    background-color: #f4f1ed;
    cursor: not-allowed;
}

.submit-btn {
    padding: 14px 40px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-thought {
    padding: 80px 0;
    background-color: #f4f1ed;
}

.closing-quote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 15px;
}

.quote-attribution {
    text-align: center;
    font-size: 16px;
    color: #6a6a6a;
}

.site-footer {
    background-color: #2c2c2c;
    color: #d4d0ca;
    padding: 60px 0 30px;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 0;
    border-top: 1px solid #4a4a4a;
    font-size: 13px;
    color: #9a9a9a;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px;
    z-index: 2000;
    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 {
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #d4d0ca;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #5a8a5a;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #4a7a4a;
}

.cookie-btn.reject {
    background-color: #7a5a5a;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #6a4a4a;
}

.page-header {
    padding: 80px 0 40px;
    background-color: #f9f7f4;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.page-intro {
    font-size: 20px;
    color: #5a5a5a;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e8e5e0;
}

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.service-detail-header h2 {
    font-size: 28px;
    font-weight: 500;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
}

.service-detail-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
    font-size: 17px;
}

.contact-info-block {
    padding: 40px;
    background-color: #f9f7f4;
    border-radius: 6px;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.6;
}

.small-note {
    font-size: 15px;
    color: #6a6a6a;
    margin-top: 8px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.thanks-page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.lead-text {
    font-size: 22px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.confirmation-details {
    background-color: #f9f7f4;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.next-steps {
    margin: 40px 0;
}

.step-item {
    margin-bottom: 30px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.additional-info {
    margin: 40px 0;
}

.additional-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.back-home-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.back-home-btn:hover {
    background-color: #1a1a1a;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.last-updated {
    margin-top: 40px;
    font-style: italic;
    color: #6a6a6a;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

    .hero-subtext {
        font-size: 17px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-detail-header {
        flex-direction: column;
        gap: 10px;
    }
}