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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 37px;
    z-index: 99;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #3498db;
}

.editorial-content {
    background-color: #fafafa;
}

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

.hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    background-color: #d5d5d5;
    margin-bottom: 40px;
}

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

.page-header {
    padding: 60px 30px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.narrow-text {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.lead-text {
    font-size: 21px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 0;
}

.content-block {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.content-block p {
    margin-bottom: 24px;
    font-size: 18px;
    color: #333;
}

h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    font-weight: 600;
    color: #1a1a1a;
}

h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    font-weight: 600;
    color: #2c3e50;
}

h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 600;
    color: #34495e;
}

.inline-cta-box {
    background-color: #ecf8ff;
    border-left: 4px solid #3498db;
    padding: 25px 30px;
    margin: 40px 0;
}

.cta-text {
    font-size: 19px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    padding: 10px 25px;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-link:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

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

.text-highlight {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 30px;
    margin: 35px 0;
}

.text-highlight h3 {
    margin-top: 0;
}

.benefits-list {
    margin: 25px 0 25px 30px;
    font-size: 18px;
}

.benefits-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-inline {
    background-color: #f5f5f5;
    border-left: 5px solid #95a5a6;
    padding: 25px 30px;
    margin: 40px 0;
    font-style: italic;
}

.quote {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #34495e;
}

.quote-author {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
    margin-bottom: 0;
}

.form-section {
    background-color: #f0f4f8;
    padding: 70px 0;
    margin-top: 60px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.article-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1;
    min-width: 280px;
}

.footer-block h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
}

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

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

.footer-links h4 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
}

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

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

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

.footer-links a:hover {
    color: #3498db;
}

.disclaimer {
    border-top: 1px solid #445566;
    padding-top: 30px;
    margin-top: 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    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 {
    flex: 1;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.service-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-of-type {
    border-bottom: none;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 10px 0 25px;
}

.service-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #2980b9;
}

.closing-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 6px;
    margin-top: 60px;
}

.contact-info-block {
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    background-color: #f0f4f8;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.contact-note a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background-color: #e8e8e8;
    padding: 40px;
    border-radius: 6px;
    text-align: center;
}

.map-placeholder em {
    font-size: 16px;
    color: #7f8c8d;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-message {
    background-color: #d5f4e6;
    border-left: 5px solid #27ae60;
    padding: 40px;
    border-radius: 4px;
    margin: 30px 0;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 20px;
}

.next-steps {
    margin-top: 50px;
}

.next-steps ul {
    margin-top: 20px;
    margin-left: 30px;
}

.next-steps li {
    margin-bottom: 12px;
    font-size: 17px;
}

.next-steps a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.next-steps a:hover {
    text-decoration: underline;
}

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

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-updated {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

#service-confirmation {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
    font-weight: 600;
    color: #27ae60;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

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

    .narrow-text {
        padding: 0 20px;
    }
}