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

:root {
    --color-primary: #1a3a52;
    --color-secondary: #2d5f7f;
    --color-accent: #e67e22;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-bg: #ffffff;
    --color-bg-alt: #f4f7f9;
    --color-border: #d8e1e8;
    --font-primary: 'Georgia', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.25rem;
}

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

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

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

ul {
    margin-bottom: 1.25rem;
    margin-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    text-align: center;
}

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

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

.btn-accept, .btn-reject {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

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

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

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

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

.main-nav {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
}

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

.editorial-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.hero-editorial {
    margin-bottom: 4rem;
    text-align: center;
    padding: 3rem 0;
}

.hero-text-center h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.content-section {
    margin-bottom: 4rem;
}

.text-narrow {
    max-width: 100%;
}

.alt-bg {
    background: var(--color-bg-alt);
    padding: 3rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 8px;
}

.inline-image {
    margin: 2.5rem 0;
}

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

.inline-cta {
    margin: 2rem 0;
}

.btn-text {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    color: var(--color-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-text:hover {
    color: var(--color-secondary);
}

.testimonial-inline {
    margin: 4rem 0;
    padding: 2.5rem;
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--color-text-light);
    font-family: var(--font-secondary);
}

.section-title-center {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.services-cards {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--color-bg-alt);
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 8px;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-card p {
    font-size: 1rem;
    color: var(--color-text-light);
}

.price {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

.select-service {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.select-service:hover {
    background: var(--color-secondary);
}

.form-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--color-bg-alt);
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 8px;
}

.form-section h2 {
    text-align: center;
    margin-top: 0;
}

.form-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: white;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

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

.final-cta {
    margin: 4rem 0;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--color-primary);
    color: white;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 8px;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: white;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 700;
    transition: background 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

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

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

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

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

.footer-col h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.625rem;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-border);
}

.cta-simple {
    text-align: center;
    padding: 3rem 2rem;
    margin: 4rem 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.service-detail h2 {
    margin-top: 0;
    font-size: 2rem;
}

.service-price {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

.service-desc ul {
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.contact-block p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-block a {
    color: var(--color-accent);
    font-weight: 600;
}

.note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

.legal-page .text-narrow {
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.legal-page h2 {
    font-size: 1.625rem;
    margin-top: 2.5rem;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.updated {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

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

.thanks-content h1 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.thanks-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

#service-confirmation {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 1.125rem;
    padding: 1rem;
    background: var(--color-bg-alt);
    border-radius: 6px;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
    }

    .cookie-content p {
        text-align: left;
    }

    .alt-bg {
        margin-left: -3rem;
        margin-right: -3rem;
    }

    .services-cards {
        margin-left: -3rem;
        margin-right: -3rem;
    }

    .form-section {
        margin-left: -3rem;
        margin-right: -3rem;
    }

    .final-cta {
        margin-left: -3rem;
        margin-right: -3rem;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-text-center h1 {
        font-size: 2.25rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .service-price {
        font-size: 2rem;
    }
}