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

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

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #cbd5e0;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #63b3ed;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f7fafc;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

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

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

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

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

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

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

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

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.image-side {
    flex: 1;
    background-color: #f7fafc;
    overflow: hidden;
    border-radius: 8px;
}

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

.content-side {
    flex: 1;
    padding: 2rem;
}

.content-side h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.content-side p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    color: #4a5568;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2d3748;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-header p {
    font-size: 1.125rem;
    color: #4a5568;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a365d;
}

.service-card p {
    padding: 0 1.5rem;
    color: #4a5568;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 1rem;
}

.service-card .service-link {
    display: block;
    padding: 1rem 1.5rem;
    text-align: center;
    background-color: #edf2f7;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-card .service-link:hover {
    background-color: #e2e8f0;
}

.approach-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.inline-cta {
    display: inline-block;
    color: #2b6cb0;
    text-decoration: underline;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s;
}

.inline-cta:hover {
    color: #2c5282;
}

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 1.0625rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: #718096;
    font-size: 0.9375rem;
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.0625rem;
    color: #cbd5e0;
}

.contact-form {
    background-color: #ffffff;
    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: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9375rem;
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
    font-size: 0.8125rem;
    color: #718096;
    margin-top: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.9375rem;
}

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

.btn-primary {
    padding: 0.75rem 1.5rem;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.page-header p {
    font-size: 1.25rem;
    color: #cbd5e0;
}

.service-detail {
    padding: 4rem 2rem;
}

.service-detail.alternate {
    background-color: #f7fafc;
}

.pricing-box {
    background-color: #edf2f7;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.price-label {
    font-weight: 600;
    color: #2d3748;
}

.price-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b6cb0;
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.9375rem;
    color: #718096;
    margin-top: 0.5rem;
}

.cta-section {
    background-color: #2b6cb0;
    padding: 4rem 2rem;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.125rem;
    color: #e6fffa;
    margin-bottom: 2rem;
}

.cta-content .cta-button {
    background-color: #ffffff;
    color: #2b6cb0;
}

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

.about-intro {
    padding: 4rem 0;
}

.values-section {
    padding: 4rem 2rem;
    background-color: #edf2f7;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.value-card p {
    color: #4a5568;
}

.expertise-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.timeline-section {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

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

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

.timeline-content {
    flex: 1;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
}

.timeline-content h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4a5568;
}

.commitment-section {
    padding: 4rem 2rem;
    background-color: #1a365d;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    font-size: 1.125rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.contact-main {
    padding: 4rem 0;
}

.contact-info-block {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-info-block h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: #2d3748;
}

.info-item span {
    display: block;
    margin-top: 0.5rem;
    color: #4a5568;
}

.visit-info {
    margin-top: 2rem;
}

.visit-info h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.location-section {
    padding: 4rem 2rem;
    background-color: #edf2f7;
}

.location-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.location-content h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

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

.directions-list li {
    padding: 0.5rem 0;
    color: #4a5568;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    display: inline-block;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #e6fffa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.service-selected {
    color: #2d3748;
    font-size: 1.0625rem;
}

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

.next-steps h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2b6cb0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-item p {
    color: #4a5568;
    font-size: 0.9375rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.additional-info {
    padding: 3rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.info-container h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.info-container p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.info-links a {
    color: #2b6cb0;
    text-decoration: underline;
    font-weight: 600;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #f7fafc;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

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

.last-updated,
.intro-text {
    color: #718096;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-split {
        flex-direction: column;
    }

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}