* {
    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;
}

.main-nav {
    background-color: #1a2332;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #e0e6ed;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5cadff;
}

.ad-disclosure {
    color: #94a3b8;
    font-size: 0.75rem;
    font-style: italic;
    border-left: 1px solid #475569;
    padding-left: 1.5rem;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    padding: 8rem 4rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-content-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #475569;
    max-width: 600px;
}

.hero-image-right {
    flex: 1.2;
    overflow: hidden;
    background-color: #cbd5e1;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.intro-asymmetric {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    padding: 6rem 0;
}

.intro-block-right {
    flex: 1;
    padding: 3rem 4rem 3rem 8rem;
    order: 2;
}

.intro-block-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.intro-block-right p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #64748b;
}

.intro-visual-left {
    flex: 1;
    order: 1;
    padding: 3rem;
    background-color: #f1f5f9;
}

.intro-visual-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-offset {
    max-width: 1600px;
    margin: 0 auto;
    padding: 7rem 3rem;
    background-color: #ffffff;
}

.services-header-irregular {
    max-width: 900px;
    margin-bottom: 4rem;
    padding-left: 8rem;
}

.services-header-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 700;
}

.services-header-irregular p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.service-card-offset {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-offset img {
    width: 100%;
    height: 220px;
    display: block;
}

.service-card-offset h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1e293b;
    font-weight: 600;
}

.service-card-offset p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
    color: #64748b;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0369a1;
    margin: 0 1.5rem 1.5rem;
}

.form-container-irregular {
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3rem;
    background-color: #f1f5f9;
    border-radius: 8px;
}

.form-container-irregular h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0f172a;
    font-weight: 600;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #334155;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #0369a1;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

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

.trust-section-offset {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    padding: 6rem 0;
    background-color: #0f172a;
    color: #ffffff;
}

.trust-content-left {
    flex: 1.3;
    padding: 3rem 3rem 3rem 6rem;
}

.trust-content-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.trust-content-left p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.trust-stats-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.stat-block {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #5cadff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 500;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background-color: #fef3c7;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #78350f;
    text-align: left;
}

.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #94a3b8;
}

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

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

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.cookie-content a {
    color: #5cadff;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: #0369a1;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #475569;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #334155;
}

.about-hero-offset {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    min-height: 70vh;
}

.about-image-left {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

.about-image-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-content-right {
    flex: 1;
    padding: 5rem 5rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.about-content-right h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.2;
}

.about-content-right p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #475569;
}

.mission-irregular {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.mission-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
}

.mission-content-offset {
    padding-left: 4rem;
}

.mission-content-offset p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #475569;
}

.team-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    background-color: #f1f5f9;
}

.team-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0f172a;
    font-weight: 700;
}

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

.capability-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #0369a1;
}

.capability-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.capability-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #64748b;
}

.values-offset {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    padding: 6rem 0;
}

.values-content-irregular {
    flex: 1.2;
    padding: 3rem 3rem 3rem 6rem;
}

.values-content-irregular h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #0f172a;
    font-weight: 700;
}

.values-content-irregular p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #475569;
}

.values-image-right {
    flex: 1;
    background-color: #cbd5e1;
    overflow: hidden;
}

.values-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-header-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem 3rem;
    text-align: center;
}

.services-header-full h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 800;
}

.services-header-full p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 4rem 3rem;
    gap: 3rem;
}

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

.detail-content-left,
.detail-content-right {
    flex: 1;
    padding: 2rem;
}

.detail-content-left h2,
.detail-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #1e293b;
    font-weight: 700;
}

.detail-content-left p,
.detail-content-right p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #475569;
}

.detail-image-left,
.detail-image-right {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

.detail-image-left img,
.detail-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0369a1;
    margin-top: 2rem;
}

.cta-services-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem;
    text-align: center;
    background-color: #f8fafc;
}

.cta-services-bottom h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 700;
}

.cta-services-bottom p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #64748b;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    background-color: #0369a1;
    color: #ffffff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: #075985;
}

.contact-header-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem 3rem 6rem;
}

.contact-header-asymmetric h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 800;
}

.contact-header-asymmetric p {
    font-size: 1.15rem;
    color: #64748b;
}

.contact-details-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 4rem 3rem;
    gap: 4rem;
}

.contact-block-left,
.contact-block-right {
    flex: 1;
    padding: 2rem;
}

.contact-block-left h2,
.contact-block-right h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
}

.address-text,
.email-text,
.hours-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 2rem;
}

.contact-map-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e2e8f0;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background-color: #f8fafc;
}

.info-irregular {
    padding: 0 4rem;
}

.info-irregular h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #1e293b;
    font-weight: 700;
}

.info-irregular p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #475569;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content-center {
    max-width: 800px;
    text-align: center;
    padding: 3rem;
}

.thanks-content-center h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #0f172a;
    font-weight: 800;
}

.thanks-content-center p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #475569;
}

.confirmation-details {
    background-color: #f1f5f9;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
}

.next-steps-list {
    list-style: none;
    padding-left: 0;
}

.next-steps-list li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #475569;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0369a1;
    font-weight: 700;
}

.service-reference {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #dbeafe;
    border-radius: 4px;
}

.service-reference p {
    font-size: 1rem;
    color: #075985;
    font-weight: 600;
}

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

.btn-return-home,
.btn-view-services {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-return-home {
    background-color: #0369a1;
    color: #ffffff;
}

.btn-return-home:hover {
    background-color: #075985;
}

.btn-view-services {
    background-color: #e2e8f0;
    color: #1e293b;
}

.btn-view-services:hover {
    background-color: #cbd5e1;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 800;
}

.last-updated {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #1e293b;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #334155;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #475569;
}

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #475569;
}

.legal-content a {
    color: #0369a1;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #075985;
}

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

.cookie-table thead {
    background-color: #f1f5f9;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1e293b;
}

.cookie-table td {
    color: #475569;
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-asymmetric,
    .trust-section-offset,
    .values-offset,
    .about-hero-offset,
    .service-detail-offset,
    .contact-details-offset {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

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

    .services-grid-asymmetric {
        gap: 1.5rem;
    }

    .service-card-offset {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-columns {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-content-left {
        padding: 4rem 2rem;
    }

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

    .services-header-irregular {
        padding-left: 0;
    }

    .service-card-offset {
        flex: 1 1 100%;
    }

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

    .mission-content-offset {
        padding-left: 0;
    }

    .info-irregular {
        padding: 0;
    }
}