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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e1e4e8;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #586069;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #586069;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

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

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

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.article-meta {
    font-size: 1.1rem;
    color: #6c757d;
    font-style: italic;
}

.article-image {
    margin: 3rem -2rem 3rem -2rem;
    background-color: #e9ecef;
}

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

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #495057;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.85rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.article-body h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.inline-image {
    margin: 3rem 0;
    background-color: #e9ecef;
}

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

.inline-cta {
    background-color: #f8f9fa;
    border-left: 4px solid #495057;
    padding: 1.5rem;
    margin: 2.5rem 0;
    font-size: 1.2rem;
    font-style: italic;
}

.inline-cta p {
    margin: 0;
}

blockquote.testimonial {
    border-left: 4px solid #dee2e6;
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #495057;
}

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

.phase-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e1e4e8;
}

.phase-block h3 {
    margin-top: 0;
}

.highlight-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2.5rem 0;
}

.highlight-box p {
    margin: 0;
}

.text-link {
    color: #495057;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: #1a1a1a;
}

.service-preview {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.service-preview h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.service-preview ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-preview li {
    margin-bottom: 0.75rem;
}

.inline-button {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.inline-button:hover {
    background-color: #1a252f;
}

.final-cta-section {
    background-color: #ffffff;
    border: 2px solid #e1e4e8;
    padding: 2.5rem;
    margin: 4rem 0;
    border-radius: 4px;
}

.final-cta-section h3 {
    margin-top: 0;
    text-align: center;
}

.final-cta-section > p {
    text-align: center;
    margin-bottom: 2rem;
}

.editorial-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

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

.submit-button {
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.disclaimer {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    margin: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
}

.disclaimer p {
    margin: 0;
}

.service-detailed {
    margin: 4rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e1e4e8;
}

.service-detailed:last-of-type {
    border-bottom: none;
}

.service-image {
    margin: 2rem 0;
    background-color: #e9ecef;
}

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

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

.service-cta {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.service-cta:hover {
    background-color: #1a252f;
}

.contact-info-block {
    background-color: #ffffff;
    border: 2px solid #e1e4e8;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
}

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

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-detail p {
    margin: 0;
    color: #495057;
}

.thanks-content {
    margin: 3rem 0;
}

.thanks-cta {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.thanks-cta p {
    margin: 0;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.next-steps h3 {
    margin-top: 0;
}

.next-steps ul {
    padding-left: 1.5rem;
    margin: 1rem 0 0 0;
}

.next-steps li {
    margin-bottom: 0.75rem;
}

.back-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: 3rem 0;
}

.legal-page .article-body {
    font-size: 1rem;
}

.legal-page .article-body h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.legal-page .article-body h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    margin-top: 5rem;
    padding: 3rem 2rem 1.5rem 2rem;
}

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

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

.footer-section h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #cbd5e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #cbd5e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e1e4e8;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-btn.accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1a252f;
}

.cookie-btn.reject {
    background-color: #e9ecef;
    color: #495057;
}

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

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

    .nav-links {
        gap: 1rem;
    }

    .editorial-content {
        padding: 0 1.5rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-image {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .article-body {
        font-size: 1.05rem;
    }

    .intro-text {
        font-size: 1.15rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}