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

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

.editorial-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

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

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

.nav-menu a:hover {
    color: #666;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2a2a2a;
}

.editorial-content {
    max-width: 720px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.story-header {
    margin-bottom: 3rem;
}

.story-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.story-lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.story-image {
    margin: 3rem 0;
    background-color: #e8e8e8;
}

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

.story-section {
    margin-bottom: 3rem;
}

.story-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.story-section ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.story-section ul li {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.inline-image {
    margin: 2.5rem 0;
    background-color: #e8e8e8;
}

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

.inline-cta {
    background-color: #f8f8f8;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-left: 4px solid #2a2a2a;
}

.inline-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.inline-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.cta-link {
    display: inline-block;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.cta-link:hover {
    background-color: #444;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1rem;
    color: #555;
}

.service-price {
    font-weight: 600;
    color: #2a2a2a;
    font-size: 1.2rem;
}

.select-service {
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    margin: 1rem 1.5rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 3px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.select-service:hover {
    background-color: #444;
}

.testimonials-inline {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonials-inline blockquote {
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 3px solid #ccc;
}

.testimonials-inline p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 0.8rem;
    color: #333;
}

.testimonials-inline cite {
    font-style: normal;
    color: #777;
    font-size: 0.95rem;
}

.form-section {
    background-color: #f8f8f8;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-left: 4px solid #2a2a2a;
}

.form-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.form-section p {
    margin-bottom: 1.5rem;
    color: #555;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.editorial-form label {
    font-weight: 600;
    color: #2a2a2a;
    font-size: 1rem;
}

.editorial-form input,
.editorial-form select {
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.editorial-form button[type="submit"] {
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 3px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
    margin-top: 0.5rem;
}

.editorial-form button[type="submit"]:hover {
    background-color: #444;
}

.selected-service-display {
    background-color: #e8f4e8;
    padding: 1rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.selected-service-display p {
    margin: 0;
    color: #2a2a2a;
}

.disclaimer-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.editorial-footer {
    background-color: #2a2a2a;
    color: #ffffff;
    margin-top: 6rem;
    padding: 3rem 2rem 1.5rem;
}

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

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

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

.footer-column p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom p {
    color: #999;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 3px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.cookie-btn.accept {
    background-color: #4caf50;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #45a049;
}

.cookie-btn.reject {
    background-color: #666;
    color: #ffffff;
}

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

.contact-info {
    margin: 2rem 0;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #555;
}

.legal-page .story-section h2 {
    margin-top: 2rem;
}

.thanks-page .story-header h1 {
    color: #2a7d2e;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 2rem;
    }

    .story-header h1 {
        font-size: 2.2rem;
    }

    .story-lead {
        font-size: 1.1rem;
    }

    .editorial-content {
        margin: 2rem auto;
        padding: 0 1.5rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}