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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

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

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

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

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-notice {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

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

.nav-links a:hover {
    color: #2c2c2c;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

.article-hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.article-header-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 20px 0;
    text-align: center;
}

.article-header-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.article-content {
    padding: 40px 20px 80px;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.lead-text {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #3a3a3a;
}

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

.content-narrow h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f9f9f9;
    padding: 0;
}

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

.image-caption {
    padding: 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 0;
}

blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #f5f5f5;
    border-left: 4px solid #4a90e2;
    font-size: 19px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c5aa0;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Georgia', serif;
}

.btn-primary:hover {
    background-color: #1e4077;
    transform: translateY(-2px);
}

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

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fafafa;
    padding: 35px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #4a90e2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 16px;
}

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

.btn-select-service {
    padding: 12px 28px;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1e4077;
}

.contact-form-section {
    margin-top: 50px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.contact-form-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #e8f4f8;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Georgia', serif;
}

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

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 30px;
    background-color: #fff8e1;
    border-left: 4px solid #ffa726;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

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

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

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

.footer-section ul li a {
    color: #aaa;
    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: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

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

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

    .nav-right {
        flex-direction: column;
        gap: 15px;
    }

    .article-header-text h1 {
        font-size: 36px;
    }

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

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

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

    .content-narrow p {
        font-size: 17px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}