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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 32px;
    width: 240px;
    height: calc(100vh - 32px);
    background-color: #1a202c;
    color: #ffffff;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    z-index: 50;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    padding: 0 24px;
    margin-bottom: 48px;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 4px;
}

.nav-links a {
    display: block;
    padding: 12px 24px;
    color: #cbd5e0;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.nav-links a:hover {
    background-color: #2d3748;
    color: #ffffff;
}

.nav-footer {
    padding: 0 24px;
    border-top: 1px solid #2d3748;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-footer a {
    color: #718096;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.nav-footer a:hover {
    color: #cbd5e0;
}

.main-content {
    margin-left: 240px;
    min-height: calc(100vh - 32px);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f7fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 800;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2563eb;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.intro-block {
    padding: 80px 60px;
    background-color: #ffffff;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.services-section {
    padding: 80px 60px;
    background-color: #f7fafc;
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-header-center p {
    font-size: 18px;
    color: #718096;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    background-color: #e2e8f0;
    position: relative;
}

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

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.form-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.form-benefits {
    list-style: none;
    padding-left: 0;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group span {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-group a {
    color: #2563eb;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 80px 60px;
    background-color: #1e40af;
    color: #ffffff;
}

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

.trust-content-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #ffffff;
}

.trust-content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #dbeafe;
    margin-bottom: 16px;
}

.cta-section-offset {
    padding: 80px 60px;
    background-color: #f7fafc;
}

.cta-box {
    background-color: #fbbf24;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.disclaimer-section {
    padding: 60px;
    background-color: #fef3c7;
}

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

.disclaimer-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #78350f;
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 60px 30px 300px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 240px;
    right: 0;
    background-color: #1a202c;
    padding: 24px 60px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #cbd5e0;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #cbd5e0;
    border: 1px solid #4a5568;
}

.btn-reject:hover {
    background-color: #2d3748;
}

.page-hero {
    padding: 100px 60px 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
}

.page-hero-content {
    max-width: 800px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: #dbeafe;
}

.about-split {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

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

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

.values-section {
    padding: 80px 60px;
    background-color: #f7fafc;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a202c;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.team-intro {
    text-align: center;
    margin-bottom: 48px;
}

.team-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.team-intro p {
    font-size: 17px;
    color: #4a5568;
}

.team-members {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.member-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    padding: 32px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a202c;
}

.member-role {
    font-size: 15px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-info p:last-child {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.approach-section {
    padding: 80px 60px;
    background-color: #f7fafc;
}

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

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.services-detail-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
    font-size: 16px;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 24px;
    line-height: 1;
}

.btn-inline {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.additional-services {
    padding: 80px 60px;
    background-color: #f7fafc;
}

.additional-services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a202c;
}

.additional-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.additional-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

.additional-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.additional-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-email {
    font-weight: 600;
    color: #2563eb;
}

.contact-note {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
}

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

.hours-list li {
    padding: 8px 0;
    font-size: 16px;
    color: #4a5568;
    display: flex;
    justify-content: space-between;
}

.hours-list span {
    font-weight: 600;
    color: #2d3748;
}

.contact-map-block {
    flex: 1;
}

.contact-map-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.map-placeholder {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    border: 2px dashed #cbd5e0;
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.contact-cta-section {
    padding: 60px;
    background-color: #2563eb;
}

.contact-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #dbeafe;
}

.contact-cta-content .btn-primary {
    background-color: #ffffff;
    color: #2563eb;
}

.contact-cta-content .btn-primary:hover {
    background-color: #f7fafc;
}

.directions-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.directions-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a202c;
}

.directions-content {
    display: flex;
    gap: 40px;
}

.direction-item {
    flex: 1;
    padding: 32px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a202c;
}

.direction-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 60px;
    background-color: #f7fafc;
    min-height: calc(100vh - 32px);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-lead {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 48px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #4a5568;
    font-size: 16px;
}

.thanks-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 20px;
}

.thanks-service-info {
    background-color: #dbeafe;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    display: none;
}

.thanks-service-info.show {
    display: block;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-date {
    font-size: 15px;
    color: #718096;
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

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

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

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .footer {
        padding-left: 260px;
    }

    .cookie-banner {
        left: 200px;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: static;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-split,
    .about-split,
    .service-card,
    .service-detail-card,
    .contact-layout,
    .directions-content,
    .form-container-split {
        flex-direction: column;
    }

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

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

    .values-grid,
    .team-members,
    .additional-grid {
        flex-direction: column;
    }

    .footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-banner {
        left: 0;
        padding: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}