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

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 35px;
    z-index: 999;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a5490;
}

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

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

.hero-image-wrapper {
    margin-bottom: 35px;
    background-color: #e8f0f7;
    overflow: hidden;
}

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

.article-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.content-block {
    margin: 40px 0;
}

.content-block h2 {
    font-size: 32px;
    margin: 35px 0 20px;
    color: #2c3e50;
    font-weight: 600;
}

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

.content-block p {
    margin-bottom: 22px;
    font-size: 18px;
    color: #444;
}

.inline-image-section {
    margin: 50px 0;
    background-color: #f4f7fa;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    background: #f4f7fa;
}

.cta-inline {
    margin: 50px 0;
    padding: 40px 35px;
    background: linear-gradient(135deg, #1a5490 0%, #2980b9 100%);
    color: white;
}

.cta-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #ecf0f1;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #1a5490;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
}

.testimonial-block {
    margin: 50px 0;
    padding: 35px;
    background: #f9f9f9;
    border-left: 4px solid #1a5490;
}

.testimonial-block blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
}

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

.services-editorial {
    margin: 40px 0;
}

.service-card {
    margin: 30px 0;
    padding: 30px;
    background: #f8f9fa;
    border-left: 3px solid #1a5490;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a5490;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

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

.select-service {
    padding: 12px 28px;
    background: #1a5490;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    margin: 50px 0;
    padding: 40px 35px;
    background: #e8f4f8;
}

.form-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a5490;
}

.contact-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    font-size: 16px;
    font-family: inherit;
    background: white;
}

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

.submit-button {
    padding: 14px 35px;
    background: #27ae60;
    color: white;
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding: 30px;
    background: #fff8e1;
    border: 1px solid #ffe082;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.article-footer {
    margin-top: 70px;
    padding-top: 35px;
    border-top: 1px solid #e0e0e0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.footer-links a {
    color: #7f8c8d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1a5490;
}

.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

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

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

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

.cookie-btn.reject:hover {
    background: #95a5a6;
}

.hidden {
    display: none;
}

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}