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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2a9d8f;
    --accent-color: #e76f51;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #4CAF50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    border-bottom: 1px solid #ffeaa7;
}

.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;
}

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

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

.nav-right a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-right a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background-color: var(--primary-color);
}

.hero-text {
    max-width: 600px;
    color: var(--bg-white);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: #b8c6db;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-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: #d35836;
    transform: translateY(-2px);
}

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

.split-image-left {
    flex: 1;
    background-color: #adb5bd;
    overflow: hidden;
}

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

.split-content-right {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.split-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.split-content-right p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.split-section-alt {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

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

.split-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.split-content-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.split-image-right {
    flex: 1;
    background-color: #868e96;
    overflow: hidden;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 1rem;
}

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

.metrics-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.metrics-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.metrics-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.metric-card h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.metric-card p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.cta-section-full {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--bg-white);
}

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

.cta-section-full p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-large:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.footer {
    background-color: #2d3436;
    color: #dfe6e9;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.footer-column a {
    display: block;
    color: #b2bec3;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-references {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #636e72;
}

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

.footer-references p {
    font-size: 0.875rem;
    color: #b2bec3;
    margin-bottom: 0.5rem;
}

.footer-references a {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.footer-references a:hover {
    color: #20c997;
}

.footer-disclaimer {
    padding: 1.5rem;
    background-color: #1e2124;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #b2bec3;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #636e72;
    color: #b2bec3;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 52, 54, 0.98);
    padding: 1.5rem 5%;
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--bg-white);
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept {
    padding: 0.75rem 1.5rem;
    background-color: var(--success-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-reject {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.page-header {
    padding: 5rem 5% 3rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

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

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.values-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section-centered {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-section-centered p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.services-grid {
    padding: 3rem 5% 5rem;
    background-color: var(--bg-white);
}

.service-card {
    display: flex;
    margin-bottom: 3rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    background-color: #adb5bd;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

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

.service-select {
    padding: 0.875rem 1.75rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.contact-info {
    flex: 1;
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #868e96;
    overflow: hidden;
}

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

.contact-cta {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.thanks-content {
    max-width: 800px;
    text-align: center;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.25rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    text-align: left;
}

.step {
    flex: 1;
    min-width: 200px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.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: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0f3d6f;
    transform: translateY(-2px);
}

.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;
    cursor: pointer;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.legal-content li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

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

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

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .split-section,
    .split-section-alt,
    .contact-split {
        flex-direction: column;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 300px;
    }

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

    .nav-right {
        gap: 1rem;
    }

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

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .split-content-right h2,
    .split-content-left h2 {
        font-size: 1.75rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .form-container {
        padding: 2rem;
    }
}