* {
    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: #1a1a1a;
    background: #fafafa;
}

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.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-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #357ac9;
}

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

.cookie-btn.reject:hover {
    background: #fff;
    color: #2c2c2c;
}

.nav-floating {
    position: fixed;
    top: 20px;
    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);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    padding-left: 1rem;
    border-left: 2px solid #ddd;
}

.hero-offset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
    padding-right: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #444;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: -5%;
}

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

.intro-asymmetric {
    padding: 100px 5%;
    display: flex;
    align-items: flex-start;
    gap: 5%;
    background: #fff;
}

.intro-narrow {
    flex: 0.4;
    padding-top: 3rem;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-wide-image {
    flex: 0.6;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.intro-wide-image img {
    width: 100%;
    height: 450px;
}

.services-overlap {
    padding: 120px 5% 100px;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

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

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #666;
}

.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 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.service-card.large {
    flex: 1 1 calc(60% - 1rem);
}

.service-card.medium {
    flex: 1 1 calc(48% - 1rem);
}

.service-card.small {
    flex: 1 1 calc(38% - 1rem);
}

.service-card img {
    width: 100%;
    height: 220px;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card .price {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

.form-section-offset {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #fff;
    position: relative;
}

.form-container {
    max-width: 600px;
    margin-left: 15%;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container > p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #ccc;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #444;
    border-radius: 6px;
    font-size: 1rem;
    background: #2c2c2c;
    color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    padding: 1rem 3rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

.trust-diagonal {
    padding: 120px 5% 100px;
    background: #fff;
    position: relative;
}

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

.trust-content h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

.trust-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 5% 30px;
}

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

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

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

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

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

.footer-col ul li a:hover {
    color: #2563eb;
}

.footer-col p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #252525;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-image-right {
        margin-left: 0;
        width: 100%;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .trust-points {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .services-grid-irregular {
        flex-direction: column;
    }

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

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
}