* {
    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: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

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

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

.story-flow {
    width: 100%;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.hero-text {
    max-width: 800px;
    margin: -100px auto 0;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.lead-text {
    font-size: 20px;
    color: #7f8c8d;
    line-height: 1.6;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-intro,
.problem-reveal,
.approach-section,
.services-preview,
.trust-building,
.form-section,
.references,
.disclaimer-section,
.about-intro,
.values-section,
.team-approach,
.mission-section,
.services-detailed,
.contact-info,
.faq-section {
    padding: 60px 0;
}

.story-intro p,
.problem-reveal p,
.approach-section p,
.trust-building p,
.about-intro p,
.team-approach p,
.mission-section p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.story-intro h2,
.problem-reveal h2,
.approach-section h2,
.services-preview h2,
.trust-building h2,
.form-section h2,
.references h3,
.values-section h2,
.team-approach h2,
.mission-section h2,
.contact-info h2,
.faq-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.inline-image-section {
    padding: 40px 0;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #ecf0f1;
}

.image-caption {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

.insight-box {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-box p {
    font-size: 16px;
    line-height: 1.7;
}

.service-card-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-card-inline h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card-inline p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
    display: block;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.testimonial-inline {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.testimonial-inline blockquote {
    border-left: 4px solid #3498db;
    padding-left: 30px;
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.editorial-form {
    margin-top: 40px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #27ae60;
}

.reference-list {
    list-style-position: inside;
    padding-left: 0;
}

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

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

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

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.page-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.value-block,
.faq-item {
    margin-bottom: 40px;
}

.value-block h3,
.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-block p,
.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

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

.service-detail-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: #ecf0f1;
}

.service-detail-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price-highlight {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 30px 0;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 8px;
}

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

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2ecc71;
}

.price-detail {
    font-size: 14px;
    color: #7f8c8d;
}

.contact-block {
    margin-bottom: 40px;
}

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-note,
.contact-directions {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 30px;
}

.contact-note h3,
.contact-directions h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2ecc71;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

.thanks-message,
.service-info,
.next-steps {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.service-info {
    font-weight: 600;
    color: #3498db;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.legal-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #34495e;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
}

.cookies-table thead {
    background-color: #34495e;
    color: #ffffff;
}

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

.cookies-table th {
    font-weight: 600;
    font-size: 14px;
}

.cookies-table td {
    font-size: 14px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

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

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

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

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

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

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

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

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .page-hero h1 {
        font-size: 36px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }

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