* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #d4a574;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    background-color: var(--bg-light);
}

.nav-right a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.hero-text h1 {
    max-width: 600px;
}

.hero-text p {
    max-width: 550px;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
}

.intro-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.features-alternate {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.features-alternate > h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.feature-row {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-content ul {
    list-style: none;
    padding-left: 0;
}

.feature-content ul li::before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.feature-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

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

.services-pricing {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.services-pricing h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.pricing-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
}

.pricing-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.pricing-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.form-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 1.5rem;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.trust-markers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.marker strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.marker p {
    margin: 0;
    font-size: 0.95rem;
}

.form-container {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.testimonials-split {
    display: flex;
}

.testimonial-content {
    flex: 1;
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-content h2 {
    color: var(--bg-white);
    margin-bottom: 2rem;
}

.testimonial {
    margin-bottom: 2.5rem;
}

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

.testimonial cite {
    display: block;
    font-style: normal;
    color: var(--accent-color);
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.disclaimer-section {
    padding: 3rem 5%;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer-section p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

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

.content-split {
    display: flex;
    padding: 4rem 5%;
    gap: 3rem;
}

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

.content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.content-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    margin: 0;
}

.cta-split {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-block {
    display: flex;
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-block:last-child {
    border-bottom: none;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.service-content ul {
    margin-bottom: 2rem;
}

.service-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

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

.contact-info-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
}

.contact-details {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    margin: 0;
}

.contact-map {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.location-note {
    padding: 1.5rem;
    background-color: var(--bg-light);
}

.location-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-approach {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.contact-approach h2 {
    margin-bottom: 2rem;
}

.approach-split {
    display: flex;
    gap: 3rem;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.approach-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

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

.visit-info {
    padding: 4rem 5%;
}

.visit-info h2 {
    margin-bottom: 2rem;
}

.visit-split {
    display: flex;
    gap: 3rem;
}

.visit-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

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

.visit-text {
    flex: 1;
}

.visit-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.privacy-note {
    padding: 3rem 5%;
    background-color: var(--bg-light);
}

.privacy-note p {
    max-width: 1000px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.privacy-note a {
    font-weight: 600;
}

.thanks-hero {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.confirmation-details {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow);
}

.confirmation-details h2 {
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    gap: 2rem;
    text-align: left;
}

.step {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.step p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-reminder {
    margin-bottom: 2rem;
}

.service-reminder p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.thanks-info-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    margin-bottom: 1.5rem;
}

.info-text p {
    color: var(--text-light);
}

.info-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

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

.legal-page {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    color: var(--text-light);
}

.legal-content a {
    font-weight: 600;
}

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 968px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split,
    .intro-split,
    .testimonials-split,
    .page-hero-split,
    .content-split,
    .form-split,
    .contact-info-split,
    .approach-split,
    .visit-split,
    .thanks-info-split,
    .feature-row,
    .service-block {
        flex-direction: column;
    }

    .feature-row.reverse,
    .service-block.reverse {
        flex-direction: column;
    }

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

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

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

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