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

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

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.nav-links a:hover {
    color: #007acc;
}

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

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

.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.hero-text-centered {
    text-align: center;
    padding: 0 20px;
}

.hero-text-centered h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

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

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

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

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

.content-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3c3c3c;
}

.content-narrow ul,
.content-narrow ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-narrow li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #3c3c3c;
}

.inline-image-section {
    margin: 50px 0;
    background-color: #f5f5f5;
    padding: 20px;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.citation {
    color: #007acc;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.citation:hover {
    color: #005a99;
}

.cta-inline {
    background-color: #f0f7ff;
    padding: 35px;
    margin: 50px 0;
    text-align: center;
    border-left: 4px solid #007acc;
}

.cta-inline h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.btn-primary {
    display: inline-block;
    background-color: #007acc;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #007acc;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    border: 2px solid #007acc;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #007acc;
    color: #fff;
}

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

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

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

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

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

.service-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-details li {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007acc;
    font-weight: bold;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #007acc;
    margin: 20px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-service {
    background-color: #007acc;
    color: #fff;
    padding: 12px 24px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #005a99;
}

.form-section {
    margin: 60px 0;
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
}

.selected-service-info {
    background-color: #e8f4ff;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #007acc;
}

.selected-service-info p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.disclaimer-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffa726;
    padding: 25px;
    margin: 40px 0;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.references-section {
    margin: 60px 0;
    background-color: #f5f5f5;
    padding: 40px 20px;
}

.references-list {
    list-style: none;
    counter-reset: ref-counter;
    padding: 0;
}

.references-list li {
    counter-increment: ref-counter;
    font-size: 14px;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    color: #555;
}

.references-list li:before {
    content: "[" counter(ref-counter) "]";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #007acc;
}

.references-list a {
    color: #007acc;
    word-break: break-all;
}

.footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 20px 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: 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.btn-accept {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

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

.btn-reject {
    background-color: #666;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

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

.page-header {
    margin-bottom: 40px;
}

.contact-info-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-details {
    flex: 1;
}

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

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

.email-display {
    font-size: 18px;
    color: #007acc;
    font-family: 'Courier New', monospace;
}

.map-box {
    background-color: #e8e8e8;
    padding: 60px 30px;
    text-align: center;
    border: 1px solid #ddd;
}

.map-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.map-box .small-text {
    font-size: 14px;
    color: #777;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.thanks-section {
    padding: 80px 20px;
}

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

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

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

.service-confirmation {
    background-color: #e8f4ff;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #007acc;
}

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

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    margin-bottom: 15px;
}

.legal-page h2 {
    margin-top: 40px;
}

.legal-update {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

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

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

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

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

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

    .content-narrow p {
        font-size: 17px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

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