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

body {
    font-family: 'Georgia', 'Baskerville', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
}

.ad-notice {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border-bottom: 1px solid #ddd;
}

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

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

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

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

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

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

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

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
    margin-top: 16px;
}

.article-image {
    margin: 44px 0;
    width: 100%;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.content-block {
    margin-bottom: 44px;
}

.content-block h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.content-block h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #2c2c2c;
    margin: 28px 0 14px 0;
}

.content-block p {
    margin-bottom: 18px;
}

.content-block ul {
    margin: 18px 0 18px 28px;
    list-style-type: disc;
}

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

.inline-cta {
    background-color: #f9f9f9;
    border-left: 4px solid #2c2c2c;
    padding: 28px 32px;
    margin: 48px 0;
}

.inline-cta p {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    display: inline-block;
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.cta-link:hover {
    opacity: 0.7;
}

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

.service-item {
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 2px;
}

.service-item h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

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

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 16px 0;
}

.select-service {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 2px;
}

.select-service:hover {
    background-color: #1a1a1a;
}

.testimonial {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #3a3a3a;
    border-left: 3px solid #d0d0d0;
    padding-left: 24px;
    margin: 32px 0;
}

.testimonial cite {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.contact-form {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 36px;
    margin: 40px 0;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #fff;
}

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

.submit-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 2px;
}

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

.disclaimer {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    padding: 24px;
    margin: 48px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.disclaimer p {
    margin: 0;
}

.disclaimer strong {
    color: #2c2c2c;
}

.contact-info {
    margin: 32px 0;
}

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

.contact-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

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

.email-display {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #2c2c2c;
    font-weight: 500;
}

.legal-content .content-block {
    margin-bottom: 36px;
}

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

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

.legal-content p,
.legal-content ul {
    font-size: 16px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #bbb;
    padding: 48px 24px 24px 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

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

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

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

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

.footer-section ul li a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c2c2c;
    padding: 20px;
    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: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.cookie-btn.accept {
    background-color: #2c2c2c;
    color: #fff;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.cookie-btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

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

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}