:root {
    --color-primary: #1a4d5e;
    --color-secondary: #e67e22;
    --color-text: #2c3e50;
    --color-light: #ecf0f1;
    --color-white: #ffffff;
    --color-border: #bdc3c7;
    --color-hover: #134152;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --max-narrow: 680px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    font-size: 18px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 94, 0.97);
    color: var(--color-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--color-secondary);
}

.cookie-banner.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 900px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

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

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

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

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

.nav-minimal {
    background: var(--color-white);
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.editorial-layout {
    padding: 3rem 1.5rem;
    max-width: 100%;
}

.hero-editorial {
    margin-bottom: var(--spacing-xl);
}

.hero-content-narrow,
.narrow-text {
    max-width: var(--max-narrow);
    margin: 0 auto;
}

.hero-content-narrow h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image-inline {
    margin: 3rem auto;
    max-width: 1000px;
}

.hero-image-inline img,
.inline-image-editorial img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.content-block {
    margin: 4rem auto;
}

.narrow-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.narrow-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--color-primary);
}

.narrow-text p {
    margin-bottom: 1.5rem;
}

.narrow-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.narrow-text li {
    margin-bottom: 0.8rem;
}

.pullquote {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    border-left: 5px solid var(--color-secondary);
    background: var(--color-light);
}

.pullquote blockquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-primary);
}

.content-block-image {
    max-width: 1100px;
    margin: 5rem auto;
}

.split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.text-side,
.image-side {
    flex: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.image-side img {
    width: 100%;
    border-radius: 8px;
}

.cta-inline {
    text-align: center;
    margin: 4rem auto;
}

.cta-link {
    color: var(--color-secondary);
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--color-primary);
}

.content-block-offset {
    background: var(--color-light);
    padding: 4rem 2rem;
    margin: 5rem 0;
}

.services-editorial {
    max-width: 900px;
    margin: 0 auto;
}

.services-editorial h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--color-primary);
}

.intro-services {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.service-details li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-primary);
    margin: 1.5rem 0;
}

.btn-select-service,
.btn-service {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-select-service:hover,
.btn-service:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.form-section {
    max-width: var(--max-narrow);
    margin: 5rem auto;
}

.contact-form-editorial {
    background: var(--color-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-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #666;
}

.btn-submit {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--color-hover);
}

.testimonial-section {
    max-width: var(--max-narrow);
    margin: 5rem auto;
}

.testimonial {
    background: var(--color-light);
    padding: 2.5rem;
    border-left: 5px solid var(--color-primary);
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.final-cta {
    max-width: 900px;
    margin: 5rem auto;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2c5f72 100%);
    padding: 4rem 3rem;
    border-radius: 8px;
    text-align: center;
    color: var(--color-white);
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.site-footer {
    background: #1a2930;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

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

.footer-column a:hover {
    color: var(--color-secondary);
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.page-header-editorial {
    margin-bottom: 3rem;
}

.inline-image-editorial {
    max-width: 1000px;
    margin: 3rem auto;
}

.team-values {
    margin: 3rem auto;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--color-light);
    border-left: 4px solid var(--color-secondary);
    border-radius: 4px;
}

.values-list strong {
    color: var(--color-primary);
}

.cta-section-about {
    margin-top: 4rem;
}

.contact-info-section {
    max-width: var(--max-narrow);
    margin: 3rem auto;
}

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

.contact-detail h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

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

.contact-detail a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.legal-page {
    max-width: var(--max-narrow);
    margin: 0 auto;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

.legal-page p {
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

.legal-page a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.legal-page a:hover {
    text-decoration: underline;
}

.thanks-page .thanks-content {
    max-width: var(--max-narrow);
    margin: 5rem auto;
    text-align: center;
}

.thanks-page h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thanks-service-info {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-service-info p {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    background: var(--color-light);
    padding: 2rem;
    border-radius: 6px;
}

.next-steps h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

    .split-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
    }
}

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

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

    body {
        font-size: 16px;
    }
}