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

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

.ad-notice {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #f5c6cb;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-size: 16px;
    transition: color 0.3s;
}

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

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

.hero-editorial {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    background-color: #1a1a1a;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

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

.text-block {
    margin-bottom: 48px;
}

.text-block h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.text-block h3 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.text-block h4 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.text-block p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #374151;
}

.text-block sup a {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
}

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

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

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

.cta-link {
    display: inline-block;
    font-size: 20px;
    color: #1e40af;
    text-decoration: none;
    padding: 16px 32px;
    border: 2px solid #1e40af;
    transition: all 0.3s;
}

.cta-link:hover {
    background-color: #1e40af;
    color: #ffffff;
}

.testimonial-block {
    margin: 56px 0;
    padding: 32px;
    background-color: #f9fafb;
    border-left: 4px solid #6366f1;
}

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

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

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

.service-card {
    padding: 32px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s;
}

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

.service-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1f2937;
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 28px;
    font-weight: bold;
    color: #1e40af;
    margin: 16px 0;
}

.select-service-btn {
    background-color: #1e40af;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    margin: 56px 0;
    padding: 40px;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
}

.form-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e40af;
}

.selected-service-display {
    font-size: 18px;
    margin-bottom: 24px;
    color: #374151;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #1e40af;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.disclaimer-section {
    margin: 56px 0;
    padding: 24px;
    background-color: #fef3c7;
    border: 1px solid #fcd34d;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: #78350f;
}

.references-section {
    margin: 48px 0;
    padding: 24px;
    background-color: #f3f4f6;
}

.references-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1f2937;
}

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

.references-list li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #4b5563;
}

.references-list a {
    color: #2563eb;
    text-decoration: none;
}

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

.site-footer {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 48px 40px 24px;
}

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

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

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

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #10b981;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #059669;
}

.cookie-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #4b5563;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

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

.page-content {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1f2937;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #374151;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

.page-content li {
    margin-bottom: 12px;
}

.contact-info {
    margin: 40px 0;
    padding: 32px;
    background-color: #f9fafb;
    border-left: 4px solid #1e40af;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1f2937;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 8px;
}

.thanks-message {
    max-width: 720px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
}

.thanks-message h1 {
    font-size: 42px;
    color: #1e40af;
    margin-bottom: 24px;
}

.thanks-message p {
    font-size: 19px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 16px;
}

.thanks-message .back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #1e40af;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
}

.thanks-message .back-link:hover {
    background-color: #1e3a8a;
}

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

    .nav-links {
        gap: 16px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .text-block h2 {
        font-size: 26px;
    }

    .text-block h3 {
        font-size: 22px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-container {
        padding: 40px 20px;
    }

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