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

:root {
    --color-primary: #2c5f7c;
    --color-secondary: #e8a828;
    --color-accent: #c44536;
    --color-dark: #1a1a1a;
    --color-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-border: #dee2e6;
    --color-bg-section: #ffffff;
    --color-bg-alt: #f4f6f8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-light);
}

.ad-disclosure {
    background: var(--color-secondary);
    color: var(--color-dark);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 80px 80px;
    position: relative;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-light) 100%);
}

.hero-content-offset {
    width: 45%;
    z-index: 10;
    padding-right: 60px;
}

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--color-dark);
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--color-gray);
}

.hero-image-overlap {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 50%;
    background: var(--color-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.92;
    mix-blend-mode: multiply;
}

.cta-primary {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

.cta-primary:hover {
    background: #234a62;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.4);
}

.intro-zigzag {
    padding: 100px 80px;
    display: flex;
    align-items: center;
    gap: 80px;
    background: white;
}

.intro-block-left {
    width: 48%;
}

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--color-dark);
    font-weight: 700;
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
}

.intro-visual-right {
    width: 48%;
    background: var(--color-bg-alt);
    border-radius: 16px;
    overflow: hidden;
}

.intro-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-offset {
    padding: 120px 80px;
    background: var(--color-bg-alt);
    position: relative;
}

.services-header-right {
    text-align: right;
    max-width: 600px;
    margin-left: auto;
    margin-bottom: 60px;
}

.services-header-right h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-dark);
    font-weight: 700;
}

.services-header-right p {
    font-size: 18px;
    color: var(--color-gray);
}

.services-cards-staggered {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-pull-left {
    margin-right: 15%;
}

.card-center {
    margin: 0 auto;
    max-width: 900px;
}

.card-pull-right {
    margin-left: 15%;
}

.card-wide {
    margin: 0 auto;
    max-width: 1100px;
}

.service-icon {
    width: 100%;
    height: 280px;
    background: var(--color-bg-alt);
    border-radius: 12px;
    margin-bottom: 28px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--color-dark);
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.select-service-btn {
    background: var(--color-secondary);
    color: var(--color-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #d19820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 168, 40, 0.3);
}

.trust-block-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
    background: white;
}

.trust-block-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--color-dark);
    font-weight: 700;
}

.trust-block-narrow p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--color-gray);
}

.form-section-overlay {
    padding: 120px 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e4a5f 100%);
    position: relative;
}

.form-container-styled {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-container-styled h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--color-dark);
    font-weight: 700;
}

.form-container-styled > p {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.submit-btn:hover {
    background: #234a62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

.testimonials-scattered {
    padding: 120px 80px;
    background: white;
}

.testimonials-scattered h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--color-dark);
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--color-secondary);
}

.testimonial-left {
    margin-right: 20%;
}

.testimonial-right {
    margin-left: 20%;
}

.testimonial-center {
    margin: 0 auto;
    max-width: 800px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--color-gray);
    font-weight: 600;
}

.footer-layered {
    background: var(--color-dark);
    color: white;
    padding-top: 60px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 0 80px 50px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #adb5bd;
}

.footer-col a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #adb5bd;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 80px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px 40px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-dark);
    flex: 1;
}

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn-accept {
    background: var(--color-primary);
    color: white;
}

.cookie-btn-accept:hover {
    background: #234a62;
}

.cookie-btn-reject {
    background: var(--color-border);
    color: var(--color-dark);
}

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

.about-hero-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
    margin-top: 40px;
}

.about-text-side {
    width: 45%;
    padding: 80px;
    background: var(--color-primary);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-side h1 {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-text-side p {
    font-size: 20px;
    line-height: 1.6;
}

.about-image-side {
    width: 55%;
    background: var(--color-bg-alt);
}

.about-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-section {
    padding: 100px 80px;
    background: white;
}

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

.story-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--color-dark);
    font-weight: 700;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.values-asymmetric {
    padding: 100px 80px;
    background: var(--color-bg-alt);
}

.values-asymmetric h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--color-dark);
    font-weight: 700;
}

