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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --white: #ffffff;
    --gray: #6c757d;
    --dark-gray: #495057;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

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

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

.editorial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-hero {
    margin-bottom: 3rem;
}

.hero-text-narrow {
    text-align: left;
}

.hero-text-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.article-image {
    margin: 3rem 0;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.text-block-narrow {
    margin: 2.5rem 0;
}

.text-block-narrow h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin: 2.5rem 0 1.2rem 0;
    color: var(--primary-color);
}

.text-block-narrow h3 {
    font-size: 1.4rem;
    margin: 1.8rem 0 1rem 0;
    color: var(--primary-color);
}

.text-block-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.text-block-narrow ul {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.text-block-narrow li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.text-block-narrow a {
    color: var(--accent-color);
    text-decoration: underline;
}

.text-block-narrow a:hover {
    text-decoration: none;
}

.pullquote {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.pullquote blockquote {
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
}

.inline-image-left,
.inline-image-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.inline-image-left img,
.inline-image-right img {
    width: 100%;
    height: auto;
}

.image-caption h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.image-caption p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.inline-cta {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.inline-cta:hover {
    opacity: 0.7;
}

.services-preview {
    margin: 4rem 0;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.services-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card-editorial {
    border: 1px solid var(--border-color);
    padding: 2rem;
    background-color: var(--light-bg);
}

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

.service-card-editorial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.btn-service-select {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-block {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: var(--light-bg);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

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

.testimonial cite {
    display: block;
    font-size: 0.95rem;
    color: var(--gray);
    font-style: normal;
}

.cta-block-inline {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.cta-block-inline h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-block-inline p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

.reservation-form-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--light-bg);
}

.reservation-form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--accent-color);
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-submit:hover {
    opacity: 0.9;
}

.closing-thought {
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    color: var(--gray);
    margin: 3rem 0;
    padding: 2rem 0;
}

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

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

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

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

.footer-column p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.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 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 9999;
    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: 1.5rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.service-detail-content h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.service-practical-info {
    font-style: italic;
    color: var(--gray);
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 2rem 0 1.5rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-period {
    font-size: 1.1rem;
    color: var(--gray);
}

.service-detail-image {
    width: 100%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

.contact-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--primary-color);
}

.contact-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.note {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
}

.next-steps-block {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.next-step-item {
    padding: 1.5rem;
    background-color: var(--light-bg);
}

.next-step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.next-step-item p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

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

.service-confirmation {
    background-color: var(--light-bg);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

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

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

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

    .inline-image-right {
        flex-direction: row-reverse;
    }

    .inline-image-left img,
    .inline-image-right img {
        width: 50%;
    }

    .image-caption {
        width: 50%;
    }

    .service-detail-block {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-block.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-content {
        flex: 1;
    }

    .service-detail-image {
        flex: 1;
    }

    .contact-info-block {
        flex-direction: row;
    }

    .contact-section {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-text-narrow h1 {
        font-size: 2rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

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