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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

.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: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.editorial-flow {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero-editorial {
    text-align: center;
    padding: 40px 0;
}

.hero-editorial h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555555;
    font-weight: 400;
}

.editorial-image {
    width: 100%;
    margin: 0;
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.text-block {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
}

.text-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.text-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 32px;
    line-height: 1.3;
}

.text-block h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 24px;
}

.text-block p {
    margin-bottom: 20px;
}

.text-block ul,
.text-block ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.text-block li {
    margin-bottom: 10px;
}

.text-block strong {
    font-weight: 600;
    color: #1a1a1a;
}

.inline-cta {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #3498db;
}

.inline-cta p {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.services-preview {
    margin: 60px 0;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.1);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 16px;
}

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

.text-center {
    text-align: center;
}

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

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

.form-section > p {
    font-size: 18px;
    color: #555555;
    text-align: center;
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.editorial-form button[type="submit"] {
    width: 100%;
    margin-top: 16px;
}

.disclaimer-section {
    background-color: #fff8e6;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #f39c12;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    font-style: italic;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 32px;
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.service-header h2 {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    white-space: nowrap;
}

.service-body {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
}

.service-body p {
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-detail {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    font-weight: 500;
}

.note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
    font-style: italic;
}

.info-list {
    list-style: disc;
    padding-left: 28px;
    margin-top: 16px;
}

.info-list li {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.6;
}

.thanks-page {
    text-align: center;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.legal-page .text-block {
    font-size: 16px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

.legal-table th {
    background-color: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #e0e0e0;
}

.legal-table td {
    padding: 12px;
    border: 1px solid #e0e0e0;
}

.legal-table tr:nth-child(even) {
    background-color: #fafafa;
}

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

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

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

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ecf0f1;
}

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

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

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

.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: #3498db;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

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

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

    .text-block {
        font-size: 17px;
    }

    .text-block h2 {
        font-size: 26px;
    }

    .text-block h3 {
        font-size: 22px;
    }

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

    .form-section {
        padding: 32px 24px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-content p {
        min-width: auto;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

    .nav-links {
        gap: 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

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