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

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

.ad-notice {
    background: #f5f5f5;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

.editorial-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 24px;
}

.editorial-hero {
    margin-bottom: 48px;
    text-align: left;
}

.editorial-hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.editorial-image {
    margin: 48px 0;
    background-color: #f0f0f0;
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.editorial-content {
    margin-bottom: 48px;
}

.lead-paragraph {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #333;
}

.editorial-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.editorial-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 56px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.editorial-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2a2a2a;
}

.editorial-content ul {
    margin: 24px 0;
    padding-left: 32px;
}

.editorial-content li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

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

.principle-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e8e8e8;
}

.principle-list li strong {
    color: #1a1a1a;
}

.editorial-quote {
    margin: 40px 0;
    padding: 32px;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.editorial-quote p {
    font-size: 22px;
    font-style: italic;
    color: #2a2a2a;
    margin: 0;
}

.inline-cta {
    margin: 48px 0;
    padding: 32px;
    background: #f0f7ff;
    text-align: center;
}

.cta-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-button-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-button-inline:hover {
    background: #0052a3;
}

.service-cards-editorial {
    margin: 40px 0;
}

.service-card {
    margin: 32px 0;
    padding: 32px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
}

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

.service-card p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin: 20px 0;
}

.service-select {
    padding: 12px 28px;
    background: #ffffff;
    border: 2px solid #0066cc;
    color: #0066cc;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.service-select:hover {
    background: #0066cc;
    color: #ffffff;
}

.service-select.selected {
    background: #0066cc;
    color: #ffffff;
}

.editorial-form {
    margin: 48px 0;
    padding: 40px;
    background: #f8f9fa;
}

.form-notice {
    padding: 16px;
    background: #fff3cd;
    color: #856404;
    margin-bottom: 24px;
    font-size: 15px;
    display: none;
}

.form-notice.show {
    display: block;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 14px 40px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-button:hover:not(:disabled) {
    background: #0052a3;
}

.submit-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.disclaimer-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.page-header {
    margin-bottom: 48px;
    text-align: left;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-subtext {
    font-size: 20px;
    color: #666;
}

.services-detailed {
    margin-top: 48px;
}

.service-detailed {
    margin-bottom: 64px;
}

.service-image {
    margin-bottom: 24px;
    background-color: #f0f0f0;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.service-text ul {
    margin: 20px 0;
    padding-left: 32px;
}

.service-text li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.service-price-large {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin: 28px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-service:hover {
    background: #0052a3;
}

.cta-block {
    margin: 56px 0;
    padding: 40px;
    background: #f0f7ff;
    text-align: center;
}

.cta-block p {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #0066cc;
    border: 2px solid #0066cc;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.email-display {
    font-weight: 600;
    color: #2a2a2a;
}

.note {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
}

.contact-image {
    background-color: #f0f0f0;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-cta {
    padding: 32px;
    background: #f8f9fa;
    margin-top: 24px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.thanks-page {
    text-align: center;
    padding: 80px 24px;
}

.thanks-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.service-confirmation {
    padding: 24px;
    background: #f0f7ff;
    margin: 32px 0;
    font-size: 18px;
    color: #2a2a2a;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}

.legal-page .editorial-content h2 {
    margin-top: 48px;
}

.legal-page .editorial-content h3 {
    margin-top: 32px;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 48px 5%;
}

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

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

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

.footer-section p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 24px;
    display: none;
    z-index: 1000;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn.accept {
    background: #0066cc;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #0052a3;
}

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

.cookie-btn.reject:hover {
    background: #555;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .hero-subtext {
        font-size: 18px;
    }

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

    .editorial-content h2 {
        font-size: 26px;
    }

    .editorial-form {
        padding: 24px;
    }

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

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

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