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

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

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

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

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

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #e67e22;
}

.editorial-main {
    background-color: #fdfdfb;
}

.content-article {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    background-color: #f5f5f0;
    border-radius: 2px;
    overflow: hidden;
}

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

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-intro {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.story-section {
    margin-bottom: 80px;
}

.story-content {
    max-width: 650px;
    margin: 0 auto;
}

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

.story-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #444;
}

.inline-image-wrapper {
    margin: 50px 0;
    background-color: #f5f5f0;
    border-radius: 2px;
    overflow: hidden;
}

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

.reference-link {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.reference-link:hover {
    text-decoration: underline;
}

.benefits-inline {
    margin-bottom: 80px;
    background-color: #f9f9f7;
    padding: 60px 0;
    margin-left: -30px;
    margin-right: -30px;
}

.benefit-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 2px;
}

.benefit-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 2px;
    object-fit: cover;
    background-color: #f5f5f0;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 400;
}

.benefit-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.services-preview {
    margin-bottom: 80px;
}

.service-list-editorial {
    margin-top: 40px;
}

.service-item {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-item p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #555;
}

.price-tag {
    font-size: 22px;
    font-weight: bold;
    color: #e67e22;
    margin: 20px 0;
}

.cta-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.trust-section {
    margin-bottom: 80px;
    background-color: #f0f4f8;
    padding: 50px 40px;
    margin-left: -30px;
    margin-right: -30px;
}

.testimonials-inline {
    margin-bottom: 80px;
}

.testimonial-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f7;
    border-left: 4px solid #e67e22;
    font-style: italic;
}

.testimonial-quote p {
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
}

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

.form-section {
    margin-bottom: 80px;
    background-color: #fff;
    padding: 50px 40px;
    margin-left: -30px;
    margin-right: -30px;
    border: 1px solid #e8e8e8;
}

.editorial-form {
    max-width: 500px;
    margin: 30px auto 0;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: inherit;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #e67e22;
    background-color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #e67e22;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin-bottom: 60px;
}

.disclaimer-text {
    background-color: #fff9e6;
    padding: 30px;
    border-left: 3px solid #f39c12;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 500;
}

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

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

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

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

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

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.references-list a {
    color: #bdc3c7;
    text-decoration: none;
}

.references-list a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e67e22;
    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: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #fff;
}

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

.page-header {
    margin-bottom: 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
}

.header-subtitle {
    font-size: 18px;
    color: #777;
    font-style: italic;
}

.contact-details {
    margin-bottom: 60px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.contact-card {
    background-color: #f9f9f7;
    padding: 40px;
    border-radius: 2px;
}

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

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 500;
}

.contact-info {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-note {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
    font-style: italic;
}

.contact-image-container {
    background-color: #f5f5f0;
    border-radius: 2px;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.location-section {
    margin-bottom: 60px;
    background-color: #f9f9f7;
    padding: 50px 40px;
    margin-left: -30px;
    margin-right: -30px;
}

.location-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.access-list {
    list-style: none;
}

.access-list li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.access-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e67e22;
}

.faq-contact,
.services-faq {
    margin-bottom: 60px;
}

.quick-faq,
.services-faq .story-content {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

.faq-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.contact-cta,
.cta-section,
.services-cta-final {
    text-align: center;
    padding: 50px 30px;
    background-color: #f0f4f8;
    margin-left: -30px;
    margin-right: -30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #d35400;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #95a5a6;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 20px;
    margin-left: 12px;
}

.cta-button-secondary:hover {
    background-color: #7f8c8d;
}

.team-section {
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.team-member {
    background-color: #fff;
    padding: 30px;
    border-radius: 2px;
    border: 1px solid #e8e8e8;
}

.team-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 2px;
    object-fit: cover;
    background-color: #f5f5f0;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

.team-member p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.values-section,
.mission-section,
.impact-section {
    margin-bottom: 60px;
}

.values-list {
    margin-top: 30px;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

.value-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.impact-stats {
    list-style: none;
    margin-top: 30px;
}

.impact-stats li {
    margin-bottom: 16px;
    font-size: 17px;
    color: #555;
    padding-left: 25px;
    position: relative;
}

.impact-stats li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.services-intro {
    margin-bottom: 50px;
}

.services-detailed {
    margin-bottom: 60px;
}

.service-detail {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-image-container {
    background-color: #f5f5f0;
    border-radius: 2px;
    overflow: hidden;
}

.service-detail-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.7;
}

.service-info h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-size: 20px;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-size: 17px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.service-cta:hover {
    background-color: #d35400;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f9f9f7;
    padding: 30px;
    border-radius: 2px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.steps-list {
    text-align: left;
    max-width: 450px;
    margin: 0 auto 40px;
}

.steps-list li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thanks-extra h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-extra p {
    font-size: 16px;
    color: #666;
}

.thanks-extra a {
    color: #e67e22;
    text-decoration: underline;
}

.legal-page .story-content {
    max-width: 800px;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #1a1a1a;
    font-weight: 500;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #1a1a1a;
    font-weight: 500;
}

.legal-section ul,
.legal-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.legal-section a {
    color: #e67e22;
    text-decoration: underline;
}

.legal-data {
    list-style: none;
    margin-left: 0;
    background-color: #f9f9f7;
    padding: 20px 30px;
    border-left: 3px solid #e67e22;
}

.legal-data li {
    font-size: 16px;
}

.cookies-list {
    list-style: none;
    margin-left: 0;
}

.cookies-list li {
    background-color: #f9f9f7;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 2px;
}

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

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

    .hero-title {
        font-size: 32px;
    }

    .hero-intro {
        font-size: 18px;
    }

    .story-content h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

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

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

    .thanks-content h1 {
        font-size: 32px;
    }

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

    .cta-button-secondary {
        margin-left: 0;
    }
}