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

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.nav-disclaimer {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.nav-menu a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-lead {
    font-size: 1.25rem;
    color: #34495e;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background-color: #2980b9;
}

.intro-asymmetric {
    display: flex;
    padding: 6rem 0;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.intro-image-container {
    flex: 0.8;
    overflow: hidden;
}

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

.intro-text {
    flex: 1.2;
    padding: 2rem 4rem 2rem 0;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.services-overview {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.services-header-split {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.services-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-title p {
    font-size: 1.15rem;
    color: #34495e;
}

.services-cta-block {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 4px;
    min-width: 320px;
}

.cta-hint {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border: 2px solid #3498db;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

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

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-color: #ecf0f1;
}

.testimonial-content blockquote {
    max-width: 600px;
}

.testimonial-content p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

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

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

.form-info {
    flex: 0.9;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-info p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.25rem;
}

.form-note {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.form-note a {
    color: #3498db;
    text-decoration: none;
}

.form-container {
    flex: 1.1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #bdc3c7;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col p,
.footer-col li {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie-alt {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie:hover,
.btn-cookie-alt:hover {
    opacity: 0.9;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
}

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

.page-hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.page-hero-text p {
    font-size: 1.25rem;
    color: #34495e;
}

.page-hero-image {
    flex: 1;
    overflow: hidden;
}

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

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

.content-image {
    flex: 1;
    overflow: hidden;
}

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

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

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-text p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.25rem;
}

.values-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

.value-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    color: #34495e;
}

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

.team-text {
    flex: 1;
    padding: 2rem 0;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-text p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.25rem;
}

.team-image {
    flex: 1;
    overflow: hidden;
}

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

.approach-section {
    background-color: #ecf0f1;
    padding: 6rem 2rem;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.approach-content p {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-hero {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.services-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-intro {
    font-size: 1.2rem;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    min-height: 450px;
}

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

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

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

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    font-size: 1rem;
    color: #34495e;
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-select {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #2980b9;
}

.services-note {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.note-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.note-content p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.25rem;
}

.contact-hero {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #34495e;
}

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

.contact-info-block {
    flex: 1;
    padding: 2rem 0;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #34495e;
}

.contact-image-block {
    flex: 1;
    overflow: hidden;
    min-height: 450px;
}

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

.location-info {
    max-width: 1400px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.location-content {
    max-width: 800px;
}

.location-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.25rem;
}

.thanks-section {
    display: flex;
    min-height: 75vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.thanks-service-info {
    margin-bottom: 2rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #34495e;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #27ae60;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.thanks-image {
    flex: 1;
    overflow: hidden;
}

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

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

.legal-page li {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.legal-page strong {
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .hero-split,
    .testimonial-split,
    .intro-asymmetric,
    .form-section-split,
    .content-split-reverse,
    .team-split,
    .service-detail-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .page-hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .services-header-split {
        flex-direction: column;
    }

    .services-cta-block {
        width: 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .hero-left,
    .page-hero-text,
    .thanks-content {
        padding: 3rem 2rem;
    }

    .hero-left h1,
    .page-hero-text h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        flex-basis: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

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