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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2c7da0;
    --accent-color: #f77f00;
    --text-dark: #1e1e1e;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #ffeaa7;
    padding: 8px;
    text-align: center;
    font-size: 13px;
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    border-bottom: 1px solid #fdcb6e;
}

.minimal-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 5px 15px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

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

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

.story-header {
    margin-bottom: 40px;
    text-align: center;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.story-image {
    margin: 50px 0;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

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

.story-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--primary-color);
}

.story-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--text-dark);
}

.story-content h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top: 25px;
    color: var(--text-dark);
}

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

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

.story-content li {
    margin-bottom: 10px;
}

.highlight-section {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    margin: 50px 0;
}

.key-points {
    list-style: none;
    padding-left: 0;
}

.key-points li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.key-points li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.cta-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.cta-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.insight-quote {
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-light);
    border-left: 4px solid var(--primary-color);
    padding-left: 25px;
    margin: 40px 0;
}

.service-cards {
    margin: 40px 0;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

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

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

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

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
}

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

.select-service {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.select-service:hover {
    background-color: var(--primary-color);
}

.testimonial-section {
    margin: 60px 0;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-family: Georgia, serif;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-white);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #d66d00;
}

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

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    padding: 15px 40px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d66d00;
}

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

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

.disclaimer-section {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 25px;
    margin: 50px 0;
    border-radius: 4px;
}

.disclaimer-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--bg-white);
    font-family: Arial, sans-serif;
}

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

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

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

.footer-section ul li a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 15px;
    text-align: center;
    font-size: 15px;
    font-family: Arial, sans-serif;
}

.cookie-content a {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 10px 25px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: var(--bg-white);
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.legal-page h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-page table th,
.legal-page table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.legal-page table th {
    background-color: var(--bg-light);
    font-weight: bold;
}

.contact-grid {
    display: flex;
    flex-direction: column;
}

.contact-info,
.contact-form-container {
    flex: 1;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-detail .note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 10px;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    background-color: var(--bg-light);
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary-color);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 16px;
    margin-bottom: 0;
}

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

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 17px;
}

.thanks-page .confirmation-box {
    background-color: #d4edda;
    border: 2px solid var(--success-color);
    padding: 40px;
    text-align: center;
    border-radius: 4px;
    margin: 40px 0;
}

.confirmation-icon {
    font-size: 60px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.confirmation-box h2 {
    color: var(--success-color);
    margin-bottom: 15px;
}

.next-steps {
    display: flex;
    flex-direction: column;
}

.next-step {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 4px;
}

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

.next-step p {
    font-size: 17px;
    margin-bottom: 0;
}

.preparation-list {
    list-style: none;
    padding-left: 0;
}

.preparation-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.preparation-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 1.2;
}

.service-card.detailed {
    border-left: 4px solid var(--secondary-color);
}

.cookie-table {
    font-size: 15px;
}

@media (min-width: 768px) {
    .nav-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .brand {
        margin-bottom: 0;
    }

    .story-header h1 {
        font-size: 48px;
    }

    .contact-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
        margin-right: 40px;
    }

    .contact-form-container {
        flex: 1.5;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content p {
        margin-bottom: 0;
        margin-right: 20px;
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .editorial-container {
        padding: 60px 20px;
    }

    .story-header h1 {
        font-size: 52px;
    }
}