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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
}

.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 {
    margin: 0;
    flex: 1;
}

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

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

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

.btn-accept {
    background: #ffd700;
    color: #1a1a1a;
}

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

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

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

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.editorial-hero {
    margin-bottom: 4rem;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text-center h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    font-weight: 400;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    margin: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.editorial-intro {
    margin-bottom: 3rem;
}

.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    margin: 0.1rem 0.1rem 0 0;
    color: #1a1a1a;
}

.editorial-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

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

.editorial-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.editorial-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2a2a2a;
}

.editorial-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.text-image-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.text-column {
    flex: 1;
}

.image-column {
    flex: 0 0 280px;
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

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

.narrow-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.editorial-highlight {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: #f5f5f5;
    border-left: 4px solid #1a1a1a;
}

.large-quote {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    font-style: italic;
    color: #2a2a2a;
}

.inline-cta {
    margin: 3rem 0;
    text-align: left;
}

.inline-cta.centered {
    text-align: center;
}

.cta-link {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 0.2rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    border-bottom-color: #ffd700;
    color: #ffd700;
}

.cta-button {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffd700;
    color: #1a1a1a;
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    padding: 2rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: #1a1a1a;
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.select-service {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #ffd700;
    color: #1a1a1a;
}

.editorial-testimonial {
    margin: 4rem 0;
    padding: 3rem;
    background: #2a2a2a;
    color: #fff;
    border-radius: 3px;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

.editorial-form {
    margin-top: 2rem;
    padding: 2.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-button {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #ffd700;
    color: #1a1a1a;
}

.editorial-closing {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.editorial-closing p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
}

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

.styled-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
}

.styled-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1a1a1a;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-detailed {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.service-header {
    padding: 2rem;
    background: #f8f8f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #2a2a2a;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-info-item a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

.contact-info-item a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.thanks-content {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.thanks-service {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 3px;
    margin: 2rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
}

.thanks-note {
    font-size: 1rem;
    color: #6a6a6a;
    margin: 2rem 0;
}

.thanks-note a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

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

.btn-primary {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffd700;
    color: #1a1a1a;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.legal-page .legal-section {
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    color: #2a2a2a;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.legal-page ul li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

.legal-page a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

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

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

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

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffd700;
}

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .text-image-split {
        flex-direction: column;
        gap: 2rem;
    }

    .image-column {
        flex: 1;
        width: 100%;
    }

    .large-quote {
        font-size: 1.3rem;
    }

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

    .contact-info-section {
        padding: 1.5rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

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