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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.2s;
}

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

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

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

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

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #1a5f3d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    transition: color 0.2s;
}

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

.ad-label {
    font-size: 12px;
    color: #757575;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.article-hero {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    margin: 0 -20px 40px;
    background-color: #e8f5e9;
}

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

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

.article-meta {
    font-size: 18px;
    color: #616161;
    font-style: italic;
}

.article-content {
    font-size: 19px;
    line-height: 1.8;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.article-content p {
    margin-bottom: 28px;
}

.article-content h2 {
    font-size: 32px;
    margin: 60px 0 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.article-content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: #2a2a2a;
    font-weight: 600;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    margin-bottom: 12px;
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    color: #616161;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
}

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

.cta-link {
    display: inline-block;
    color: #1a5f3d;
    font-size: 20px;
    text-decoration: none;
    border-bottom: 2px solid #1a5f3d;
    padding-bottom: 4px;
    transition: border-color 0.2s;
}

.cta-link:hover {
    border-bottom-color: #2e7d32;
}

.highlight-box {
    background-color: #fff9e6;
    border-left: 4px solid #ffa000;
    padding: 30px;
    margin: 40px 0;
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 22px;
    color: #1a1a1a;
}

.finance-list {
    list-style: none;
    margin-top: 20px;
}

.finance-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ffe0b2;
    font-size: 17px;
}

.finance-list li:last-child {
    border-bottom: none;
    font-weight: bold;
    padding-top: 16px;
}

.doc-list {
    margin: 20px 0 20px 40px;
    list-style: disc;
}

.doc-list li {
    margin-bottom: 12px;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: box-shadow 0.3s;
}

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

.service-card h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #1a5f3d;
}

.service-card > p:first-of-type {
    font-size: 17px;
    color: #616161;
    margin-bottom: 16px;
}

.service-features {
    font-size: 15px;
    line-height: 1.6;
    color: #424242;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-select {
    background-color: #1a5f3d;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.2s;
}

.service-select:hover {
    background-color: #2e7d32;
}

.contact-form-section {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    margin: 50px 0;
}

.contact-form-section h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
    color: #1a1a1a;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #ffffff;
}

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

.form-submit {
    background-color: #1a5f3d;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.form-submit:hover {
    background-color: #2e7d32;
}

.testimonial-block {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 40px 0;
    border-left: 3px solid #1a5f3d;
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 16px;
    color: #616161;
    font-style: italic;
    margin-top: 16px;
}

.final-cta {
    background-color: #e8f5e9;
    padding: 50px;
    text-align: center;
    margin: 60px 0 40px;
    border-radius: 8px;
}

.final-cta h3 {
    margin: 0 0 16px 0;
    font-size: 32px;
    color: #1a1a1a;
}

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

.cta-button {
    display: inline-block;
    background-color: #1a5f3d;
    color: #ffffff;
    padding: 18px 48px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #2e7d32;
}

.footer {
    background-color: #2a2a2a;
    color: #e0e0e0;
    padding: 60px 20px 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #9e9e9e;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .article-content {
        font-size: 18px;
    }

    .lead-text {
        font-size: 20px;
    }

    .article-content h2 {
        font-size: 28px;
    }

    .services-cards {
        gap: 20px;
    }

    .service-card {
        padding: 24px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    .final-cta {
        padding: 40px 20px;
    }

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

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

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

.simple-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.simple-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.simple-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2a2a2a;
}

.simple-page p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #424242;
}

.simple-page ul {
    margin: 20px 0 20px 40px;
    list-style: disc;
}

.simple-page ul li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
}

.simple-page a {
    color: #1a5f3d;
    text-decoration: underline;
}

.simple-page a:hover {
    color: #2e7d32;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info strong {
    color: #1a1a1a;
}

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

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

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

.service-item p {
    margin-bottom: 16px;
}

.service-item .price {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 20px;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 30px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a5f3d;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    color: #424242;
    margin-bottom: 20px;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 30px;
    color: #1a5f3d;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 2px solid #1a5f3d;
    padding-bottom: 4px;
}

.thanks-container .back-link:hover {
    border-bottom-color: #2e7d32;
}