* {
    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: #1e293b;
    background-color: #f8fafc;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    background-color: #f1f5f9;
    border-radius: 4px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #2563eb;
}

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

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

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

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

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

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

.intro-split {
    display: flex;
    background-color: #ffffff;
    margin: 3rem 0;
}

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

.intro-image {
    flex: 1;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.intro-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.intro-content p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: #475569;
}

.services-section {
    padding: 4rem 2rem;
    background-color: #f8fafc;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.service-image {
    flex: 1;
    overflow: hidden;
    background-color: #dbeafe;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-info p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #e2e8f0;
    color: #1e293b;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-select-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #10b981;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

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

.form-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.form-intro p {
    font-size: 1.0625rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.selected-display {
    padding: 1.5rem;
    background-color: #dbeafe;
    border-left: 4px solid #2563eb;
    margin-top: 1rem;
    font-weight: 600;
    color: #1e40af;
}

.form-wrapper {
    flex: 1;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.benefits-split {
    display: flex;
    background-color: #f0fdf4;
    padding: 4rem;
}

.benefits-content {
    flex: 1;
    padding-right: 3rem;
}

.benefits-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.cta-inline {
    font-size: 1.125rem;
    color: #1e293b;
}

.link-cta {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.link-cta:hover {
    color: #1d4ed8;
}

.benefits-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
}

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

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

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #78350f;
}

.disclaimer-content p {
    font-size: 0.875rem;
    color: #92400e;
    line-height: 1.7;
}

.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    background-color: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    padding: 4rem;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.about-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.values-image {
    flex: 1;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.values-content {
    flex: 1;
    padding: 4rem;
}

.values-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.value-item p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.team-section {
    padding: 4rem 2rem;
    background-color: #f8fafc;
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.approach-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.approach-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.mission-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: #dbeafe;
    padding: 4rem;
}

.mission-content {
    flex: 1.5;
    padding-right: 3rem;
}

.mission-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.mission-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.7;
}

.mission-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-large {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label-large {
    font-size: 1rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.cta-about {
    padding: 4rem 2rem;
    background-color: #10b981;
    color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-split {
    display: flex;
    background-color: #ffffff;
    margin-bottom: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
}

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

.faq-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.faq-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #0f172a;
}

.faq-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.faq-item p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    padding: 4rem;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.contact-block p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.note {
    font-size: 0.9375rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.5rem;
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    color: #ffffff;
}

.visit-section {
    padding: 4rem 2rem;
    background-color: #f8fafc;
}

.visit-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.visit-text {
    flex: 1;
}

.visit-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.visit-text p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

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

.directions-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
}

.directions-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

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

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

.info-section {
    max-width: 1400px;
    margin: 4rem auto;
}

.info-split {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.info-image {
    flex: 1;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.info-content {
    flex: 1;
    padding: 4rem;
}

.info-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.info-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.7;
}

.cta-contact {
    padding: 4rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f0fdf4;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.thanks-message {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details p {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

.service-selected {
    padding: 1.5rem;
    background-color: #dbeafe;
    border-left: 4px solid #2563eb;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1e40af;
}

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

.next-steps-split {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
}

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

.info-card {
    flex: 1;
    background-color: #dbeafe;
    padding: 2.5rem;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.info-card p {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #1e40af;
    font-size: 1.125rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.legal-date {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.legal-content h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #475569;
    line-height: 1.7;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1d4ed8;
}

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

    .hero-split,
    .intro-split,
    .service-card-split,
    .about-split,
    .values-split,
    .mission-split,
    .service-detail-split,
    .contact-split,
    .visit-content-split,
    .info-split,
    .form-container-split {
        flex-direction: column;
    }

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

    .approach-split,
    .next-steps-split,
    .faq-split {
        flex-direction: column;
    }

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

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

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

    .hero-content,
    .intro-content,
    .service-info,
    .about-content,
    .values-content,
    .contact-info,
    .info-content {
        padding: 2rem;
    }

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