* {
    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;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    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-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cookie {
    background-color: #4a9eff;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #3a8eef;
}

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

.btn-cookie.btn-secondary:hover {
    background-color: #333;
}

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

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

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.article-header {
    margin-bottom: 48px;
}

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

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

.article-image-hero {
    margin: 0 -20px 48px;
    background-color: #e8e8e8;
}

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

.article-content p {
    margin-bottom: 24px;
    font-size: 18px;
}

.dropcap::first-letter {
    font-size: 72px;
    line-height: 1;
    float: left;
    margin: 5px 10px 0 0;
    color: #1a1a1a;
    font-weight: 600;
}

.article-content h2 {
    font-size: 32px;
    margin: 56px 0 24px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.article-inline-image {
    margin: 48px 0;
    background-color: #e8e8e8;
}

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

.article-quote {
    margin: 48px 0;
    padding: 32px;
    border-left: 4px solid #4a9eff;
    background-color: #f8f8f8;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

.article-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.cta-inline {
    margin: 56px 0;
    padding: 40px;
    background-color: #f0f7ff;
    border-radius: 8px;
    text-align: center;
}

.cta-inline h3 {
    margin: 0 0 12px;
    font-size: 26px;
    color: #1a1a1a;
}

.cta-inline p {
    margin: 0 0 24px;
    font-size: 17px;
    color: #4a4a4a;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.editorial-list {
    margin: 32px 0;
    padding-left: 24px;
}

.editorial-list li {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.7;
}

.editorial-list strong {
    color: #1a1a1a;
}

.services-cards {
    margin: 56px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.service-card:hover {
    border-color: #4a9eff;
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.1);
}

.service-card.featured {
    border-color: #4a9eff;
    background-color: #f0f7ff;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card p {
    margin: 0 0 20px;
    font-size: 16px;
    color: #4a4a4a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service:hover {
    background-color: #3a8eef;
}

.form-container {
    margin: 48px 0;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.form-container h2 {
    margin: 0 0 32px;
    font-size: 28px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit:hover {
    background-color: #3a8eef;
}

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #f8f8f8;
    border-left: 4px solid #4a9eff;
    font-size: 18px;
    line-height: 1.7;
}

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

.disclaimer-section {
    margin: 56px 0;
    padding: 32px;
    background-color: #fff9e6;
    border: 1px solid #f0e5b8;
    border-radius: 8px;
}

.disclaimer-section h3 {
    margin: 0 0 16px;
    font-size: 20px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.disclaimer-section p {
    margin: 0;
    font-size: 15px;
    color: #4a4a4a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.final-cta {
    margin: 64px 0;
    padding: 48px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.final-cta h3 {
    margin: 0 0 16px;
    font-size: 32px;
    color: #ffffff;
}

.final-cta p {
    margin: 0 0 32px;
    font-size: 18px;
    color: #d0d0d0;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #3a8eef;
    transform: translateY(-2px);
}

.footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 20px 30px;
}

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

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

.footer-section h4 {
    margin: 0 0 20px;
    font-size: 18px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-container {
    max-width: 680px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 20px;
}

.page-container h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-container p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page-container ul {
    margin: 20px 0;
    padding-left: 24px;
}

.page-container ul li {
    margin-bottom: 12px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-info {
    margin: 40px 0;
    padding: 32px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.contact-info h2 {
    margin: 0 0 24px;
    font-size: 24px;
    color: #1a1a1a;
}

.contact-info p {
    margin: 12px 0;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-info strong {
    color: #1a1a1a;
    font-weight: 600;
}

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

.service-item {
    padding: 24px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.service-item h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-item p {
    margin: 0 0 16px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-item .price {
    font-size: 24px;
    font-weight: 600;
    color: #4a9eff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

    .article-image-hero {
        margin-left: -20px;
        margin-right: -20px;
    }

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

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

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

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