* {
    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: #333;
    background-color: #fff;
}

a {
    color: #2c5f7d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d4f;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: #333;
    font-weight: 500;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

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

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

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    background-color: #2c5f7d;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-link {
    color: #2c5f7d;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

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

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

.split-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a3d4f;
}

.split-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.citation {
    color: #2c5f7d;
    font-weight: 600;
    text-decoration: none;
}

.citation:hover {
    text-decoration: underline;
}

.benefits-grid {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.benefits-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a3d4f;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f7d;
}

.benefit-card p {
    color: #555;
}

.services-showcase {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a3d4f;
}

.service-split {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-left,
.service-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-additional {
    margin-top: 2rem;
}

.service-item {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-item.wide {
    width: 100%;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a3d4f;
}

.service-item p {
    color: #555;
    margin-bottom: 1.25rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5f7d;
    margin: 1.25rem 0;
}

.select-service {
    background-color: #2c5f7d;
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #1a3d4f;
    transform: translateY(-2px);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3d4f;
}

.form-container p {
    margin-bottom: 2rem;
    color: #555;
}

.selected-service-display {
    background-color: #e8f4f8;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #2c5f7d;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #2c5f7d;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.trust-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a3d4f;
}

.trust-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.testimonials {
    padding: 5rem 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a3d4f;
}

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

.testimonial-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f7d;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f7d;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: #fff;
}

.references {
    padding-left: 1.25rem;
}

.references li {
    margin-bottom: 0.75rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #ccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3d4f;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: #89c4e1;
}

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

.btn-cookie {
    background-color: #2c5f7d;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #3d7a9a;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 2px solid #2c5f7d;
}

.btn-cookie.btn-secondary:hover {
    background-color: rgba(44, 95, 125, 0.1);
}

.page-hero {
    background-color: #2c5f7d;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.25rem;
}

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

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

.about-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a3d4f;
}

.about-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a3d4f;
}

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

.team-member {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a3d4f;
}

.team-member .role {
    color: #2c5f7d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #555;
}

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

.values-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a3d4f;
}

.process-list {
    padding-left: 1.5rem;
}

.process-list li {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.values-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.certifications {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.certifications h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a3d4f;
}

.certifications p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

.services-detailed {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 3rem;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.price-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c5f7d;
    margin: 1rem 0;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a3d4f;
}

.service-detail-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.comparison-info {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.comparison-info h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a3d4f;
}

.comparison-info > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

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

.comparison-item {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c5f7d;
}

.comparison-item p {
    color: #555;
    margin-bottom: 0.75rem;
}

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

.contact-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c5f7d;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.contact-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a3d4f;
}

.contact-cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #555;
    font-size: 1.125rem;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-info {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-info p {
    font-size: 1.125rem;
    color: #2c5f7d;
    margin: 0;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a3d4f;
}

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

.thanks-next li {
    margin-bottom: 0.75rem;
    color: #555;
}

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

.btn-primary {
    background-color: #2c5f7d;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a3d4f;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #2c5f7d;
    border: 2px solid #2c5f7d;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 3rem 2rem;
}

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

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

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c5f7d;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a3d4f;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-container em {
    color: #777;
}

@media (max-width: 768px) {
    .hero-split,
    .info-split,
    .trust-split,
    .about-split,
    .values-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .grid-container,
    .testimonial-grid,
    .team-grid,
    .comparison-grid {
        flex-direction: column;
    }

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

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

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

    .hero-left h1,
    .page-hero h1,
    .thanks-container h1 {
        font-size: 2rem;
    }
}