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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.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;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

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

.btn-cookie-reject {
    background-color: #666;
}

.btn-cookie-reject:hover {
    background-color: #555;
}

.top-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 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;
    flex-wrap: wrap;
    gap: 15px;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.nav-links a:hover {
    color: #4a90e2;
}

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

.main-article {
    background-color: #ffffff;
    padding: 50px 60px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

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

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

.article-image {
    margin: 40px -60px;
    background-color: #e8e8e8;
}

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

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

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

.content-section {
    margin: 35px 0;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
}

.content-section a {
    color: #4a90e2;
    text-decoration: none;
    border-bottom: 1px solid #4a90e2;
}

.content-section a:hover {
    color: #357abd;
    border-bottom-color: #357abd;
}

.cta-inline {
    margin: 35px 0;
    padding: 30px;
    background-color: #f8f9fa;
    text-align: center;
    border-left: 4px solid #4a90e2;
}

.cta-link {
    font-size: 19px;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 2px solid #4a90e2;
    transition: all 0.3s;
}

.cta-link:hover {
    color: #357abd;
    border-bottom-color: #357abd;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f5f7fa;
    border-left: 3px solid #2c3e50;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.service-card {
    padding: 30px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    transition: box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select {
    padding: 12px 28px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

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

.form-section {
    margin-top: 40px;
    padding: 40px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    margin-bottom: 15px;
    font-size: 28px;
    font-family: 'Georgia', serif;
}

.form-section > p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2c3e50;
    font-weight: 500;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.form-row input[readonly] {
    background-color: #f0f0f0;
    color: #666;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a252f;
}

.disclaimer-section {
    margin-top: 50px;
    padding: 25px;
    background-color: #fff9e6;
    border-left: 3px solid #f39c12;
}

.disclaimer-section h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.references-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.references-list a {
    color: #4a90e2;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .main-article {
        padding: 30px 20px;
    }

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

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

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

    .content-section h2 {
        font-size: 24px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
    }

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