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

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

.ad-disclosure {
    background-color: #f4f1ea;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0ddd4;
    font-family: 'Arial', sans-serif;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e6e0;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

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

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

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

.subheading {
    font-size: 20px;
    line-height: 1.6;
    color: #5a6c7d;
    font-style: italic;
}

.inline-image {
    margin: 50px 0;
    width: 100%;
    background-color: #e8f4e8;
}

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

.inline-image-small {
    margin: 40px 0;
    width: 100%;
    background-color: #e8f4e8;
}

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

.narrative-section {
    margin: 50px 0;
}

.narrative-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 500;
}

.narrative-section p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.narrative-section a {
    color: #3498db;
    text-decoration: none;
    font-size: 15px;
}

.narrative-section a:hover {
    text-decoration: underline;
}

.insight-callout {
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    padding: 25px 30px;
    margin: 40px 0;
}

.insight-callout p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #2c3e50;
    margin: 0;
}

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

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.services-reveal {
    margin: 70px 0;
    padding: 50px 0;
    border-top: 2px solid #e8e6e0;
    border-bottom: 2px solid #e8e6e0;
}

.services-reveal h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}

.services-reveal > p {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0ddd4;
    padding: 30px;
    border-radius: 2px;
    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: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.select-service {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a252f;
}

.select-service.selected {
    background-color: #27ae60;
}

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

.form-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-section > p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a6c7d;
}

.editorial-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 4px;
}

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

.form-field label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
}

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

.form-field input[readonly] {
    background-color: #f0f0f0;
    color: #666;
}

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

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

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

.references-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f4f1ea;
    border-radius: 4px;
}

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

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

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

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

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

.disclaimer-box {
    background-color: #fff9e6;
    border: 1px solid #f0d98e;
    padding: 25px;
    margin: 50px 0;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
    font-family: 'Arial', sans-serif;
}

.disclaimer-box strong {
    color: #2c3e50;
}

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

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

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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.6;
    font-family: 'Arial', sans-serif;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

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

.contact-page-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-page-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

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

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.legal-page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
}

.legal-page-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.legal-page-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

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

.legal-page-container li {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.thanks-container .service-name {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    color: #3498db;
    text-decoration: none;
    font-size: 17px;
}

.thanks-container a:hover {
    text-decoration: underline;
}

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

    .nav-links {
        gap: 20px;
    }

    .editorial-container {
        padding: 0 20px;
    }

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

    .subheading {
        font-size: 18px;
    }

    .narrative-section h2 {
        font-size: 24px;
    }

    .narrative-section p {
        font-size: 17px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}