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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.75rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    padding: 180px 60px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a252f;
    letter-spacing: -2px;
}

.hero-text {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 40px;
    max-width: 480px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 15%;
    width: 60%;
    height: 70%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.intro-offset {
    padding: 120px 60px;
    display: flex;
    justify-content: flex-end;
}

.intro-narrow {
    max-width: 650px;
    margin-right: 80px;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #455a64;
}

.visual-split-irregular {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    margin: 80px 0;
}

.split-image-left {
    width: 48%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    margin-right: -5%;
    z-index: 1;
}

.split-content-right {
    width: 57%;
    padding: 80px 60px 80px 100px;
    background-color: #f8f9fa;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 700;
}

.split-content-right p {
    font-size: 1.05rem;
    color: #455a64;
    margin-bottom: 18px;
}

.services-cards-scattered {
    padding: 100px 60px 120px;
    background-color: #ffffff;
}

.section-heading-offset {
    font-size: 2.8rem;
    margin-bottom: 60px;
    margin-left: 120px;
    color: #1a252f;
    font-weight: 700;
}

.cards-container-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
    position: relative;
}

.service-card {
    width: 340px;
    background-color: #ffffff;
    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(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-offset-1 {
    margin-top: 0;
    margin-left: 40px;
}

.card-offset-2 {
    margin-top: 60px;
}

.card-offset-3 {
    margin-top: -30px;
    margin-right: 50px;
}

.card-offset-4 {
    margin-top: 80px;
    margin-left: -20px;
}

.card-offset-5 {
    margin-top: 20px;
}

.card-offset-6 {
    margin-top: -40px;
    margin-right: 60px;
}

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 700;
}

.card-body p {
    font-size: 0.95rem;
    color: #546e7a;
    margin-bottom: 16px;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section-embedded {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 15%;
}

.form-container-offset h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.form-container-offset > p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-field label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
    padding: 14px;
    border: 1px solid #bdc3c7;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3498db;
}

.selected-service-display {
    padding: 16px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    font-size: 0.95rem;
    color: #2c3e50;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.trust-visual {
    display: flex;
    min-height: 500px;
    margin: 80px 0;
    position: relative;
}

.trust-content-overlap {
    width: 50%;
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content-overlap h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.trust-content-overlap p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #ecf0f1;
}

.trust-image-bg {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 80%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    z-index: 1;
}

.footer-asymmetric {
    padding: 80px 60px 40px;
    background-color: #1a252f;
    color: #ecf0f1;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero-minimal {
    padding: 180px 60px 80px;
    text-align: center;
    background-color: #f8f9fa;
}

.page-hero-minimal h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.page-hero-minimal p {
    font-size: 1.2rem;
    color: #546e7a;
}

.content-offset-left {
    display: flex;
    min-height: 600px;
    margin: 60px 0;
}

.content-narrow-left {
    width: 50%;
    padding: 80px 60px 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-narrow-left h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.content-narrow-left p {
    font-size: 1.05rem;
    color: #455a64;
    margin-bottom: 18px;
}

.content-image-right {
    width: 50%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.philosophy-block {
    padding: 100px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.philosophy-inner h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.philosophy-inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.team-asymmetric {
    padding: 100px 60px;
}

.section-heading-center {
    font-size: 2.6rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
    font-weight: 700;
}

.approach-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.approach-item {
    width: 340px;
    padding: 40px 30px;
    background-color: #f8f9fa;
}

.approach-item-1 {
    margin-top: 0;
}

.approach-item-2 {
    margin-top: 60px;
}

.approach-item-3 {
    margin-top: -30px;
}

.approach-item h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.approach-item p {
    font-size: 1rem;
    color: #455a64;
    line-height: 1.7;
}

.cta-inline-offset {
    padding: 100px 60px;
    background-color: #ecf0f1;
}

.cta-content {
    max-width: 700px;
    margin-left: 20%;
}

.cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.services-detail-offset {
    padding: 60px 0;
}

.service-detail-block {
    display: flex;
    min-height: 500px;
    margin-bottom: 80px;
}

.service-block-left {
    flex-direction: row;
}

.service-block-right {
    flex-direction: row-reverse;
}

.service-detail-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #455a64;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 30px 0 24px;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-service-cta:hover {
    background-color: #1a252f;
}

.service-detail-image {
    width: 50%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.contact-layout-asymmetric {
    display: flex;
    min-height: 600px;
    margin: 60px 0;
}

.contact-info-block {
    width: 45%;
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.contact-info-block h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #ecf0f1;
}

.contact-detail p {
    font-size: 1rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.contact-note {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.contact-note p {
    font-size: 0.95rem;
    color: #95a5a6;
    line-height: 1.6;
}

.contact-visual {
    width: 55%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.legal-page {
    padding: 140px 60px 80px;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #1a252f;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #34495e;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #455a64;
    font-weight: 700;
}

.legal-content p {
    font-size: 1rem;
    color: #455a64;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0 24px 30px;
}

.legal-content ul li {
    font-size: 1rem;
    color: #455a64;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content em {
    display: block;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.thanks-page-center {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 80px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-thanks,
.btn-thanks-secondary {
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-thanks {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

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

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

    .hero-content-offset {
        width: 100%;
        padding: 140px 40px 60px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .visual-split-irregular,
    .trust-visual,
    .content-offset-left,
    .service-detail-block,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .split-image-left,
    .split-content-right,
    .trust-content-overlap,
    .trust-image-bg,
    .content-narrow-left,
    .content-image-right,
    .service-detail-content,
    .service-detail-image,
    .contact-info-block,
    .contact-visual {
        width: 100%;
        position: relative;
        margin: 0;
        top: 0;
        right: 0;
    }

    .trust-image-bg {
        height: 400px;
    }

    .nav-floating {
        padding: 20px 40px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
    }

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

    .hero-title {
        font-size: 2.8rem;
    }

    .section-heading-offset {
        margin-left: 0;
        text-align: center;
    }

    .cards-container-asymmetric {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        margin: 0;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .card-offset-6 {
        margin: 0;
    }

    .intro-offset {
        padding: 80px 40px;
    }

    .intro-narrow {
        margin-right: 0;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .cta-content {
        margin-left: 0;
    }
}
