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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

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

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

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

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

.header-asymmetric {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.menu-irregular {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.menu-irregular a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.menu-irregular a:hover {
    color: #e74c3c;
}

.menu-irregular a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.menu-irregular a:hover::after {
    width: 100%;
}

.hero-offset {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-content-left {
    position: relative;
    z-index: 10;
    max-width: 550px;
    margin-left: 8%;
    margin-top: -5rem;
}

.title-irregular {
    font-size: 3.8rem;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.subtitle-offset {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-primary-offset {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}

.cta-primary-offset:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 15%;
    width: 55%;
    height: 70%;
    background: #f5f5f5;
    overflow: hidden;
    border-radius: 0 0 0 200px;
}

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

.intro-asymmetric {
    padding: 6rem 2rem;
    display: flex;
    justify-content: flex-end;
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.content-block-offset {
    max-width: 650px;
    margin-right: 10%;
    position: relative;
    z-index: 5;
}

.intro-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #2c3e50;
    font-weight: 300;
    font-style: italic;
}

.visual-accent {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: #e74c3c;
    opacity: 0.08;
    border-radius: 50%;
}

.services-stacked {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-left {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-left: 5%;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card-offset-1,
.service-card-offset-2,
.service-card-offset-3,
.service-card-offset-4,
.service-card-offset-5,
.service-card-offset-6 {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
}

.service-card-offset-1 {
    margin-left: 5%;
}

.service-card-offset-2 {
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-card-offset-3 {
    margin-left: 10%;
}

.service-card-offset-4 {
    margin-right: 8%;
    flex-direction: row-reverse;
}

.service-card-offset-5 {
    margin-left: 3%;
}

.service-card-offset-6 {
    margin-right: 10%;
    flex-direction: row-reverse;
}

.service-image-wrap {
    flex: 0 0 45%;
    background: #e8e8e8;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.service-details {
    flex: 1;
    padding: 1.5rem;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 2rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44,62,80,0.3);
}

.btn-select-service:active {
    transform: translateY(0);
}

.philosophy-overlap {
    position: relative;
    min-height: 600px;
    margin: 6rem 0;
    display: flex;
    align-items: center;
}

.philosophy-image-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: #ddd;
    overflow: hidden;
}

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

.philosophy-text-card {
    position: relative;
    margin-left: 45%;
    background: white;
    padding: 3rem;
    max-width: 550px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.philosophy-text-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.philosophy-text-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.form-section-offset {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 10%;
    background: white;
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-title-irregular {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

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

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

.form-group-offset input,
.form-group-offset select,
.form-group-offset textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group-offset input:focus,
.form-group-offset select:focus,
.form-group-offset textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.btn-submit-offset {
    padding: 1.1rem 2.5rem;
    background: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit-offset:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

.btn-submit-offset:active {
    transform: translateY(0);
}

.footer-asymmetric {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content-irregular {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-block-1,
.footer-block-2,
.footer-block-3 {
    flex: 1;
    min-width: 200px;
}

.footer-block-1 h3,
.footer-block-2 h4,
.footer-block-3 h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-block-1 p,
.footer-block-3 p {
    color: #aaa;
    line-height: 1.8;
}

.footer-block-2 ul {
    list-style: none;
}

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

.footer-block-2 ul a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block-2 ul a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #777;
}

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

.thanks-card {
    max-width: 600px;
    background: white;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-card h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-card p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-page ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

@media (max-width: 1024px) {
    .hero-image-overlap {
        width: 50%;
        height: 60%;
    }

    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3,
    .service-card-offset-4,
    .service-card-offset-5,
    .service-card-offset-6 {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .service-image-wrap {
        flex: 0 0 auto;
        width: 100%;
    }

    .philosophy-image-bg {
        width: 100%;
    }

    .philosophy-text-card {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 768px) {
    .menu-irregular {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .title-irregular {
        font-size: 2.5rem;
    }

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        margin-top: 2rem;
        border-radius: 8px;
    }

    .section-title-left {
        font-size: 2rem;
        margin-left: 0;
    }

    .form-container-asymmetric {
        margin: 0 auto;
        padding: 2rem;
    }
}