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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafbfc;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.7rem;
    background: #ecf0f1;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #fff;
    padding: 1.5rem;
    z-index: 200;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

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

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

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

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-header {
    margin-bottom: 3rem;
    text-align: left;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.lead-text {
    font-size: 1.3rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.content-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.text-section {
    line-height: 1.8;
}

.text-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.text-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
    font-weight: 600;
}

.text-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.text-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.text-section li {
    margin-bottom: 0.5rem;
}

.inline-image {
    margin: 2rem 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.highlight-box {
    background: #ecf0f1;
    padding: 2rem;
    border-left: 4px solid #3498db;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 0.7rem;
}

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

.cta-inline {
    padding: 1.5rem 0;
    text-align: center;
}

.cta-inline p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #2980b9;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.btn-select {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s;
}

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

.form-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid #3498db;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.selected-service-display {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.2s;
}

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

.disclaimer-section {
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background: #fef9e7;
    border-left: 3px solid #f39c12;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .ad-label {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }

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