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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #e85d33;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

.cookie-accept:hover {
    background: #d14d23;
}

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

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

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background: var(--bg-white);
    position: relative;
}

.header-left {
    flex: 0 0 auto;
}

.brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-floating a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-floating a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    position: relative;
    margin: 0 60px 80px 60px;
}

.hero-text-block {
    flex: 0 0 55%;
    padding: 80px 60px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-text-block p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 540px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #d14d23;
    transform: translateY(-2px);
}

.hero-image-overlay {
    position: absolute;
    right: 0;
    top: 40px;
    width: 50%;
    height: calc(100% - 40px);
    background: var(--bg-light);
    overflow: hidden;
    border-radius: 8px;
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
}

.intro-angular {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    background: var(--bg-light);
    align-items: center;
}

.intro-content-left {
    flex: 1;
}

.intro-content-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.intro-stats-right {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.services-staggered {
    padding: 120px 60px;
}

.section-title-offset {
    font-size: 44px;
    margin-bottom: 80px;
    margin-left: 120px;
    color: var(--text-dark);
}

.service-row-left,
.service-row-right {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
    min-height: 400px;
}

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

.service-info {
    flex: 1;
    padding: 20px;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #234a85;
    transform: translateY(-2px);
}

.testimonial-block-angled {
    background: var(--primary-color);
    color: white;
    padding: 80px 60px 80px 180px;
    margin: 0 60px 80px 0;
    border-radius: 8px;
    transform: skewY(-2deg);
}

.testimonial-content {
    transform: skewY(2deg);
}

.testimonial-content blockquote {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.cta-diagonal {
    padding: 100px 60px 100px 200px;
    background: var(--bg-light);
    margin: 80px 0 80px 60px;
    text-align: left;
}

.cta-diagonal h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-diagonal p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
}

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

.cta-secondary:hover {
    background: #d14d23;
    transform: translateY(-2px);
}

.form-container-offset {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background: var(--bg-white);
}

.form-wrapper {
    flex: 1;
    max-width: 600px;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 48px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-side-content {
    flex: 0 0 400px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.form-side-content img {
    width: 100%;
    height: 100%;
}

.trust-indicators-scattered {
    display: flex;
    gap: 40px;
    padding: 80px 60px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 60px 60px 40px 60px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col-large {
    flex: 2;
}

.footer-col {
    flex: 1;
}

.footer-col-large h4,
.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-col-large p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
}

.footer-bottom p:last-child {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        margin: 0 30px 60px 30px;
    }

    .hero-text-block {
        flex: 1;
        padding: 60px 30px;
    }

    .hero-image-overlay {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .intro-angular {
        flex-direction: column;
        padding: 60px 30px;
    }

    .intro-stats-right {
        flex: 1;
        width: 100%;
    }

    .service-row-left,
    .service-row-right {
        flex-direction: column;
        gap: 40px;
    }

    .service-image {
        flex: 1;
        width: 100%;
    }

    .form-container-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

    .form-side-content {
        flex: 1;
        height: 300px;
    }

    .trust-indicators-scattered {
        flex-direction: column;
    }

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

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

    .nav-floating {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .section-title-offset {
        font-size: 32px;
        margin-left: 0;
    }

    .services-staggered {
        padding: 60px 30px;
    }
}