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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a8cc7;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 17px;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.editorial-content {
    background-color: var(--bg-white);
}

.article-hero {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 4rem 2rem 3rem;
    color: white;
}

.hero-text-overlay h1 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.page-header {
    background-color: var(--bg-light);
    padding: 4rem 2rem 3rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-header .lead-text {
    color: var(--text-medium);
    font-size: 1.2rem;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-body {
    padding: 3rem 0;
}

.intro-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

.article-body h2 {
    font-size: 1.9rem;
    line-height: 1.4;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.article-body h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-body ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.inline-image-container {
    margin: 3rem 0;
    background-color: var(--bg-light);
}

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

.image-caption {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
    background-color: var(--bg-light);
}

.benefit-list {
    background-color: var(--bg-light);
    padding: 2rem 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.benefit-list li {
    position: relative;
    padding-left: 1.5rem;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.cta-inline {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
    color: white;
}

.cta-inline .cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.disclaimer-section {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background-color: #fff8e1;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.disclaimer-section p {
    margin: 0;
    color: #5c4e00;
}

.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.final-cta-section h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.final-cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-select {
    width: 100%;
    margin-top: 1.5rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-section {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.thanks-content {
    padding: 4rem 2rem;
}

.thanks-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-box h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-next-steps {
    text-align: left;
    margin: 2.5rem 0;
}

.thanks-next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.thanks-contact-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2.5rem;
}

.thanks-contact-info p {
    margin-bottom: 0.5rem;
}

.legal-page {
    background-color: var(--bg-white);
}

.legal-page .article-body {
    padding: 3rem 0 4rem;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .content-narrow {
        padding: 0 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content p {
        min-width: auto;
    }

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

    .cookie-buttons button {
        flex: 1;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

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

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-image-container {
        height: 400px;
    }

    .hero-text-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .hero-text-overlay h1 {
        font-size: 1.6rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .cta-inline {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}