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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
}

.ad-disclosure {
    background-color: #fffbcc;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

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

.article-hero h1,
.page-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.hero-image,
.content-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 3px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
    color: var(--primary-color);
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
    color: var(--secondary-color);
}

.content-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.7;
}

.inline-cta {
    background-color: var(--light-bg);
    padding: 25px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
}

.cta-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.7;
}

.image-left,
.image-right {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    margin: 50px 0;
}

.image-left {
    flex-direction: row;
}

.image-right {
    flex-direction: row-reverse;
}

.inline-image {
    width: 45%;
    height: auto;
    border-radius: 3px;
    flex-shrink: 0;
}

.text-block {
    flex: 1;
}

.editorial-quote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.5;
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid var(--primary-color);
    background-color: var(--light-bg);
    color: var(--secondary-color);
}

.content-highlight {
    background-color: #e8f4f8;
    padding: 25px;
    margin: 30px 0;
    border-radius: 3px;
}

.content-highlight p {
    margin-bottom: 0;
    font-weight: 500;
}

.services-overview {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.section-intro {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

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

.service-card {
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 3px;
    transition: box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 15px;
}

.contact-form-wrapper {
    background-color: var(--light-bg);
    padding: 40px;
    margin-top: 40px;
    border-radius: 3px;
}

.contact-form-wrapper.centered {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-wrapper h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary-color);
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.inline-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.inline-button:hover {
    background-color: var(--secondary-color);
}

.final-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

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

.cta-section {
    background-color: var(--light-bg);
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    border-radius: 3px;
}

.service-intro {
    background-color: #f0f7fb;
    padding: 35px;
    border-radius: 3px;
    margin-bottom: 40px;
}

.service-intro h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.final-thoughts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.service-detail {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 50px 0;
    max-width: 100%;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-image {
    width: 400px;
    height: auto;
    border-radius: 3px;
    flex-shrink: 0;
}

.service-features {
    margin: 25px 0;
}

.feature-item {
    margin-bottom: 20px;
}

.feature-item h4 {
    margin-top: 0;
}

.service-pricing {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #555;
}

.price-value {
    font-size: 30px;
    font-weight: 700;
    color: var(--accent-color);
}

.contact-info-layout {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-block {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.email-display {
    color: var(--text-color);
    font-weight: 500;
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 3px;
    margin-bottom: 25px;
}

.contact-note {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 3px;
}

.contact-note h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.faq-section {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.final-note {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 3px;
}

.thanks-container {
    max-width: 600px;
    margin: 80px auto;
    text-align: center;
    padding: 50px 30px;
    background-color: var(--light-bg);
    border-radius: 3px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: #fff;
    font-size: 50px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    margin-bottom: 20px;
    font-size: 36px;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 3px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    text-align: left;
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    margin-left: 40px;
}

.steps-list li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.action-btn {
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s;
}

.action-btn.primary {
    background-color: var(--accent-color);
    color: #fff;
}

.action-btn.secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.action-btn:hover {
    opacity: 0.8;
}

.thanks-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    color: #666;
}

.legal-page .page-header {
    margin-bottom: 40px;
}

.last-updated {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
}

.legal-page a:hover {
    opacity: 0.7;
}

.site-footer {
    background-color: var(--primary-color);
    color: #fff;
    margin-top: 80px;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

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

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

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

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

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

.disclaimer {
    font-size: 13px;
    line-height: 1.5;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    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: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: #fff;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

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

    .content-section p,
    .content-section li {
        font-size: 17px;
    }

    .image-left,
    .image-right {
        flex-direction: column;
    }

    .inline-image {
        width: 100%;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

    .contact-info-layout {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .action-btn {
        text-align: center;
    }
}
