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

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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    font-family: Arial, sans-serif;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c3e50;
}

.editorial-content {
    background-color: #ffffff;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-header-text {
    max-width: 800px;
    margin: -80px auto 0;
    padding: 40px 50px;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
}

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

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

.article-body {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

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

.lead-text {
    font-size: 21px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.content-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
}

.content-section h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.inline-image {
    margin: 45px 0;
    background-color: #f5f5f5;
}

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

.quote-block {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #f8f9fa;
    border-left: 5px solid #2c3e50;
}

.quote-block blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: #444;
}

.styled-list {
    margin: 20px 0 30px 25px;
    list-style: disc;
}

.styled-list li {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333;
}

.cta-inline {
    margin: 45px 0;
    padding: 35px;
    background-color: #ecf7f1;
    border-radius: 8px;
    text-align: center;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #229954;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #fef9e7;
    border-radius: 6px;
}

.testimonial-content p {
    font-size: 19px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-content cite {
    font-size: 16px;
    color: #777;
    font-style: normal;
}

.services-preview {
    margin: 50px -30px 40px;
    padding: 50px 30px;
    background-color: #f9f9f9;
}

.services-preview h3 {
    font-size: 30px;
    margin-bottom: 35px;
    text-align: center;
    color: #1a1a1a;
}

.service-card {
    background-color: #ffffff;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-info {
    padding: 25px;
}

.service-info h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 18px;
}

.price {
    display: block;
    font-size: 20px;
    color: #27ae60;
    font-weight: 700;
    font-family: Arial, sans-serif;
    margin-top: 15px;
}

.form-wrapper {
    margin: 50px 0;
    padding: 40px;
    background-color: #f5f8fa;
    border-radius: 8px;
}

.form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-wrapper > p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

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

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

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 15px 40px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: #856404;
}

.references-section {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    margin-left: 20px;
}

.references-list li {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.references-list a {
    color: #2980b9;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 30px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 25px 30px;
    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;
    color: #333;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-intro {
    font-size: 19px;
    color: #666;
}

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

.service-item {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-image-wrapper {
    margin-bottom: 30px;
    background-color: #f0f0f0;
}

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

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-details > p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
}

.price-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #ecf7f1;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 17px;
    color: #555;
    font-family: Arial, sans-serif;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    font-family: Arial, sans-serif;
}

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

.cta-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s;
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #bdc3c7;
}

.contact-layout {
    display: flex;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-image-block {
    flex: 1;
    min-width: 300px;
    background-color: #f0f0f0;
}

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

.additional-info {
    margin: 50px 0;
}

.additional-info h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    margin: 30px 0;
}

.thanks-message p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.selected-service {
    margin: 25px 0;
    padding: 20px;
    background-color: #ecf7f1;
    border-radius: 6px;
}

.selected-service p {
    font-size: 17px;
    color: #333;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    margin-left: 40px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

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

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

.additional-info-box {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
    text-align: left;
}

.additional-info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.additional-info-box ul {
    list-style: none;
    padding-left: 0;
}

.additional-info-box ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.additional-info-box a {
    color: #2980b9;
    text-decoration: none;
}

.additional-info-box a:hover {
    text-decoration: underline;
}

.legal-page .article-body {
    max-width: 900px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.last-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
    color: #777;
    font-style: italic;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-header-text {
        margin-top: 0;
        padding: 30px 25px;
    }

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

    .article-body {
        padding: 30px 20px 60px;
    }

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

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

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

    .contact-layout {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-secondary {
        display: block;
        margin: 10px 0;
    }
}