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

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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 2px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    letter-spacing: -0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #2563eb;
}

.editorial-content {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 30px;
    background-color: transparent;
}

.article-header {
    margin-bottom: 50px;
    text-align: left;
}

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

.article-intro {
    font-size: 21px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.article-image {
    width: 100%;
    margin: 40px 0 50px 0;
    background-color: #e9ecef;
}

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

.content-flow {
    margin-bottom: 45px;
}

.content-flow h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 25px 0;
    color: #1a1a1a;
    font-weight: 600;
}

.content-flow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 35px 0 18px 0;
    color: #2c3e50;
    font-weight: 600;
}

.content-flow p {
    margin-bottom: 22px;
}

.content-flow ul {
    margin: 20px 0 20px 30px;
}

.content-flow li {
    margin-bottom: 10px;
}

.inline-image-small {
    width: 100%;
    margin: 35px 0;
    background-color: #e9ecef;
}

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

.visual-break {
    width: calc(100% + 60px);
    margin: 60px 0 60px -30px;
    background-color: #dee2e6;
}

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

.inline-cta {
    background-color: #f8f9fa;
    border-left: 4px solid #2563eb;
    padding: 28px 32px;
    margin: 45px 0;
}

.inline-cta p {
    margin-bottom: 15px;
    font-size: 19px;
}

.cta-link {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
    transition: all 0.2s;
}

.cta-link:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

.services-embedded {
    margin: 60px 0;
}

.services-embedded h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-embedded > p {
    margin-bottom: 40px;
    font-size: 19px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 28px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-item p {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.6;
}

.service-item .price {
    font-weight: 700;
    color: #2563eb;
    font-size: 20px;
    margin-top: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-section {
    margin: 60px 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 40px;
}

.form-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.form-section > p {
    margin-bottom: 30px;
    font-size: 17px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

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

.submit-btn {
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: #fffbeb;
    border-left: 3px solid #f59e0b;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: #78716c;
    font-style: italic;
}

.services-detailed {
    margin: 40px 0;
}

.service-detail {
    margin-bottom: 55px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e5e7eb;
}

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

.service-detail h2 {
    font-size: 30px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-detail p {
    margin-bottom: 18px;
    font-size: 18px;
}

.service-price {
    font-weight: 700;
    color: #2563eb;
    font-size: 21px;
    margin: 25px 0 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-cta {
    display: inline-block;
    padding: 10px 24px;
    background-color: #f3f4f6;
    color: #1f2937;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border: 1px solid #d1d5db;
    transition: all 0.2s;
}

.service-cta:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

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

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 18px;
    margin-top: 35px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 28px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
}

.contact-note {
    margin-bottom: 40px;
    background-color: #f0f9ff;
    padding: 25px;
    border-left: 3px solid #2563eb;
}

.contact-note h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-note p {
    margin-bottom: 12px;
    font-size: 17px;
}

.contact-note a {
    color: #2563eb;
    text-decoration: underline;
}

.location-section {
    margin-bottom: 40px;
}

.location-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.location-section p {
    font-size: 17px;
    line-height: 1.7;
}

.thanks-page .thanks-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
}

.thanks-page .thanks-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 14px;
}

.thanks-page .thanks-content ul {
    margin: 18px 0 18px 30px;
}

.thanks-page .thanks-content li {
    margin-bottom: 12px;
}

.thanks-page .thanks-content a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid #2563eb;
}

.thanks-page .thanks-content a:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 28px;
    margin-top: 35px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 18px;
    font-size: 17px;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page li {
    margin-bottom: 10px;
}

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

.legal-page a:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 50px 30px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    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: 25px;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: all 0.2s;
}

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

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

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

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

@media (max-width: 768px) {
    .editorial-content {
        padding: 0 20px;
    }

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

    .article-intro {
        font-size: 19px;
    }

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

    .content-flow h3 {
        font-size: 21px;
    }

    body {
        font-size: 17px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .visual-break {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .form-section {
        padding: 25px;
    }
}