* {
    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;
}

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

.article-image {
    margin: 3rem 0;
    background-color: #e8e8e8;
}

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

.article-section {
    margin: 3rem 0;
}

.article-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.article-section h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.article-section p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.article-section ul,
.article-section ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.article-section li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.article-image-inline {
    margin: 2.5rem 0;
    background-color: #e8e8e8;
}

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

.inline-cta {
    background-color: #f9f9f9;
    border-left: 4px solid #3a3a3a;
    padding: 2rem;
    margin: 3rem 0;
}

.inline-cta p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.cta-link {
    display: inline-block;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 0.2rem;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}

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

.services-section {
    margin: 4rem 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.service-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid #e0e0e0;
}

.service-detailed:first-of-type {
    border-top: none;
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.service-price {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.price-label {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-right: 1rem;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.service-image {
    background-color: #e8e8e8;
}

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

.testimonial-block {
    background-color: #f5f5f5;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 3px solid #6a6a6a;
}

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

.testimonial-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
    display: block;
    margin-top: 1rem;
}

.contact-form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.contact-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-form-section > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 1rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin: 4rem 0 2rem;
    padding: 2rem;
    background-color: #fafafa;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6a6a6a;
    font-style: italic;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-details {
    order: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.contact-image {
    order: 2;
    background-color: #e8e8e8;
}

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

.thanks-container {
    text-align: center;
    padding: 3rem 0;
}

.thanks-container .article-section {
    text-align: left;
}

.legal-page .article-section {
    margin: 2.5rem 0;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

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

.legal-page a:hover {
    text-decoration: none;
}

.site-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.6rem;
}

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

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
}

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

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

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

@media (min-width: 768px) {
    .service-detailed {
        flex-direction: row;
        gap: 3rem;
    }

    .service-content {
        flex: 2;
    }

    .service-image {
        flex: 1;
    }

    .contact-info-section {
        flex-direction: row;
    }

    .contact-details {
        flex: 1.5;
        order: 1;
    }

    .contact-image {
        flex: 1;
        order: 2;
    }
}

@media (max-width: 767px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        justify-content: center;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .submit-btn {
        width: 100%;
    }
}