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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-reject {
    background-color: #757575;
    color: white;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 12px;
    color: #999;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.hero-text-center {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e0e0e0;
}

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

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

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.citation {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    vertical-align: super;
}

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

.inline-image-block {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fafafa;
}

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

.inline-image-block figcaption {
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 12px 0;
}

.story-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px;
    margin: 60px 0;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.story-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-content .citation {
    color: #66b3ff;
}

.cta-inline {
    text-align: center;
    margin: 50px auto;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 20px 60px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.testimonial-inline {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.services-editorial {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.services-editorial h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.service-card-editorial {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.service-card-editorial h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 36px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.form-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

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

.selected-service-display {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.selected-service-display span {
    font-weight: bold;
    color: #27ae60;
}

.contact-form-editorial .form-group {
    margin-bottom: 24px;
}

.contact-form-editorial label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.contact-form-editorial input,
.contact-form-editorial textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 48px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cta-final {
    text-align: center;
    margin: 80px auto;
}

.disclaimer-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

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

.references-section {
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 40px;
    background-color: #f5f5f5;
}

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

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

.references-list li {
    font-size: 14px;
    margin-bottom: 12px;
    color: #444;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

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

.footer-editorial {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.footer-col ul li {
    margin-bottom: 8px;
}

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

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

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

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

.page-content li {
    font-size: 17px;
    margin-bottom: 8px;
    color: #333;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-item {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

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

.service-item p {
    font-size: 17px;
    color: #444;
    margin-bottom: 16px;
}

.service-item .price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
}

.contact-info {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

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

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #155724;
}

.thanks-container p {
    font-size: 18px;
    color: #155724;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background-color: #28a745;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .hero-text-center h1 {
        font-size: 32px;
    }

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

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

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

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

    .page-header h1 {
        font-size: 36px;
    }
}