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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    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: 1rem;
}

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

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

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

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

.btn-accept:hover {
    background: #229954;
}

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

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

.ad-disclosure {
    background: #f39c12;
    color: #fff;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-asymmetric {
    position: relative;
}

.nav-offset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b3a8b;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #8b3a8b;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #f4f4f4;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    right: -10%;
    top: 0;
    width: 65%;
    height: 100%;
    background: #ddd;
}

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

.hero-text-floating {
    position: relative;
    z-index: 10;
    padding: 5% 5% 5% 8%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    margin-left: 5%;
    margin-top: -3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-text-floating h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-floating p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #8b3a8b;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #6d2e6d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 58, 139, 0.3);
}

.intro-diagonal {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    position: relative;
}

.content-narrow {
    flex: 1;
    padding: 5rem 8% 5rem 12%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.visual-accent {
    flex: 1;
    background: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.visual-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-staggered {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.section-header-offset {
    max-width: 600px;
    margin-left: 8%;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: #666;
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 2rem;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

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

.service-card img {
    width: 45%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    background: #ddd;
}

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b3a8b;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #1a252f;
    transform: translateX(5px);
}

.insights-layered {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background: #2c3e50;
    color: #fff;
    position: relative;
}

.insight-block-left {
    flex: 1;
    padding-right: 5%;
}

.insight-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insight-block-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.stats-overlay {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f39c12;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-section-diagonal {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
    position: relative;
}

.form-container {
    max-width: 700px;
    margin-left: 15%;
    background: #fff;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

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

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

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: #8b3a8b;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #6d2e6d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 58, 139, 0.3);
}

.trust-section {
    padding: 5rem 5%;
    background: #fff;
}

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

.content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-centered p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

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

.footer-content-staggered {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-block h3,
.footer-block h4 {
    margin-bottom: 1rem;
    color: #f39c12;
}

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

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

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

.footer-block a:hover {
    color: #fff;
}

.footer-block p {
    color: #ccc;
    line-height: 1.8;
}

.disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #f39c12;
}

.disclaimer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-text-floating h1 {
        font-size: 2rem;
    }

    .intro-diagonal {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card img {
        width: 100%;
    }

    .service-card.offset-left,
    .service-card.offset-right,
    .service-card.offset-center {
        margin-left: 0;
        margin-right: 0;
    }

    .insights-layered {
        flex-direction: column;
    }

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

    .footer-content-staggered {
        flex-direction: column;
        gap: 2rem;
    }
}