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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #0066cc;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem 3rem 4rem 2rem;
}

.hero-right {
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-primary {
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
}

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

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    background-color: #e8e8e8;
    overflow: hidden;
}

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

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

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.benefits-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.benefits-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.services-preview-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    background-color: #fafafa;
}

.services-preview-split .split-content {
    background-color: #fafafa;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-item p {
    color: #666;
    margin-bottom: 0.7rem;
}

.service-item .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
}

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

.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.testimonials {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    color: #999;
    font-size: 0.95rem;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
}

.cta-left,
.cta-right {
    flex: 1;
}

.cta-left {
    background-color: #e8e8e8;
    overflow: hidden;
}

.cta-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-right {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f5f5;
}

.cta-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-right p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: #999;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
}

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 60vh;
}

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

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

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

.hero-content-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
}

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

.philosophy-section,
.values-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.philosophy-section h2,
.values-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.philosophy-grid,
.values-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-card,
.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.philosophy-card h3,
.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.philosophy-card p,
.value-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
}

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

.cta-centered {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.cta-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-centered p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

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

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.3rem;
    color: #666;
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.service-full {
    margin: 4rem 0;
}

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

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

.service-text,
.service-image {
    flex: 1;
}

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

.service-image {
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.service-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.btn-select {
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #0052a3;
}

.comparison-note {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.comparison-note h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.comparison-note p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-form-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.service-form-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 50vh;
}

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

.contact-right {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-left p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-info-layout {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item {
    color: #4a4a4a;
    font-size: 1.05rem;
}

.info-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.hours-row:last-child {
    border-bottom: none;
}

.location-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

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

.location-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.location-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 70vh;
}

.thanks-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.thanks-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.service-confirmation {
    margin: 1.5rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: #0066cc;
}

.thanks-note {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.next-steps {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.legal-intro {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 700;
}

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

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

.legal-section ul li {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #0066cc;
    text-decoration: none;
}

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

.legal-update {
    text-align: right;
    color: #666;
    font-size: 0.9rem;
    margin-top: 3rem;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-preview-split,
    .cta-split,
    .page-hero-split,
    .story-split,
    .team-split,
    .service-content-split,
    .contact-hero-split,
    .location-split,
    .thanks-container {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-full.reverse .service-content-split {
        flex-direction: column;
    }

    .hero-left h1,
    .hero-content-left h1,
    .contact-left h1 {
        font-size: 2.5rem;
    }

    .split-content,
    .cta-right,
    .service-text,
    .location-text {
        padding: 3rem 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-left,
    .nav-right {
        width: 100%;
        justify-content: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .philosophy-grid,
    .values-container,
    .testimonial-container,
    .steps-grid {
        flex-direction: column;
    }

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

    .split-content h2,
    .service-text h2 {
        font-size: 2rem;
    }

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

    .thanks-content h1 {
        font-size: 2.3rem;
    }
}