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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', sans-serif;
    line-height: 1.3;
    margin-bottom: 0.8em;
    font-weight: 700;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
}

h3 {
    font-size: 1.5em;
    margin-top: 1.3em;
}

h4 {
    font-size: 1.2em;
}

p {
    margin-bottom: 1.2em;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-left: 1.5em;
    margin-bottom: 1.2em;
}

li {
    margin-bottom: 0.5em;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background-color: white;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--primary-color);
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.editorial-hero {
    padding: 4rem 5% 3rem;
    background-color: var(--bg-light);
}

.hero-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.3em;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 900px;
    margin: 3rem auto 0;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 5%;
}

.editorial-intro,
.editorial-problem,
.editorial-insight,
.editorial-continuation,
.editorial-services,
.editorial-form,
.editorial-testimonials,
.editorial-closing,
.editorial-team,
.editorial-approach,
.editorial-values,
.contact-info,
.contact-map,
.contact-process,
.contact-faq,
.contact-cta,
.thanks-content,
.thanks-testimonial,
.legal-content,
.services-detailed,
.editorial-faq {
    padding: 3rem 0;
}

.inline-image {
    margin: 2.5rem auto;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    color: var(--light-text);
}

blockquote p {
    margin-bottom: 0.8rem;
    font-size: 1.1em;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--text-color);
}

.cta-inline {
    padding: 0;
    margin: 3rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.cta-box h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.6em;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1em;
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin: 0.5rem;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--secondary-color);
    text-decoration: none;
}

.service-cards {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.service-card p {
    margin-bottom: 0.8rem;
}

.price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 5% 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2em;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item h3 {
    font-size: 1.3em;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    line-height: 1.8;
}

.note {
    font-size: 0.9em;
    color: var(--light-text);
    font-style: italic;
    margin-top: 0.5rem;
}

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

.thanks-steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-step {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--success-color);
}

.thanks-step h3 {
    margin-top: 0;
    color: var(--success-color);
}

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.legal-page h2 {
    margin-top: 2em;
}

.legal-page h3 {
    margin-top: 1.5em;
}

.service-detailed {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

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

.service-detailed h2 {
    margin-top: 0;
}

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0 0.5rem;
}

.service-duration {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95em;
    color: var(--light-text);
    margin-bottom: 0;
}

.service-note {
    background-color: #fff3cd;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
    color: #856404;
    font-size: 0.95em;
    margin: 1rem 0;
}

.highlight-service {
    background-color: #f0f8ff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.3em;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .editorial-hero {
        padding: 2rem 5%;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    blockquote {
        padding: 1rem 1.5rem;
    }
}