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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c5f2d;
    letter-spacing: -0.5px;
}

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

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

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

.hero-editorial {
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 0 30px;
}

.hero-content {
    margin-bottom: 50px;
}

.hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #555;
}

.hero-image-container {
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

.intro-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.narrow-content p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.narrow-content h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.narrow-content h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2a2a2a;
    font-weight: 600;
}

.inline-image-block {
    margin: 50px 0;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
    margin-bottom: 12px;
}

.image-caption {
    font-size: 15px;
    color: #777;
    font-style: italic;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #234a23;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #2c5f2d;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

.highlight-box {
    background-color: #f9f9f9;
    border-left: 4px solid #2c5f2d;
    padding: 30px;
    margin: 40px 0;
}

.highlight-box p {
    font-size: 19px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
}

.highlight-box cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.services-preview {
    margin: 60px 0;
    padding: 40px;
    background-color: #f7f7f7;
    border-radius: 4px;
}

.services-preview h3 {
    margin-top: 0;
    margin-bottom: 30px;
}

.service-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.service-card-small {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.service-card-small h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.service-card-small p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.price-tag {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #2c5f2d;
}

.link-arrow {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #234a23;
}

.form-container-editorial {
    margin: 70px 0;
    padding: 50px;
    background-color: #f0f4f0;
    border-radius: 4px;
}

.form-container-editorial h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.form-container-editorial > p {
    margin-bottom: 30px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234a23;
}

.disclaimer-box {
    margin: 60px 0;
    padding: 30px;
    background-color: #fff8e1;
    border-left: 4px solid #f9a825;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.disclaimer-box p {
    font-size: 15px;
    margin-bottom: 0;
}

.main-footer {
    background-color: #2a2a2a;
    color: #cccccc;
    padding: 50px 0 30px;
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

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

.footer-note {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c5f2d;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 15px;
}

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

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

.btn-cookie-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #234a23;
}

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #333;
}

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

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

.intro-large {
    font-size: 22px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 40px;
}

.about-image-full {
    margin: 40px 0;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

.highlight-section {
    background-color: #f7f7f7;
    padding: 35px;
    margin: 40px 0;
    border-radius: 4px;
}

.highlight-section h3 {
    margin-top: 0;
}

.principles-list {
    list-style: none;
    padding-left: 0;
}

.principles-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.principles-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.team-approach {
    margin: 50px 0;
    padding: 35px;
    background-color: #f0f4f0;
    border-radius: 4px;
}

.team-approach h3 {
    margin-top: 0;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 38px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #666;
}

.cta-block-about {
    margin: 60px 0;
    padding: 40px;
    background-color: #f0f4f0;
    border-radius: 4px;
    text-align: center;
}

.cta-block-about h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.services-list-editorial {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.service-item-detailed {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 50px;
}

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

.service-header {
    margin-bottom: 25px;
}

.service-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
}

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

.service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
}

.service-note {
    margin: 60px 0;
    padding: 35px;
    background-color: #f9f9f9;
    border-left: 4px solid #2c5f2d;
}

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

.cta-services {
    text-align: center;
    margin: 60px 0;
}

.cta-services h3 {
    margin-bottom: 25px;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0;
}

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

.contact-address {
    font-style: normal;
    line-height: 1.8;
    font-size: 17px;
}

.email-display {
    font-size: 19px;
    font-weight: 500;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.email-note {
    font-size: 15px;
    color: #666;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
}

.hours-day {
    font-weight: 500;
}

.hours-note {
    margin-top: 15px;
    font-size: 15px;
    color: #666;
}

.contact-image-container {
    margin: 50px 0;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.contact-info-box {
    margin: 50px 0;
    padding: 35px;
    background-color: #f0f4f0;
    border-radius: 4px;
}

.contact-info-box h3 {
    margin-top: 0;
}

.legal-info-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 4px;
}

.legal-info-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.legal-info-section p {
    font-size: 16px;
    margin-bottom: 10px;
}

.cta-contact {
    text-align: center;
    margin-top: 60px;
}

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

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 40px;
}

.thanks-icon {
    margin: 40px 0;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f4f0;
    border-radius: 4px;
}

.service-selected {
    font-size: 18px;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin: 50px auto;
    max-width: 600px;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-image {
    margin: 50px 0;
}

.additional-info {
    font-size: 16px;
    color: #666;
    margin: 40px 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 15px;
    color: #777;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

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

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0 20px 25px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2c5f2d;
    text-decoration: none;
    border-bottom: 1px solid #2c5f2d;
}

.legal-section a:hover {
    color: #234a23;
    border-bottom-color: #234a23;
}

.legal-section code {
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.website-display {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
}

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

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

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

    .stats-section {
        flex-direction: column;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .hours-item {
        flex-direction: column;
        gap: 5px;
    }
}