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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #ffffff;
    font-size: 17px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-cookie {
    background: #ffffff;
    color: #000000;
}

.btn-cookie:hover {
    background: #e8e8e8;
}

.btn-cookie-alt {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

.hero-editorial {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

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

.hero-editorial h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #000000;
}

.subtitle {
    font-size: 21px;
    color: #5a5a5a;
    line-height: 1.5;
    font-weight: 400;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
}

.first-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #1a1a1a;
}

p {
    margin-bottom: 20px;
    color: #3a3a3a;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 50px 0 24px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #000000;
}

h3 {
    font-size: 24px;
    margin: 30px 0 16px 0;
    font-weight: 600;
    color: #1a1a1a;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-text-link {
    font-size: 19px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #000000;
    transition: opacity 0.2s;
    display: inline-block;
}

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

.content-block-gray {
    background: #f5f5f5;
    padding: 80px 0;
    margin: 60px 0;
}

blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background: #fafafa;
    border-left: 4px solid #000000;
    font-style: italic;
    font-size: 19px;
    line-height: 1.6;
}

cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    color: #666666;
}

.highlight-box {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 35px;
    margin: 40px 0;
    border-radius: 4px;
}

.highlight-box h3 {
    margin-top: 0;
}

.highlight-box ul {
    list-style-position: outside;
    padding-left: 20px;
}

.highlight-box li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.content-with-image-offset {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 30px;
    align-items: flex-start;
}

.image-float {
    flex: 0 0 380px;
}

.image-float img {
    width: 100%;
    border-radius: 4px;
}

.text-float {
    flex: 1;
}

.text-float h2 {
    margin-top: 0;
}

.cta-card {
    background: #000000;
    color: #ffffff;
    padding: 50px;
    margin: 60px 0;
    border-radius: 4px;
    text-align: center;
}

.cta-card h3 {
    color: #ffffff;
    margin-top: 0;
    font-size: 28px;
}

.cta-card p {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #e8e8e8;
}

.testimonial-section {
    background: #f9f9f9;
    padding: 80px 0;
    margin: 80px 0;
}

.testimonial-large {
    font-size: 24px;
    line-height: 1.6;
    padding: 40px 0;
    margin: 0;
    background: transparent;
    border-left: none;
    text-align: center;
    font-style: italic;
}

.testimonial-large cite {
    font-size: 16px;
    margin-top: 20px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    padding: 40px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.service-card h3 {
    margin-top: 0;
    font-size: 26px;
}

.service-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: #000000;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-select-service:hover {
    background: #2a2a2a;
}

.form-section {
    background: #f5f5f5;
    padding: 80px 0;
    margin: 60px 0;
}

.order-form {
    max-width: 600px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: #000000;
    text-decoration: underline;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.2s;
}

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

.urgency-section {
    margin: 80px auto;
}

.urgency-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 4px;
    text-align: center;
}

.urgency-box h3 {
    color: #ffffff;
    font-size: 30px;
}

.urgency-box p {
    color: #e0e0e0;
    font-size: 19px;
    margin-bottom: 30px;
}

.urgency-box .btn-primary {
    background: #ffffff;
    color: #000000;
}

.urgency-box .btn-primary:hover {
    background: #e8e8e8;
}

.final-cta-section {
    padding: 80px 0;
    text-align: center;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

.btn-sticky {
    display: inline-block;
    padding: 16px 32px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    font-size: 16px;
}

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

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    color: #b0b0b0;
    font-size: 15px;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #888888;
    font-size: 14px;
}

.page-header {
    padding: 80px 30px 40px;
    text-align: center;
    background: #f9f9f9;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.services-list {
    margin: 50px 0;
}

.service-detail {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-detail h2 {
    margin-top: 0;
    font-size: 32px;
}

.price-large {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin: 16px 0 24px;
}

.cta-section-simple {
    text-align: center;
    padding: 80px 30px;
    background: #f9f9f9;
}

.cta-section-simple h2 {
    margin-top: 0;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-top: 0;
}

.contact-detail p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-detail a {
    color: #000000;
    font-weight: 600;
}

.note {
    font-size: 15px;
    color: #666666;
    font-style: italic;
}

.thanks-content {
    text-align: center;
    padding: 100px 30px;
}

.thanks-icon {
    font-size: 80px;
    color: #00b300;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.order-summary {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 4px;
    margin: 40px auto;
    max-width: 500px;
    text-align: left;
}

.order-summary h3 {
    margin-top: 0;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h2 {
    font-size: 28px;
}

.thanks-next-steps ul {
    list-style-position: outside;
    padding-left: 20px;
}

.thanks-next-steps li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 60px 30px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.updated {
    color: #888888;
    font-size: 15px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-content h3 {
    font-size: 22px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.legal-content th,
.legal-content td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.legal-content th {
    background: #f5f5f5;
    font-weight: 600;
}

.legal-content a {
    color: #000000;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .narrow-content {
        padding: 40px 20px;
    }

    h2 {
        font-size: 28px;
    }

    .content-with-image-offset {
        flex-direction: column;
        padding: 0 20px;
        margin: 50px auto;
    }

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

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 12px 24px;
        font-size: 14px;
    }

    .cta-card {
        padding: 30px 25px;
    }

    .urgency-box {
        padding: 40px 25px;
    }

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .service-detail h2 {
        font-size: 26px;
    }

    .price-large {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-editorial {
        padding: 50px 20px;
    }

    .hero-editorial h1 {
        font-size: 28px;
    }

    .first-paragraph {
        font-size: 19px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .logo {
        font-size: 18px;
    }
}