:root {
    --primary-color: #2c5f7d;
    --secondary-color: #d4a574;
    --accent-color: #f4f1ea;
    --dark-color: #1a1a1a;
    --light-bg: #fafaf8;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Georgia', serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 18px;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

h2 {
    font-size: 2.2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

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

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

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.hero-text-narrow {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
}

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

.content-block {
    padding: 4rem 2rem;
}

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

.narrow-text.centered {
    text-align: center;
}

.bg-light {
    background: var(--light-bg);
}

.bg-accent {
    background: var(--accent-color);
}

.bg-dark {
    background: var(--dark-color);
    color: #fff;
}

.bg-dark h2, .bg-dark h3, .bg-dark p {
    color: #fff;
}

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

.styled-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
}

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

.process-list {
    list-style: none;
    counter-reset: process-counter;
    padding-left: 0;
}

.process-list li {
    counter-increment: process-counter;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.testimonial-inline {
    padding: 3rem 2rem;
    background: var(--accent-color);
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    font-size: 1.2rem;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--text-light);
    font-size: 1rem;
}

.image-text-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inline-image-left, .inline-image-right {
    width: 100%;
    max-width: 600px;
}

.inline-image-left img, .inline-image-right img {
    border-radius: 8px;
}

.image-full figure {
    max-width: 1400px;
    margin: 0 auto;
}

.inline-cta, .inline-cta-large {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.inline-cta:hover, .inline-cta-large:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.inline-cta-large {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.services-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--secondary-color);
    background: #fff;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 1.5rem 0;
}

.btn-primary, .btn-secondary {
    padding: 0.9rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    width: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

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

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

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

.services-full-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-item:hover {
    border-color: var(--primary-color);
}

.service-item.featured {
    border-color: var(--secondary-color);
    background: var(--light-bg);
}

.service-info {
    flex: 1;
    min-width: 280px;
}

.service-info h3 {
    margin-bottom: 0.5rem;
}

.service-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-price-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-price-action .btn-primary {
    width: auto;
    min-width: 150px;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: var(--text-color);
}

.bg-dark .form-group input,
.bg-dark .form-group select,
.bg-dark .form-group textarea {
    background: rgba(255, 255, 255, 0.95);
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-submit:hover {
    background: #c49464;
    transform: translateY(-2px);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 0;
}

.footer-editorial {
    background: var(--dark-color);
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: #aaa;
    font-size: 0.95rem;
}

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

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

.footer-column a {
    color: #ccc;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.btn-sticky {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-sticky:hover {
    background: #c49464;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .image-text-inline {
        flex-direction: row;
    }

    .inline-image-left {
        order: -1;
    }

    .inline-image-right {
        order: 1;
    }

    .services-preview-grid {
        flex-direction: row;
    }

    .service-card {
        flex: 1;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        display: none;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .content-block {
        padding: 2.5rem 1.5rem;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price-action {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

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

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

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