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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3d5c;
}

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

.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: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a3d5c;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4a5f73;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    background-color: #d4dce3;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f8d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a3d5c;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c5f8d;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5f8d;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5f8d;
    color: #ffffff;
}

.intro-statement {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-statement h2 {
    font-size: 2.5rem;
    color: #1a3d5c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-statement p {
    font-size: 1.15rem;
    color: #4a5f73;
    margin-bottom: 1.2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.visual-block {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
    border-radius: 8px;
}

.visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.2rem;
    color: #1a3d5c;
    margin-bottom: 1.5rem;
}

.content-block h3 {
    font-size: 1.5rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.content-block p {
    font-size: 1.1rem;
    color: #4a5f73;
    margin-bottom: 1.2rem;
}

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

.service-highlights li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: #4a5f73;
}

.service-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f8d;
    font-weight: bold;
}

.link-arrow {
    display: inline-block;
    color: #2c5f8d;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.link-arrow:after {
    content: " →";
}

.link-arrow:hover {
    transform: translateX(5px);
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.problem-amplification {
    padding: 5rem 2rem;
    background-color: #1a3d5c;
    color: #ffffff;
}

.problem-amplification h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.reasons-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 8px;
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.reason-card p {
    color: #d4dce3;
    font-size: 1.05rem;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.stats-inline {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2.5rem;
    color: #2c5f8d;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.testimonials-flow {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.testimonials-flow h2 {
    font-size: 2.5rem;
    color: #1a3d5c;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-blocks {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial p {
    font-size: 1.05rem;
    color: #4a5f73;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: #2c5f8d;
    font-weight: 600;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 2.5rem;
    color: #1a3d5c;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > .content-wrapper > p {
    text-align: center;
    color: #4a5f73;
    margin-bottom: 3rem;
}

.consultation-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.8rem;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    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: #2c5f8d;
}

.cta-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #2c5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: #1a3d5c;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f0f3f5;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #6c7a89;
    text-align: center;
    line-height: 1.8;
}

.site-footer {
    background-color: #1a3d5c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-header {
    padding: 4rem 2rem;
    background-color: #1a3d5c;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #d4dce3;
}

.origin-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.expertise-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.expertise-section h2 {
    font-size: 2.5rem;
    color: #1a3d5c;
    margin-bottom: 3rem;
    text-align: center;
}

.expertise-blocks {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.expertise-card h3 {
    font-size: 1.5rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #4a5f73;
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-philosophy {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #1a3d5c;
    margin-bottom: 3rem;
    text-align: center;
}

.values-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f8d;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #1a3d5c;
    margin-bottom: 0.8rem;
}

.value-item p {
    color: #4a5f73;
    font-size: 1.05rem;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #2c5f8d;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d4dce3;
}

.services-grid {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-visual {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2rem;
    color: #1a3d5c;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    color: #2c5f8d;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-details > p {
    font-size: 1.1rem;
    color: #4a5f73;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-includes li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #4a5f73;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background-color: #2c5f8d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1a3d5c;
}

.pricing-notes {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.pricing-notes h2 {
    font-size: 2rem;
    color: #1a3d5c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-notes p {
    max-width: 900px;
    margin: 0 auto 1.2rem;
    color: #4a5f73;
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.7;
}

.contact-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.contact-detail strong {
    display: block;
    font-size: 1.1rem;
    color: #1a3d5c;
    margin-bottom: 0.5rem;
}

.email-display {
    color: #4a5f73;
    font-size: 1.05rem;
}

.hours-block {
    margin-top: 3rem;
}

.hours-block h3 {
    font-size: 1.4rem;
    color: #1a3d5c;
    margin-bottom: 1rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-list li span:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.hours-list li span:last-child {
    color: #4a5f73;
}

.note-text {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0f3f5;
    border-left: 4px solid #2c5f8d;
    color: #4a5f73;
    font-size: 0.95rem;
    line-height: 1.7;
}

.directions-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.directions-section h2 {
    font-size: 2.5rem;
    color: #1a3d5c;
    margin-bottom: 3rem;
    text-align: center;
}

.directions-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.direction-item h3 {
    font-size: 1.3rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.direction-item p {
    color: #4a5f73;
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-content {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.thanks-content .content-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-message {
    flex: 1.2;
}

.thanks-message h1 {
    font-size: 2.8rem;
    color: #1a3d5c;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.2rem;
    color: #4a5f73;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.next-steps {
    margin: 2.5rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #2c5f8d;
    margin-bottom: 1.5rem;
}

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

.steps-list li {
    counter-increment: steps;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: #4a5f73;
    font-size: 1.05rem;
    line-height: 1.7;
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background-color: #2c5f8d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.thanks-visual {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a3d5c;
    margin-bottom: 1rem;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    color: #2c5f8d;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
}

.legal-page p {
    color: #4a5f73;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #4a5f73;
}

.legal-page ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-page a {
    color: #2c5f8d;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookies-table td {
    color: #4a5f73;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-visual {
        min-height: 400px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .reasons-grid,
    .testimonial-blocks,
    .expertise-blocks,
    .directions-grid {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .thanks-content .content-wrapper {
        flex-direction: column;
    }

    .cta-group {
        flex-direction: column;
    }
}
