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

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

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

.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;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e4dc;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #8b4513;
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 10px;
    border-left: 1px solid #e8e4dc;
    font-family: 'Arial', sans-serif;
}

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

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4a373;
}

.hero-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 8px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text-overlay p {
    font-size: 20px;
    font-weight: 300;
}

.text-block {
    padding: 80px 0;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 32px;
    font-style: italic;
}

.narrow-content p {
    margin-bottom: 24px;
    font-size: 18px;
}

.narrow-content h2 {
    font-size: 32px;
    margin-top: 64px;
    margin-bottom: 24px;
    color: #8b4513;
    font-weight: 700;
    line-height: 1.3;
}

.narrow-content h3 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #34495e;
    font-weight: 600;
}

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

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

.inline-image figcaption {
    padding: 16px;
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
    text-align: center;
    background-color: #f8f6f2;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    vertical-align: super;
}

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

blockquote {
    margin: 48px 0;
    padding: 32px;
    background-color: #f8f6f2;
    border-left: 4px solid #8b4513;
    font-style: italic;
    font-size: 19px;
    color: #34495e;
}

blockquote cite {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    font-style: normal;
    color: #7f8c8d;
}

.highlight-box {
    background-color: #fff9e6;
    border: 2px solid #f4d03f;
    padding: 32px;
    margin: 48px 0;
    border-radius: 8px;
}

.highlight-box h3 {
    margin-top: 0;
    color: #8b4513;
}

.highlight-box ul {
    margin-left: 24px;
    margin-top: 16px;
}

.highlight-box li {
    margin-bottom: 12px;
    font-size: 17px;
}

.services-inline {
    margin: 64px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    overflow: hidden;
    padding: 32px;
}

.service-card-editorial img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 24px;
    border-radius: 4px;
    background-color: #e8e4dc;
}

.service-card-editorial h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 26px;
    color: #8b4513;
}

.service-card-editorial p {
    font-size: 17px;
    margin-bottom: 16px;
}

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

.cta-inline {
    background-color: #8b4513;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-inline:hover {
    background-color: #6d3410;
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin: 64px 0;
    padding: 48px 0;
    background-color: #f8f6f2;
    border-radius: 8px;
}

.indicator {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.indicator strong {
    font-size: 36px;
    color: #8b4513;
    margin-bottom: 8px;
}

.indicator span {
    font-size: 15px;
    color: #7f8c8d;
}

.final-cta-section {
    margin: 80px 0;
    padding: 48px;
    background-color: #ffffff;
    border: 2px solid #8b4513;
    border-radius: 8px;
}

.final-cta-section h3 {
    margin-top: 0;
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    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: #8b4513;
}

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.disclaimer-section {
    margin: 64px 0;
    padding: 32px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

.references-section {
    margin: 64px 0;
    padding: 32px;
    background-color: #f8f6f2;
    border-radius: 8px;
}

.references-section h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 22px;
}

.references-list {
    margin-left: 24px;
}

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

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

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

.footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 30px 0;
    border-top: 1px solid #4a5f7f;
    text-align: center;
}

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

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

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

.page-header h1 {
    font-size: 42px;
    color: #8b4513;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
}

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

.content-section h2 {
    font-size: 28px;
    color: #34495e;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    padding: 32px;
}

.service-item h3 {
    font-size: 22px;
    color: #8b4513;
    margin-bottom: 16px;
}

.service-item p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.contact-info {
    background-color: #f8f6f2;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #8b4513;
}

.contact-item {
    margin-bottom: 16px;
    font-size: 16px;
}

.contact-item strong {
    display: inline-block;
    width: 140px;
    color: #34495e;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 30px;
    background-color: #ffffff;
    border: 2px solid #27ae60;
    border-radius: 8px;
}

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #8b4513;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .back-link:hover {
    background-color: #6d3410;
    transform: translateY(-2px);
}

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

    .nav-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .ad-disclosure {
        border-left: none;
        border-top: 1px solid #e8e4dc;
        padding-top: 12px;
    }

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

    .hero-text-overlay p {
        font-size: 16px;
    }

    .narrow-content {
        padding: 0 20px;
    }

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

    .trust-indicators {
        flex-direction: column;
        gap: 32px;
    }

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

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