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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

.article-header {
    margin-bottom: 50px;
}

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

.article-meta {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.article-image {
    margin-bottom: 50px;
    background-color: #e8e8e8;
}

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

.article-body {
    font-size: 18px;
    line-height: 1.8;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.content-section h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.inline-image {
    margin: 50px 0;
    background-color: #e8e8e8;
}

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

.cta-inline {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid #3498db;
}

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

.cta-inline p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.testimonial-section {
    margin: 50px 0;
    padding: 40px;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.testimonial-section blockquote {
    font-size: 20px;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-section cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    background-color: #e8e8e8;
}

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

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

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px;
}

.btn-select-service {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.service-card.selected {
    border-color: #3498db;
    box-shadow: 0 0 0 2px #3498db;
}

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

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

.selected-service-display {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #e8f4f8;
    border-radius: 4px;
}

.selected-service-display strong {
    color: #2980b9;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

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

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

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

.references ol {
    padding-left: 25px;
}

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

.references a {
    color: #3498db;
    text-decoration: none;
}

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-content p {
    font-size: 14px;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px;
    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;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    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;
}

.thanks-message {
    max-width: 720px;
    margin: 100px auto;
    padding: 60px 30px;
    text-align: center;
}

.thanks-message h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 25px;
}

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

.thanks-message .service-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-message .btn-primary {
    margin-top: 20px;
}

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

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

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

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

.page-content li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 6px;
    margin: 40px 0;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 15px;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

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

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

    .article-body {
        font-size: 17px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}