* {
    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: #fff;
}

.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: 250px;
}

.cookie-content a {
    color: #4ecdc4;
}

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

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

.btn-cookie {
    background: #4ecdc4;
    color: #fff;
}

.btn-cookie:hover {
    background: #3db8b0;
}

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

.btn-cookie-reject:hover {
    border-color: #999;
}

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

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

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 20px;
}

.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: #4ecdc4;
}

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    margin-top: 0;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    padding: 8rem 3rem 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-image-split {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #34495e;
}

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

.intro-block {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.intro-text-narrow {
    max-width: 700px;
    margin: 0 0 0 15%;
}

.intro-text-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.intro-text-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.services-asymmetric {
    padding: 5rem 5% 8rem;
    background: #fff;
}

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

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-info p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ecf0f1;
    padding-top: 1.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

.btn-select {
    padding: 0.7rem 1.8rem;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.form-section-offset {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 20%;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    margin-bottom: 2rem;
    color: #7f8c8d;
}

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

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

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

.form-group input {
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.trust-section {
    padding: 6rem 5%;
    background: #2c3e50;
    color: #fff;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #4ecdc4;
}

.trust-item p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.7;
}

.trust-item span {
    color: #4ecdc4;
    font-weight: 600;
}

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

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

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

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #4ecdc4;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

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

.footer-column a:hover {
    color: #4ecdc4;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    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: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        clip-path: none;
        padding: 6rem 2rem 3rem;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .hero-image-split {
        min-height: 400px;
    }

    .intro-text-narrow {
        margin: 0 auto;
    }

    .services-header-offset {
        margin-left: 0;
    }

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

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content-offset h1 {
        font-size: 2rem;
    }

    .intro-text-narrow h2,
    .services-header-offset h2,
    .form-intro h2 {
        font-size: 2rem;
    }

    .trust-content h3 {
        font-size: 1.8rem;
    }

    .services-grid-irregular {
        gap: 1.5rem;
    }

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

    .trust-points {
        gap: 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-cookie,
    .btn-cookie-reject {
        flex: 1;
    }
}