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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5a7a9e;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

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

.split-left, .split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.split-right {
    background-size: cover;
    background-position: center;
    background-color: #d4d8dc;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.8rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.split-reverse {
    display: flex;
    min-height: 70vh;
}

.split-reverse .split-left {
    order: 2;
}

.split-reverse .split-right {
    order: 1;
}

.intro-image {
    background-size: cover;
    background-position: center;
    background-color: #d4d8dc;
}

.content-block {
    max-width: 540px;
}

.content-block h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-block p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.full-width-text {
    padding: 7rem 3rem;
    background-color: #ffffff;
}

.centered {
    text-align: center;
}

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

.centered-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.8rem;
}

.centered-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.split-services {
    display: flex;
    min-height: 80vh;
    align-items: stretch;
}

.split-services .split-left {
    background-color: #f8f9fa;
}

.services-list {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.98rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.testimonial-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.testimonial-split .split-left {
    background-color: #2c3e50;
}

.testimonial-content {
    padding: 4rem 3rem;
    color: #ffffff;
}

.testimonial-content blockquote {
    border-left: none;
    padding: 0;
}

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

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

.extended-services {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.services-continuation {
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-continuation h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.full-width-cta {
    padding: 8rem 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.split-form-section {
    display: flex;
    min-height: 75vh;
    align-items: stretch;
}

.form-intro {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 1.3rem;
}

.split-form-section .split-right {
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #2c3e50;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 4rem 3rem;
    background-color: #f0f4f8;
}

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

.disclaimer-content p {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.8;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    font-size: 0.95rem;
    color: #e8e8e8;
    flex: 1;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-cookie.accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.btn-cookie.reject:hover {
    background-color: #6c7a7a;
    transform: translateY(-2px);
}

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

.about-values .values-list {
    padding: 4rem 3rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item {
    border-left: 3px solid #2c3e50;
    padding-left: 1.8rem;
}

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

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

.team-section .split-left {
    background-color: #f8f9fa;
}

.services-detailed {
    min-height: auto;
    padding: 5rem 0;
}

.service-detail {
    padding: 0 4rem;
    max-width: 600px;
}

.service-detail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    object-fit: cover;
}

.service-detail h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

.service-detail p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.service-includes {
    font-size: 0.95rem;
    color: #2c3e50;
}

.price-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1.5rem;
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-color: #2c3e50;
}

.service-cta .content-block {
    color: #ffffff;
}

.service-cta h2 {
    color: #ffffff;
}

.service-cta p {
    color: #e8e8e8;
}

.contact-main {
    min-height: 70vh;
}

.contact-details {
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.contact-info-block {
    margin-bottom: 3rem;
}

.contact-info-block h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-info-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-info-block .note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.8rem;
}

.map-section {
    min-height: 50vh;
}

.map-placeholder {
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    background-color: #d4d8dc;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(26, 37, 47, 0.9);
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.map-overlay p {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-note {
    background-color: #ffffff;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 5rem 3rem;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-selected {
    font-weight: 600;
    color: #2c3e50;
}

.legal-page {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-content ul li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.legal-content a {
    color: #5a7a9e;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .split-hero, .split-reverse, .split-services, .testimonial-split, .extended-services, .split-form-section, .contact-main {
        flex-direction: column;
    }

    .split-reverse .split-left, .split-reverse .split-right {
        order: initial;
    }

    .split-right, .split-left {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

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