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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    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;
    height: 70px;
}

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

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

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

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

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    padding: 80px 20px 60px;
    text-align: center;
    background-color: #fafafa;
}

.hero-text-center {
    max-width: 720px;
    margin: 0 auto 50px;
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    background-color: #f5f5f5;
}

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

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.4;
    margin: 50px 0 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    font-weight: 500;
    color: #2c2c2c;
}

.content-narrow p {
    margin-bottom: 20px;
}

.content-narrow ul,
.content-narrow ol {
    margin: 20px 0 20px 30px;
}

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

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

.inline-image {
    width: 100%;
    max-width: 680px;
    height: auto;
    margin: 40px 0;
    display: block;
    object-fit: cover;
    background-color: #f5f5f5;
}

.image-caption {
    font-size: 15px;
    color: #777;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #333333;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.services-preview {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.service-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.testimonial-block blockquote {
    font-style: italic;
    color: #333;
}

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

.consultation-section {
    background-color: #fafafa;
    padding: 80px 30px;
    margin: 70px 0;
}

.form-container-centered {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-centered h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 400;
}

.form-container-centered > p {
    text-align: center;
    margin-bottom: 35px;
    color: #555;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 3px solid #ccc;
    margin-top: 50px;
}

.services-list {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.service-detailed {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    display: flex;
    flex-direction: column;
}

.service-header img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-info {
    padding: 30px 40px;
    background-color: #fafafa;
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-description {
    padding: 40px;
}

.service-description p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-description h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 500;
}

.service-description ul {
    margin: 20px 0 30px 25px;
}

.service-description li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-page-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 30px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 400;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #1a1a1a;
}

.contact-detail p {
    line-height: 1.7;
    color: #555;
}

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

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #fafafa;
    border-left: 3px solid #1a1a1a;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.thanks-page-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 30px;
}

.thanks-container {
    text-align: center;
}

.thanks-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 40px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 400;
}

.thanks-details {
    margin: 50px 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 400;
}

.next-steps {
    margin: 25px 0 25px 30px;
}

.next-steps li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-service-info {
    background-color: #fafafa;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: left;
}

.thanks-service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-display {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-note {
    font-size: 15px;
    color: #666;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.thanks-additional-info {
    text-align: left;
    margin: 50px 0;
}

.thanks-additional-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.thanks-additional-info ul {
    margin-left: 25px;
}

.thanks-additional-info li {
    margin-bottom: 12px;
}

.thanks-additional-info a {
    color: #1a1a1a;
    text-decoration: underline;
}

.thanks-footer-note {
    margin-top: 50px;
    font-size: 16px;
    color: #666;
}

.legal-content .content-narrow {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 45px 0 20px;
    font-weight: 500;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 12px;
    font-weight: 500;
}

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

.legal-content strong {
    font-weight: 600;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.cookies-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 30px 30px;
    margin-top: 100px;
}

.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: 220px;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 30px;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-accept:hover {
    background-color: #f0f0f0;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

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

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

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

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

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

    .services-preview {
        padding: 0 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}