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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-right a:hover {
    color: #1a5f7a;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 550px;
}

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

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

.hero-image {
    flex: 1;
    background-color: #d4e4ed;
}

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

.intro-alternate {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-visual {
    flex: 0.9;
    background-color: #e8f4f8;
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.intro-text {
    flex: 1.1;
}

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

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-split {
    padding: 5rem 5%;
    background-color: #fafbfc;
}

.services-header-full {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header-full h2 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.services-header-full p {
    font-size: 1.2rem;
    color: #666;
}

.service-card-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
}

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

.service-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-visual {
    flex: 1;
    background-color: #e0eff5;
}

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

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

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

.trust-section-centered {
    padding: 5rem 5%;
    text-align: center;
    background-color: #ffffff;
}

.trust-section-centered h2 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: #1a5f7a;
    font-size: 0.95rem;
}

.form-section-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background-color: #f0f6f9;
    align-items: center;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    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: #2c3e50;
}

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

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

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

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

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

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

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
    justify-content: space-between;
}

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

.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;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 200;
    display: none;
}

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

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

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

.cookie-content a {
    color: #5dade2;
}

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

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

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

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

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

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

.page-hero-split {
    display: flex;
    padding: 4rem 5%;
    gap: 3rem;
    align-items: center;
    background-color: #f8f9fa;
}

.page-hero-content {
    flex: 1;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #555;
}

.page-hero-visual {
    flex: 1;
    background-color: #d4e4ed;
}

.page-hero-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.content-text {
    flex: 1;
}

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

.content-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.content-visual {
    flex: 1;
    background-color: #e8f4f8;
}

.content-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-alternate {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.value-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

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

.value-text {
    flex: 1;
}

.value-text h3 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.value-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.value-image {
    flex: 1;
    background-color: #e0eff5;
}

.value-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.team-centered {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.team-centered h2 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.team-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.method-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.method-card h4 {
    font-size: 1.4rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.method-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.page-header-centered {
    padding: 4rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.page-header-centered h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

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

.service-detail-split {
    display: flex;
    padding: 4rem 5%;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

.service-detail-info {
    flex: 1;
}

.service-detail-info h2 {
    font-size: 2.3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.price-highlight {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.service-detail-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-info h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.service-detail-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-info ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: #555;
}

.service-detail-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
    font-size: 1.3rem;
}

.service-detail-visual {
    flex: 1;
    background-color: #e0eff5;
}

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

.comparison-centered {
    padding: 5rem 5%;
    text-align: center;
    background-color: #ffffff;
}

.comparison-centered h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.comparison-card h4 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.comparison-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.cta-form-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background-color: #f0f6f9;
    align-items: center;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.1rem;
    color: #555;
}

.contact-header-centered {
    padding: 4rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-header-centered h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.contact-header-centered p {
    font-size: 1.2rem;
    color: #666;
}

.contact-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.email-display {
    color: #1a5f7a;
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    background-color: #e0eff5;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.location-alternate {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    background-color: #f8f9fa;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-text h2 {
    font-size: 2.3rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.location-text h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.location-map {
    flex: 1;
}

.map-placeholder {
    background-color: #d4e4ed;
    padding: 4rem 2rem;
    border-radius: 8px;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #1a5f7a;
    font-weight: 600;
    line-height: 1.8;
}

.faq-centered {
    padding: 5rem 5%;
    text-align: center;
    background-color: #ffffff;
}

.faq-centered h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.thanks-centered {
    padding: 5rem 5%;
    text-align: center;
    min-height: 60vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

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

.service-selected {
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-next {
    text-align: left;
    margin: 3rem 0;
}

.thanks-next h3 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.thanks-next ol {
    padding-left: 1.5rem;
}

.thanks-next ol li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-note {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-note p {
    font-size: 1rem;
    color: #666;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #1a5f7a;
    color: #ffffff;
}

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

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

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

.additional-resources {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.additional-resources h2 {
    font-size: 2.3rem;
    color: #1a5f7a;
    margin-bottom: 3rem;
}

.resources-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: left;
}

.resource-card h4 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.resource-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-card a {
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: #145166;
}

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

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

.legal-intro {
    font-size: 1rem;
    color: #777;
    margin-bottom: 3rem;
}

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

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

.legal-content h4 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

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

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-alternate,
    .service-card-split,
    .form-section-split,
    .page-hero-split,
    .content-split,
    .value-block,
    .service-detail-split,
    .cta-form-split,
    .contact-split,
    .location-alternate {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .value-block.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

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

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

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

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