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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.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;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

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

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

.btn-reject {
    background: #7f8c8d;
    color: #fff;
}

.btn-reject:hover {
    background: #5d6d7e;
}

.header-asymmetric {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand-mark {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.nav-items {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

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

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

.asymmetric-layout {
    overflow: hidden;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

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

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

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

.cta-primary:hover {
    background: #2980b9;
}

.hero-visual-overlap {
    flex: 1;
    position: relative;
    margin-left: -5rem;
}

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

.intro-diagonal {
    background: #ecf0f1;
    padding: 5rem 2rem;
    margin: 3rem 0;
    transform: skewY(-2deg);
}

.diagonal-content {
    max-width: 800px;
    margin: 0 auto;
    transform: skewY(2deg);
}

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

.diagonal-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

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

.service-card-left,
.service-card-right {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-card-right {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-text {
    flex: 1;
    padding: 2rem;
}

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

.service-text p {
    margin-bottom: 1rem;
    color: #555;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #27ae60;
    margin-top: 1.5rem;
}

.btn-select-service {
    padding: 0.8rem 2rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1a252f;
}

.trust-block-stacked {
    background: #fff;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.trust-item {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    border-left: 4px solid #3498db;
}

.trust-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.trust-item p {
    font-size: 1.1rem;
    color: #555;
}

.testimonial-offset {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

blockquote {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 6px solid #27ae60;
    font-style: italic;
}

blockquote p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #555;
}

.form-section-diagonal {
    background: #2c3e50;
    padding: 5rem 2rem;
    margin-top: 5rem;
    transform: skewY(-2deg);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    transform: skewY(2deg);
}

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

.form-container > p {
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-block {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer-block p {
    font-size: 0.95rem;
    color: #856404;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #fff;
}

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-col p {
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-visual-overlap {
        margin-left: 0;
    }

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

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

    .nav-items {
        flex-direction: column;
        gap: 1rem;
    }

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