* {
    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: #333;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    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);
}

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1300px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-notice {
    font-size: 11px;
    color: #95a5a6;
    font-style: italic;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 8%;
}

.hero-text-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    height: 70%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transform: rotate(3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.value-proposition-slant {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.value-proposition-slant::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-15deg);
}

.content-narrow-left {
    max-width: 550px;
    margin-left: 8%;
    position: relative;
    z-index: 2;
}

.content-narrow-left h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.content-narrow-left p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}

.stats-cards-offset {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #e74c3c;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 500;
}

.services-grid-asymmetric {
    padding: 100px 20px;
    background: #fff;
}

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

.section-header-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-card {
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    transition: transform 0.3s ease;
}

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

.service-card > * {
    position: relative;
    z-index: 1;
}

.card-large {
    flex: 1 1 calc(60% - 15px);
}

.card-medium {
    flex: 1 1 calc(40% - 15px);
}

.card-small {
    flex: 1 1 calc(33.333% - 20px);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.service-card .price {
    font-size: 32px;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trust-section-irregular {
    padding: 100px 20px;
    background: #2c3e50;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.trust-content-left {
    flex: 1;
    max-width: 600px;
    margin-left: 8%;
    color: #fff;
}

.trust-content-left h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.testimonial-block {
    margin-bottom: 35px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #95a5a6;
    font-weight: 600;
}

.trust-image-right {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transform: rotate(-3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cta-diagonal-split {
    padding: 100px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.cta-diagonal-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 80%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(-15deg);
}

.cta-text-section {
    flex: 1;
    max-width: 500px;
    margin-left: 8%;
    color: #fff;
    position: relative;
    z-index: 2;
}

.cta-text-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text-section p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.form-section {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.form-section form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.selected-service-info {
    background: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #2c3e50;
    display: none;
}

.selected-service-info.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #3498db;
}

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

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 140px;
    }

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

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

    .value-proposition-slant {
        flex-direction: column;
    }

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

    .trust-section-irregular {
        flex-direction: column;
    }

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

    .trust-image-right {
        width: 100%;
        transform: none;
    }

    .cta-diagonal-split {
        flex-direction: column;
    }

    .cta-text-section {
        margin-left: 0;
    }

    .services-layout {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .floating-nav {
        top: 20px;
        width: 95%;
    }
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-info {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}