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

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

.ad-disclosure {
    background: #fff3cd;
    border-bottom: 1px solid #ffd700;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.nav-minimal {
    background: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #d35400;
    cursor: pointer;
}

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

.editorial-flow {
    background: #ffffff;
    padding: 50px 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.editorial-hero {
    margin-bottom: 50px;
}

.hero-image-wrap {
    margin: 0 -60px 40px -60px;
    background: #ddd;
}

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

.editorial-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.editorial-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    font-style: italic;
}

.editorial-text {
    margin-bottom: 50px;
}

.editorial-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.editorial-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
    font-weight: 500;
}

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

.lead-text {
    font-size: 20px !important;
    line-height: 1.7 !important;
    color: #444;
    margin-bottom: 35px !important;
}

.inline-image {
    margin: 40px 0;
    background: #f5f5f5;
}

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

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

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

.services-inline {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.services-inline h2 {
    font-size: 32px;
    margin-bottom: 35px;
    text-align: center;
    color: #1a1a1a;
}

.service-card-editorial {
    margin-bottom: 30px;
    padding: 25px;
    border: 1px solid #ddd;
    background: #fafafa;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card-editorial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #d35400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-select {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.cta-section-inline {
    text-align: center;
    margin: 50px 0 40px;
}

.cta-section-inline h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-section-inline p {
    font-size: 18px;
    color: #666;
}

.form-section-editorial {
    margin: 50px 0;
    padding: 40px;
    background: #f9f9f9;
    border-left: 4px solid #d35400;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #fff;
}

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

.form-group input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    background: #d35400;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    width: 100%;
}

.btn-submit:hover {
    background: #a84300;
}

.disclaimer {
    background: #fff9e6;
    border: 1px solid #ffd966;
    padding: 25px;
    margin: 40px 0;
}

.disclaimer h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #856404;
}

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

.references {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

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

.references ol {
    margin-left: 20px;
}

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

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

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

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 30px;
}

.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: 250px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

.btn-reject {
    background: #95a5a6;
    color: #fff;
}

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-header {
    background: #2c3e50;
    color: #fff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

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

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

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

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

.content-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #34495e;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

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

.content-section li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-info {
    background: #f9f9f9;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #d35400;
}

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

.contact-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

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

.service-item {
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #d35400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.about-image {
    width: 100%;
    margin: 40px 0;
    background: #f5f5f5;
}

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

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

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

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

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.thanks-container .btn-home:hover {
    background: #1a252f;
}

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

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

    .editorial-container {
        padding: 30px 15px;
    }

    .editorial-flow {
        padding: 30px 25px;
    }

    .hero-image-wrap {
        margin: 0 -25px 30px -25px;
    }

    .editorial-title {
        font-size: 32px;
    }

    .editorial-subtitle {
        font-size: 18px;
    }

    .service-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .btn-select {
        width: 100%;
    }

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

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}