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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    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-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #1a5490;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.hero-right {
    flex: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #d0d8dc;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

.intro-section p {
    font-size: 1.1rem;
    color: #546e7a;
}

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

.split-right-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.content-block h2 {
    font-size: 2.2rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

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

.value-list {
    list-style: none;
    margin-top: 2rem;
}

.value-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #34495e;
}

.value-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-size: 1.5rem;
}

.split-left-image {
    flex: 1;
    background-color: #d0d8dc;
}

.split-left-image img {
    width: 100%;
    height: 100%;
}

.services-showcase {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #546e7a;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    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.12);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #d0d8dc;
}

.service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2c3e50;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: #546e7a;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d8dc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.service-warning {
    display: none;
    padding: 0.8rem;
    background-color: #fff3cd;
    color: #856404;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #1a5490;
    color: #ffffff;
    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: #134070;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.testimonials {
    margin-top: 2rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 1.1rem;
    color: #34495e;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

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

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

.footer-column {
    flex: 1;
}

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

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.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.85rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept {
    background-color: #1a5490;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #6c7a7b;
}

.page-hero {
    background-color: #1a5490;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.split-left-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

.split-right-image {
    flex: 1;
    background-color: #d0d8dc;
}

.split-right-image img {
    width: 100%;
    height: 100%;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.values-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.6rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

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

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #1a5490;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-detail {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    background-color: #d0d8dc;
}

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-includes {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

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

.service-includes ul {
    list-style: none;
    margin-left: 0;
}

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

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.1rem;
    color: #546e7a;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
}

.contact-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.contact-info {
    flex: 1;
}

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #d0d8dc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background-color: rgba(26, 84, 144, 0.9);
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 80%;
    text-align: center;
}

.map-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.visit-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.visit-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.visit-section p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 400px;
}

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

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

.thanks-content p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-details p {
    line-height: 1.7;
}

#serviceConfirmation {
    font-weight: 600;
    color: #1a5490;
    margin-top: 1rem;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: #34495e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
}

.next-steps {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.step-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-info h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-info p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-section li {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #134070;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #d0d8dc;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .about-split,
    .process-split,
    .contact-container,
    .service-detail-card {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

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

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

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