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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

.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 {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background-color: #4caf50;
    color: #ffffff;
}

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

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

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

.header-asymmetric {
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 12px;
    font-weight: 500;
}

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

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

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

.main-asymmetric {
    overflow-x: hidden;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 600px;
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
    transform: translateX(-20px);
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #4a5568;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateX(20px);
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-diagonal {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-block-offset {
    flex: 1.2;
    transform: translateY(-30px);
}

.intro-block-offset h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.intro-block-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-image-overlap {
    flex: 0.8;
    position: relative;
    transform: translateY(30px);
}

.intro-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-selection-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

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

.section-header-right h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-right p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 12px);
    min-width: 400px;
}

.card-medium {
    flex: 1 1 calc(50% - 12px);
    min-width: 350px;
}

.card-small {
    flex: 1 1 calc(40% - 12px);
    min-width: 300px;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    flex: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

.form-section-offset {
    max-width: 800px;
    margin: 100px auto 100px 100px;
    padding: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-container-asymmetric {
    transform: translateX(20px);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.selected-service-display {
    font-size: 18px;
    color: #3498db;
    font-weight: 600;
}

.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: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.values-stacked {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.value-block {
    flex: 1;
}

.value-left {
    transform: translateX(-40px);
}

.value-left h3 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.value-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.value-right {
    transform: translateX(40px);
}

.value-image {
    border-radius: 10px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.testimonial-floating {
    max-width: 900px;
    margin: 100px auto 100px 200px;
    padding: 60px 80px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 12px;
    transform: rotate(-1deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-content cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    color: #ecf0f1;
    font-weight: 600;
}

.cta-diagonal {
    max-width: 1400px;
    margin: 120px auto;
    padding: 80px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 16px;
    transform: skewY(-2deg);
}

.cta-content-split {
    transform: skewY(2deg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text {
    color: #ffffff;
}

.cta-text h2 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-text p {
    font-size: 18px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

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

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

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

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #2c2c2c;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2c2c2c;
    text-align: center;
    font-size: 13px;
    color: #7f8c8d;
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-diagonal,
    .values-stacked {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-block-offset,
    .value-left,
    .value-right {
        transform: none;
    }

    .section-header-right {
        text-align: left;
        margin-left: 0;
    }

    .form-section-offset {
        margin: 100px auto;
    }

    .testimonial-floating {
        margin: 100px auto;
        transform: none;
    }

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

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

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

    .nav-list {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 16px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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