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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f8f9fa;
}

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

.article-header {
    margin-bottom: 48px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 20px;
    color: #6c757d;
    line-height: 1.5;
}

.inline-image {
    margin: 48px 0;
    background-color: #f5f5f5;
}

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

.story-section,
.insight-section,
.problem-section,
.trust-section,
.benefits-section,
.form-section,
.disclaimer-section,
.references-section,
.team-section,
.values-section,
.location-section,
.mission-section,
.services-detail,
.contact-info-section,
.location-notes,
.faq-section {
    margin-bottom: 48px;
}

.story-section h2,
.insight-section h2,
.problem-section h2,
.trust-section h2,
.benefits-section h2,
.form-section h2,
.services-preview h2,
.team-section h2,
.values-section h2,
.location-section h2,
.mission-section h2,
.contact-info-section h2,
.location-notes h2,
.faq-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-section p,
.insight-section p,
.problem-section p,
.trust-section p,
.benefits-section p,
.team-section p,
.values-section p,
.location-section p,
.mission-section p,
.location-notes p,
.faq-item p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.7;
}

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

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

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

.citation:hover {
    text-decoration: underline;
}

.benefits-list,
.values-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li,
.values-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 18px;
    line-height: 1.7;
}

.benefits-list li::before,
.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.services-preview {
    margin: 60px 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

.service-card h3 {
    padding: 20px 20px 0 20px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    padding: 0 20px 20px 20px;
    margin-bottom: 0;
}

.testimonial {
    padding: 28px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    margin-bottom: 24px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #6c757d;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-top: 24px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fff3cd;
    padding: 24px;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
    margin: 0;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.references-list {
    padding-left: 20px;
}

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

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.service-detail-card {
    margin-bottom: 48px;
}

.service-image {
    margin-bottom: 24px;
    background-color: #f5f5f5;
}

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

.service-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.service-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-details {
    margin-top: 32px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.thanks-content {
    text-align: center;
    padding: 40px 0;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #6c757d;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.steps-list {
    padding-left: 20px;
}

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

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    color: #6c757d;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.legal-content section {
    margin-bottom: 36px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.legal-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 28px;
}

.legal-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.last-updated {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 32px;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 48px 20px 24px;
    margin-top: 80px;
}

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

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

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

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

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

    .subtitle {
        font-size: 18px;
    }

    .editorial-container {
        padding: 40px 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
