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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cookie {
    background-color: #6b8e4e;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #5a7a42;
}

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

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

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

.ad-disclosure {
    background-color: #f5f5f3;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e8e8e8;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #6b8e4e;
}

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-content {
    background-color: #ffffff;
    padding: 3rem 4rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hero-editorial {
    margin: -3rem -4rem 3rem -4rem;
    background-color: #e8e8e8;
}

.hero-editorial img {
    width: 100%;
    height: auto;
    display: block;
}

.story-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #1a1a1a;
}

.story-intro {
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: #4a4a4a;
}

.story-intro p {
    margin-bottom: 1.2rem;
}

.inline-image-section {
    margin: 3rem 0;
    background-color: #f9f9f9;
}

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

.image-caption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.section-heading {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    font-weight: normal;
    color: #1a1a1a;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-content a {
    color: #6b8e4e;
    text-decoration: none;
    border-bottom: 1px solid #6b8e4e;
    transition: color 0.3s;
}

.story-content a:hover {
    color: #5a7a42;
}

.insight-box {
    background-color: #f5f5f3;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #6b8e4e;
}

.insight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.insight-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 3rem;
    background-color: #fafaf8;
    border-left: 3px solid #d4a574;
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

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

.benefits-grid {
    margin: 2.5rem 0;
}

.benefit-card {
    margin-bottom: 3rem;
    background-color: #fafaf8;
}

.benefit-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.benefit-card p {
    margin-bottom: 0;
    color: #4a4a4a;
}

.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.btn-story {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #6b8e4e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-story:hover {
    background-color: #5a7a42;
}

.service-story-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 2px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #2c2c2c;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #6b8e4e;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.editorial-form {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 2px;
}

.selected-service-display {
    background-color: #6b8e4e;
    color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.selected-service-display p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.selected-service-display p:last-child {
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #6b8e4e;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #5a7a42;
}

.trust-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f5f3;
}

.trust-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.trust-section p {
    margin-bottom: 1rem;
}

.trust-section p:last-child {
    margin-bottom: 0;
}

.disclaimer-box {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fff8e6;
    border: 1px solid #e6d8a8;
    border-radius: 4px;
    font-size: 0.95rem;
}

.disclaimer-box p {
    margin-bottom: 0;
    line-height: 1.6;
}

.references-section {
    margin: 3rem 0 0 0;
    padding: 2rem;
    background-color: #f5f5f3;
}

.references-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.references-section ol {
    padding-left: 1.5rem;
}

.references-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.references-section a {
    color: #6b8e4e;
    text-decoration: none;
}

.references-section a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem 2rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

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

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

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

.footer-column a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #d0d0d0;
}

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

    .nav-links {
        gap: 1rem;
    }

    .story-content {
        padding: 2rem 1.5rem;
    }

    .hero-editorial {
        margin: -2rem -1.5rem 2rem -1.5rem;
    }

    .story-title {
        font-size: 2rem;
    }

    .editorial-container {
        padding: 2rem 1rem;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}

.contact-page-container,
.services-page-container,
.about-page-container,
.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #1a1a1a;
}

.page-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-weight: normal;
    color: #2c2c2c;
}

.page-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: normal;
    color: #2c2c2c;
}

.page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.contact-info {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #2c2c2c;
}

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

.service-item {
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #6b8e4e;
}

.service-item h3 {
    margin-top: 0;
}

.service-item .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6b8e4e;
    margin: 1rem 0;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-box {
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.thanks-icon {
    font-size: 4rem;
    color: #6b8e4e;
    margin-bottom: 1.5rem;
}

.thanks-box h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #2c2c2c;
}

.thanks-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #6b8e4e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-home:hover {
    background-color: #5a7a42;
}