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

:root {
    --primary-color: #2B5A7E;
    --secondary-color: #E8743B;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
}

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

.ad-disclosure {
    background: #FFF3CD;
    color: #856404;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid #FFEEBA;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

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

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

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

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

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 80px 50px;
    position: relative;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8EEF2 100%);
}

.hero-content-offset {
    width: 50%;
    padding-right: 60px;
    position: relative;
    z-index: 10;
    transform: translateX(8%);
}

.hero-title-large {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-text-block {
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-text-block p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.cta-hero:hover {
    background: #D1632F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 116, 59, 0.3);
}

.hero-image-overlap {
    width: 55%;
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-offset {
    display: flex;
    align-items: center;
    padding: 100px 50px;
    gap: 60px;
    background: var(--bg-white);
}

.intro-visual-left {
    width: 45%;
    position: relative;
    transform: translateY(-30px);
    background: #F0F4F8;
    border-radius: 8px;
}

.intro-visual-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.intro-content-right {
    width: 55%;
    padding-left: 40px;
}

.intro-content-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.value-cards-staggered {
    padding: 120px 50px;
    background: var(--bg-light);
}

.section-title-centered {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.card-row-asymmetric {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    width: 360px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.card-offset-1 {
    transform: translateY(20px);
}

.card-offset-2 {
    transform: translateY(-15px);
}

.card-offset-3 {
    transform: translateY(30px);
}

.card-offset-4 {
    transform: translateY(-10px);
}

.card-offset-5 {
    transform: translateY(25px);
}

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

.card-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #E8EEF2;
}

.card-image-container img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 25px 20px;
    color: var(--text-light);
    font-size: 15px;
    flex-grow: 1;
}

.service-price {
    margin: 0 25px 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-select-service {
    margin: 0 25px 25px;
    padding: 12px 0;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.process-diagonal {
    display: flex;
    align-items: center;
    padding: 100px 50px;
    gap: 70px;
    background: var(--bg-white);
    position: relative;
}

.process-content-overlap {
    width: 52%;
    z-index: 10;
    transform: translateX(-5%);
}

.process-content-overlap h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.process-content-overlap > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-text p {
    font-size: 15px;
    color: var(--text-light);
}

.process-image-diagonal {
    width: 48%;
    position: relative;
    transform: translateY(40px) rotate(-2deg);
    background: #F0F4F8;
    border-radius: 8px;
}

.process-image-diagonal img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.form-section-offset {
    display: flex;
    align-items: stretch;
    padding: 100px 50px;
    gap: 60px;
    background: var(--bg-light);
}

.form-container-asymmetric {
    width: 55%;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateX(5%);
}

.form-container-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    margin-bottom: 35px;
    color: var(--text-light);
    font-size: 16px;
}

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

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

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

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

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

.btn-submit {
    padding: 15px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #D1632F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 116, 59, 0.3);
}

.form-visual-element {
    width: 45%;
    position: relative;
    transform: translateY(-30px);
    background: #E8EEF2;
    border-radius: 8px;
}

.form-visual-element img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.footer-asymmetric {
    background: #1A1A1A;
    color: white;
    padding: 60px 50px 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column p {
    color: #B0B0B0;
    font-size: 15px;
}

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

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

.footer-column ul li a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    margin-bottom: 20px;
    font-size: 13px;
    color: #808080;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #808080;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: white;
    padding: 25px 50px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.service-selected {
    background: #D4EDDA !important;
    border: 2px solid #28A745 !important;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 50px;
    text-align: center;
    background: var(--bg-light);
}

.thanks-container h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    max-width: 700px;
}

.btn-back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #D1632F;
    transform: translateY(-2px);
}

.content-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 50px;
}

.content-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.content-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-page p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.content-page ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.content-page ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-page-layout {
    display: flex;
    gap: 60px;
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.contact-detail h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-detail p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #E8EEF2;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        transform: none;
    }

    .hero-title-large {
        font-size: 36px;
    }

    .hero-image-overlap {
        width: 100%;
        position: static;
        transform: none;
        margin-top: 40px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .intro-visual-left,
    .intro-content-right {
        width: 100%;
        padding: 0;
        transform: none;
    }

    .value-cards-staggered {
        padding: 60px 20px;
    }

    .card-row-asymmetric {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        transform: none !important;
    }

    .process-diagonal {
        flex-direction: column;
        padding: 60px 20px;
    }

    .process-content-overlap,
    .process-image-diagonal {
        width: 100%;
        transform: none;
    }

    .form-section-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .form-container-asymmetric,
    .form-visual-element {
        width: 100%;
        transform: none;
    }

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

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

    .contact-page-layout {
        flex-direction: column;
        padding: 40px 20px;
    }
}