* {
    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;
}

.navbar {
    background-color: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    opacity: 0.8;
}

.ad-notice {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.hero-fullscreen {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.8;
}

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.story-intro {
    background-color: #f8f9fa;
}

.story-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.problem-section {
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
}

.insight-reveal {
    background-color: #ecf0f1;
}

.insight-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.insight-reveal p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.trust-builder {
    background-color: #ffffff;
}

.trust-builder h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a2e;
    font-weight: 700;
}

.research-note {
    background-color: #f0f8ff;
    border-left: 4px solid #3498db;
    padding: 2rem;
    border-radius: 4px;
}

.research-note p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

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

.research-note a:hover {
    text-decoration: underline;
}

.testimonial-flow {
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1rem;
}

.benefits-reveal {
    background-color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a2e;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.benefit-item img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #34495e;
}

.cta-inline {
    background-color: #1a1a2e;
    color: #ffffff;
}

.cta-inline h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-inline p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.btn-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.services-pricing {
    background-color: #f8f9fa;
}

.services-pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a2e;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 2px solid #3498db;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #2c2c54;
}

.contact-form-section {
    background-color: #ffffff;
}

.contact-form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
}

.contact-form-section > .narrow-content > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #7f8c8d;
}

.lead-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.site-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 3rem 0 1rem 0;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

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

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

.references-list {
    list-style: decimal;
    padding-left: 1.2rem;
}

.references-list li {
    margin-bottom: 0.7rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero {
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.about-story {
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.about-story p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.values-section {
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a2e;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: #34495e;
}

.approach-section {
    background-color: #ffffff;
}

.approach-section .split-layout.reverse {
    flex-direction: row-reverse;
}

.commitment-section {
    background-color: #ecf0f1;
}

.commitment-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.commitment-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #e74c3c;
    margin-top: 1.5rem;
}

.services-cta {
    background-color: #1a1a2e;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
    text-align: center;
}

.services-cta .btn-primary {
    display: inline-block;
    margin: 0 auto;
}

.services-cta .narrow-content {
    text-align: center;
}

.contact-info-section {
    background-color: #f8f9fa;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.contact-card p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-details {
    background-color: #ffffff;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.contact-details p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.visit-info {
    background-color: #f8f9fa;
}

.legal-page {
    background-color: #ffffff;
}

.legal-page .narrow-content {
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.last-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #34495e;
    line-height: 1.8;
}

.thanks-section {
    background-color: #f8f9fa;
}

.thanks-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-align: center;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 700;
}

.thanks-card p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.next-steps {
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    background-color: #f8f9fa;
    padding: 1.8rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
    font-weight: 700;
}

.step-item p {
    font-size: 1.05rem;
    color: #34495e;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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