* {
    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: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cookie-content p {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

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

.nav-minimal {
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    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;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

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

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

.ad-label {
    padding: 4px 12px;
    background-color: #f0f0f0;
    font-size: 11px;
    font-family: 'Arial', sans-serif;
    color: #666;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.editorial-content {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 20px;
}

.article-header {
    margin-bottom: 50px;
    text-align: center;
}

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

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

.story-text {
    margin: 40px 0;
}

.story-text p {
    font-size: 19px;
    margin-bottom: 24px;
    text-align: justify;
}

.story-text h2 {
    font-size: 32px;
    margin: 50px 0 25px 0;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-text h3 {
    font-size: 26px;
    margin: 40px 0 20px 0;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-text ul.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.story-text ul.benefits-list li {
    font-size: 19px;
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    border-left: 3px solid #4a90e2;
    margin-bottom: 15px;
}

.story-text ul.benefits-list li:before {
    content: '';
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #4a90e2;
    border-radius: 50%;
}

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

.inline-image.narrow {
    margin: 40px auto;
    max-width: 500px;
}

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

.insight-block {
    background-color: #f5f5f5;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid #4a90e2;
}

.insight-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.insight-block p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
}

.testimonial-inline p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #888;
    font-style: normal;
}

.cta-inline {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 45px;
    margin: 60px 0;
    text-align: center;
}

.cta-inline.secondary {
    background-color: #f0f7ff;
    color: #1a1a1a;
}

.cta-inline h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.cta-inline p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-text {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-text:hover {
    background-color: #357ab8;
    transform: translateY(-2px);
}

.cta-inline.secondary .btn-text {
    background-color: #1a1a1a;
}

.cta-inline.secondary .btn-text:hover {
    background-color: #333;
}

.trust-section {
    background-color: #fff9f0;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid #e8dcc8;
}

.trust-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.trust-section p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.form-section {
    margin: 80px 0;
    padding: 50px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

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

.form-intro {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

.service-selection {
    margin-bottom: 40px;
}

.service-selection h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.service-option {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #4a90e2;
    background-color: #f8fbff;
}

.service-option input[type="radio"] {
    margin-top: 5px;
    margin-right: 15px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.service-info strong {
    font-size: 18px;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.service-info .price {
    font-size: 20px;
    color: #4a90e2;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.service-info .description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.field-group input,
.field-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #357ab8;
    transform: translateY(-2px);
}

.disclaimer-section {
    margin: 60px 0 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 20px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
    font-family: 'Arial', sans-serif;
}

.thanks-page {
    max-width: 680px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

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

.thanks-page p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.thanks-page .selected-service {
    font-weight: 700;
    color: #4a90e2;
}

.thanks-page .btn-text {
    margin-top: 30px;
}

.contact-page {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-info {
    margin: 40px 0;
    line-height: 2;
}

.contact-info p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.legal-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.legal-page p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    list-style: disc;
}

.legal-page ul li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.services-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.services-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    margin-bottom: 30px;
}

.service-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card .service-price {
    font-size: 24px;
    color: #4a90e2;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-page {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.about-page p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

    .subtitle {
        font-size: 18px;
    }

    .story-text p {
        font-size: 17px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .form-section {
        padding: 30px 20px;
    }

    .cta-inline {
        padding: 30px 20px;
    }

    .cookie-content {
        padding: 10px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}