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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fff;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.2rem 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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-menu a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    transition: 0.3s;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

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

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

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

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.editorial-section h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.editorial-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.editorial-section ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.editorial-section li {
    margin-bottom: 0.8rem;
}

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

.text-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 2px solid #2563eb;
    transition: opacity 0.2s;
}

.text-link:hover {
    opacity: 0.7;
}

.visual-break {
    margin: 5rem 0;
    width: 100%;
}

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
}

.services-preview {
    margin: 5rem 0;
    padding: 0 2rem;
}

.service-cards {
    max-width: 1100px;
    margin: 3rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 350px;
    background: #f9fafb;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.card-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s;
}

.card-cta:hover {
    background: #2c2c2c;
}

.testimonial-inline {
    background: #f3f4f6;
    padding: 3rem 2rem;
    margin: 5rem 0;
}

.testimonial-inline blockquote {
    max-width: 720px;
    margin: 0 auto;
}

.testimonial-inline p {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 1rem;
    color: #6b7280;
}

blockquote {
    margin: 2rem 0;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 4px solid #2563eb;
}

blockquote p {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #3a3a3a;
}

blockquote cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6b7280;
    display: block;
    margin-top: 0.5rem;
}

.additional-services {
    margin: 5rem 0;
    padding: 0 2rem;
}

.form-section {
    background: #fafafa;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #2c2c2c;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.final-cta {
    max-width: 720px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.final-cta p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.main-footer {
    background: #1a1a1a;
    color: #d1d5db;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #fff;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 1rem 2rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 90;
    display: none;
}

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

.btn-sticky {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-sticky:hover {
    background: #1d4ed8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept {
    background: #2563eb;
    color: #fff;
}

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

.btn-reject {
    background: #6b7280;
    color: #fff;
}

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

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

.service-detail {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.service-content {
    flex: 1 1 60%;
}

.service-image {
    flex: 1 1 35%;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

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

.contact-info {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-item {
    flex: 1 1 280px;
}

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

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
}

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

.contact-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

.thanks-section {
    min-height: 60vh;
    padding: 4rem 2rem;
}

.thanks-intro {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-details,
.thanks-actions,
.contact-reminder {
    margin: 3rem 0;
}

.thanks-details h2,
.thanks-actions h3,
.contact-reminder h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-links {
    list-style: none;
    margin: 1.5rem 0;
}

.thanks-links li {
    margin-bottom: 0.8rem;
}

.thanks-links a {
    color: #2563eb;
    text-decoration: none;
    font-size: 1.05rem;
}

.thanks-links a:hover {
    text-decoration: underline;
}

.service-selected {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    border-left: 4px solid #2563eb;
}

.legal-content {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
    min-height: 60vh;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.6rem;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #d1d5db;
}

.cookies-table th {
    background: #f3f4f6;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.8rem 0;
        border-bottom: 1px solid #f3f4f6;
    }

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

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

    .editorial-section h2 {
        font-size: 1.6rem;
    }

    .editorial-section p {
        font-size: 1rem;
    }

    .service-detail {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .contact-details {
        flex-direction: column;
    }

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

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

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

    .service-price-large {
        font-size: 1.8rem;
    }
}