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

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

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
    font-family: 'Arial', sans-serif;
}

.nav-editorial {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

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

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

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

.article-intro {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.content-block {
    margin-bottom: 60px;
}

.inline-image {
    margin: 40px 0;
    background-color: #e2e8f0;
}

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

.text-block {
    margin: 30px 0;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 600;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2d3748;
}

.cta-inline {
    background: #f7fafc;
    padding: 50px 40px;
    text-align: center;
    margin: 60px 0;
    border-left: 4px solid #2563eb;
}

.cta-inline h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #1a202c;
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #1d4ed8;
    cursor: pointer;
}

.trust-section {
    margin: 80px 0;
    padding: 50px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-section h2 {
    font-size: 30px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a202c;
}

.testimonial {
    margin: 30px 0;
    padding: 30px;
    background: #f7fafc;
    border-left: 3px solid #cbd5e0;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 12px;
}

.testimonial cite {
    font-size: 15px;
    color: #718096;
    font-style: normal;
}

.services-reveal {
    margin: 80px 0;
}

.services-reveal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a202c;
}

.services-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    color: #4a5568;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background: #ffffff;
    padding: 35px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-item p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 20px;
}

.select-service {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.select-service:hover {
    background: #1d4ed8;
}

.form-section {
    margin: 60px 0;
    padding: 50px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.form-intro {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 35px;
}

.selected-service-display {
    background: #f7fafc;
    padding: 16px;
    margin-bottom: 30px;
    border-left: 3px solid #2563eb;
    font-size: 16px;
    color: #2d3748;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2d3748;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

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

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

.btn-submit {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

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

.disclaimer {
    margin: 60px 0;
    padding: 30px;
    background: #fffbeb;
    border: 1px solid #fbbf24;
    border-radius: 4px;
}

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

.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 24px 30px;
    margin-top: 100px;
}

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

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

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

.footer-section p {
    font-size: 15px;
    color: #cbd5e0;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

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

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

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

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

.cookie-content p {
    font-size: 15px;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background 0.2s;
}

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

.btn-reject {
    background: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background: #2d3748;
}

.thanks-page {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

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

.thanks-page p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-page .selected-service-info {
    background: #f7fafc;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #2563eb;
    font-size: 17px;
}

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

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

    .nav-links {
        gap: 16px;
    }

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

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

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

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

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #2d3748;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 16px;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.contact-page h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block {
    background: #ffffff;
    padding: 35px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-block p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 10px;
}

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

.services-page h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
    text-align: center;
}

.services-page .intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 60px;
    color: #4a5568;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

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

.about-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a202c;
}

.about-page p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #2d3748;
    line-height: 1.7;
}

.about-image {
    margin: 40px 0;
    background-color: #e2e8f0;
}

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