* {
    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: #1a1a1a;
    background-color: #fafafa;
}

.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

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

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

.headline-large {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.subheadline {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.hero-img-inline {
    width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 4px;
}

.text-section {
    margin-bottom: 3.5rem;
}

.intro-graf {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.text-section p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #333;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    letter-spacing: -0.02em;
}

.visual-break {
    margin: 4rem 0;
}

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

.visual-break figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.8rem;
    font-style: italic;
}

.visual-break.full-width {
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
}

.visual-break.full-width img {
    border-radius: 0;
}

.dark-bg {
    background-color: #2a2a2a;
    color: #f5f5f5;
    padding: 3rem 2.5rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 4px;
}

.dark-bg .section-heading {
    color: #fff;
}

.dark-bg p {
    color: #ddd;
}

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

.btn-text {
    font-size: 1.15rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

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

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

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.btn-primary {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.testimonial-block {
    margin: 4rem 0;
    padding: 2.5rem;
    background: #f5f5f5;
    border-left: 4px solid #1a1a1a;
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
}

.testimonial-block cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

.cta-block {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.cta-block.centered h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-block.centered p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-cta:hover {
    background-color: #333;
}

.order-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #fff;
    color: #1a1a1a;
}

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

.form-group input[readonly] {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #fff;
    color: #1a1a1a;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #f0f0f0;
}

.final-note {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    margin-top: 2rem;
}

.footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #999;
}

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

.sticky-btn {
    display: block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.sticky-btn:hover {
    background-color: #333;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

.btn-accept:hover {
    background-color: #333;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

.btn-reject:hover {
    background-color: #ccc;
}

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

.service-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-details ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    color: #555;
}

.service-details li {
    margin-bottom: 0.5rem;
}

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

.price-label {
    font-size: 1rem;
    color: #666;
}

.contact-info {
    margin: 2rem 0;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

.contact-item a:hover {
    opacity: 0.7;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

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

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

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

.legal-page a:hover {
    opacity: 0.7;
}

.thanks-page {
    text-align: center;
}

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

    .nav-links a {
        font-size: 0.85rem;
    }

    .headline-large {
        font-size: 2.2rem;
    }

    .subheadline {
        font-size: 1.2rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem 4rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .visual-break.full-width {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem);
    }

    .dark-bg {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

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

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

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

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

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}