.values-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-position-1 {
    margin-right: 25%;
}

.value-position-2 {
    margin-left: 25%;
}

.value-position-3 {
    margin: 0 auto;
    max-width: 700px;
}

.value-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 700;
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-gray);
}

.team-section-scattered {
    padding: 100px 80px;
    background: white;
}

.team-section-scattered h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-dark);
    font-weight: 700;
}

.team-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-member {
    flex: 1;
}

.member-left {
    margin-right: 10%;
}

.member-right {
    margin-left: 10%;
}

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--color-dark);
    font-weight: 700;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray);
}

.cta-section-inline {
    padding: 80px;
    background: var(--color-bg-alt);
    text-align: center;
}

.cta-section-inline h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--color-dark);
    font-weight: 700;
}

.cta-secondary {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #d19820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 168, 40, 0.3);
}

.services-hero-centered {
    padding: 140px 80px 80px;
    text-align: center;
    background: var(--color-bg-alt);
}

.services-hero-centered h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--color-dark);
    font-weight: 800;
}

.services-hero-centered p {
    font-size: 20px;
    color: var(--color-gray);
}

.services-detailed {
    padding: 80px;
    background: white;
}

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.block-left .service-detail-image {
    order: 1;
}

.block-left .service-detail-content {
    order: 2;
}

.block-right .service-detail-content {
    order: 1;
}

.block-right .service-detail-image {
    order: 2;
}

.block-center {
    flex-direction: column;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.service-detail-image {
    flex: 1;
    background: var(--color-bg-alt);
    border-radius: 16px;
    overflow: hidden;
}

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

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

.content-centered {
    text-align: center;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--color-dark);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.service-pricing-box {
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: 10px;
    margin: 28px 0;
    display: inline-block;
}

.pricing-highlight {
    background: var(--color-primary);
    color: white;
}

.pricing-highlight .price-label,
.pricing-highlight .price-value {
    color: white;
}

.price-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray);
    margin-right: 12px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
    margin-top: 16px;
}

.contact-hero {
    padding: 140px 80px 60px;
    text-align: center;
    background: var(--color-bg-alt);
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--color-dark);
    font-weight: 800;
}

.contact-hero p {
    font-size: 20px;
    color: var(--color-gray);
}

.contact-info-asymmetric {
    padding: 80px;
    background: white;
}

.contact-block {
    margin-bottom: 60px;
}

.block-offset-left {
    margin-right: 30%;
}

.block-offset-right {
    margin-left: 30%;
}

.block-centered {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-dark);
    font-weight: 700;
}

.contact-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.email-note,
.hours-note {
    font-size: 14px;
    color: var(--color-gray);
    font-style: italic;
    margin-top: 12px;
}

.contact-visual {
    background: var(--color-bg-alt);
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px 80px;
    background: white;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-dark);
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--color-dark);
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--color-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 80px 80px;
    background: var(--color-bg-alt);
}

.thanks-content {
    max-width: 800px;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--color-primary);
    font-weight: 700;
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.thanks-details {
    background: var(--color-bg-alt);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-dark);
    font-weight: 600;
}

.thanks-details p {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--color-dark);
    font-weight: 600;
}

.thanks-next-steps ol {
    margin-left: 20px;
}

.thanks-next-steps li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 12px;
}

.cta-back {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-back:hover {
    background: #234a62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

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

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

    .intro-zigzag {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }

    .intro-block-left,
    .intro-visual-right {
        width: 100%;
    }

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

    .nav-floating {
        flex-direction: column;
        gap: 20px;
        padding: 16px 24px;
    }

    .service-detail-block {
        flex-direction: column;
        gap: 40px;
    }

    .block-left .service-detail-image,
    .block-left .service-detail-content,
    .block-right .service-detail-content,
    .block-right .service-detail-image {
        order: initial;
    }

    .team-layout {
        flex-direction: column;
    }

    .member-left,
    .member-right {
        margin: 0;
    }

    .about-hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .about-text-side,
    .about-image-side {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}