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

.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8eaed;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    color: #2c3338;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-right a:hover {
    color: #1a73e8;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5158;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1d21;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5158;
}

.services-intro {
    padding: 80px 60px;
    background-color: #ffffff;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1d21;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5158;
    max-width: 800px;
    margin: 0 auto;
}

.service-item-split {
    display: flex;
    min-height: 450px;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background-color: #f8f9fa;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1d21;
    font-weight: 700;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin: 20px 0;
}

.service-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.select-service {
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
    max-width: 240px;
}

.select-service:hover {
    background-color: #1557b0;
}

.form-section-split {
    display: flex;
    min-height: 500px;
}

.form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background-color: #1a73e8;
    color: #ffffff;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #e8f0fe;
}

.form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    background-color: #f8f9fa;
}

#serviceForm {
    width: 100%;
    max-width: 480px;
}

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

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

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

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

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

.commitment-split {
    display: flex;
    min-height: 450px;
}

.commitment-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background-color: #f8f9fa;
}

.commitment-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1d21;
    font-weight: 700;
}

.commitment-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #4a5158;
}

.commitment-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-primary:hover {
    background-color: #1557b0;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a73e8;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #1a73e8;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

footer {
    background-color: #1a1d21;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b5bb;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b0b5bb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #23272b;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b0b5bb;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1d21;
    padding: 20px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    color: #ffffff;
    font-size: 14px;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-accept {
    background-color: #1a73e8;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1557b0;
}

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

.cookie-reject:hover {
    background-color: #ffffff;
    color: #1a1d21;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #1a73e8;
    color: #ffffff;
}

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

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

.page-hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.content-split {
    display: flex;
    min-height: 450px;
}

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

.content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1d21;
    font-weight: 700;
}

.content-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5158;
}

.content-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.values-full {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.values-full h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1d21;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1d21;
    font-weight: 700;
}

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

.team-approach-split {
    display: flex;
    min-height: 450px;
}

.team-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background-color: #ffffff;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1d21;
    font-weight: 700;
}

.team-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5158;
}

.team-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-full {
    padding: 100px 60px;
    background-color: #1a73e8;
    text-align: center;
}

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

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #e8f0fe;
}

.page-header-centered {
    padding: 80px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.page-header-centered h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1d21;
    font-weight: 700;
}

.page-header-centered p {
    font-size: 20px;
    color: #4a5158;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1d21;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5158;
}

.service-pricing {
    margin: 24px 0;
    padding: 20px 0;
}

.price-label {
    font-size: 15px;
    color: #5f6368;
    display: block;
    margin-bottom: 8px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
}

.service-detail-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.service-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.service-form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1d21;
    font-weight: 700;
}

.service-form-wrapper p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a5158;
}

.service-form-wrapper #serviceForm {
    text-align: left;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 60px 50px;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1d21;
    font-weight: 700;
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5158;
}

.contact-detail {
    margin-bottom: 36px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1d21;
    font-weight: 700;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5158;
}

.email-text {
    color: #1a73e8;
    font-weight: 600;
}

.hours-note {
    margin-top: 12px;
    font-size: 14px;
    color: #5f6368;
}

.contact-map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 40px;
}

.map-placeholder p {
    font-size: 18px;
    color: #5f6368;
    margin-bottom: 8px;
}

.map-address {
    font-size: 16px;
    font-weight: 600;
    color: #2c3338;
}

.contact-directions {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-directions h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1d21;
    font-weight: 700;
}

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

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

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1d21;
    font-weight: 700;
}

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

.contact-cta-split {
    display: flex;
    min-height: 400px;
}

.cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background-color: #1a73e8;
    color: #ffffff;
}

.cta-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #e8f0fe;
}

.cta-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.thanks-container {
    padding: 100px 60px;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1d21;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 50px;
    color: #4a5158;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1d21;
    text-align: center;
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a73e8;
    font-weight: 700;
}

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5158;
}

.thanks-service-info {
    margin: 40px 0;
    padding: 24px;
    background-color: #e8f0fe;
    border-radius: 4px;
}

.thanks-service-info p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3338;
}

.thanks-service-info p:last-child {
    font-size: 14px;
    margin-top: 16px;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1d21;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a1d21;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c3338;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5158;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #4a5158;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-item-split,
    .form-section-split,
    .commitment-split,
    .page-hero-split,
    .content-split,
    .team-approach-split,
    .service-detail-split,
    .contact-split,
    .contact-cta-split {
        flex-direction: column;
    }

    .service-item-split.reverse,
    .content-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .nav-split {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-content,
    .intro-text,
    .service-content,
    .form-info,
    .form-container,
    .commitment-text,
    .page-hero-content,
    .content-text,
    .team-text,
    .service-detail-content,
    .contact-info,
    .cta-text {
        padding: 40px 30px;
    }

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

    .intro-text h2,
    .content-text h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

    .service-content h3 {
        font-size: 26px;
    }

    .values-grid,
    .directions-grid {
        flex-direction: column;
    }

    .value-item,
    .direction-item {
        flex: 1 1 100%;
    }

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

    .next-steps {
        flex-direction: column;
    }

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