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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
    max-width: 95%;
    flex-wrap: wrap;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-offset-block {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 2;
}

.hero-text-layer {
    max-width: 600px;
    color: white;
}

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

.hero-text-layer p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hero-image-layer {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.intro-overlap {
    margin-top: -8rem;
    padding: 0 4rem 4rem;
    position: relative;
    z-index: 10;
}

.intro-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: 10%;
}

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

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

.services-asymmetric {
    padding: 6rem 4rem;
    background: #f8f9fa;
}

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

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

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

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

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card.offset-1 {
    flex: 1 1 calc(60% - 1rem);
    margin-top: 0;
}

.service-card.offset-2 {
    flex: 1 1 calc(40% - 1rem);
    margin-top: 3rem;
}

.service-card.offset-3 {
    flex: 1 1 calc(40% - 1rem);
    margin-top: -2rem;
}

.service-card.offset-4 {
    flex: 1 1 calc(60% - 1rem);
    margin-top: 1rem;
}

.service-card.offset-5 {
    flex: 1 1 calc(50% - 1rem);
    margin-top: -1rem;
}

.service-card.offset-6 {
    flex: 1 1 calc(50% - 1rem);
    margin-top: 2rem;
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

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

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

.service-content p {
    color: #555;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-diagonal {
    position: relative;
    padding: 8rem 4rem;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    margin-right: 3rem;
    z-index: 2;
}

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

.form-container-offset p {
    margin-bottom: 2rem;
    color: #555;
}

.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,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: #667eea;
    color: white;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-image-overlay {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.why-us-stacked {
    padding: 6rem 4rem;
    background: white;
}

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

.why-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

.features-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.feature-item:nth-child(2) {
    margin-left: 10%;
}

.feature-item:nth-child(3) {
    margin-left: 5%;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.footer-asymmetric {
    background: #2c3e50;
    color: white;
    padding: 4rem 4rem 2rem;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ecf0f1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

@media (max-width: 1024px) {
    .hero-offset-block {
        clip-path: none;
        flex: 1;
    }

    .hero-image-layer {
        display: none;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5,
    .service-card.offset-6 {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
        clip-path: none;
    }

    .form-image-overlay {
        width: 100%;
    }

    .feature-item:nth-child(2),
    .feature-item:nth-child(3) {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        padding: 1rem;
        gap: 1rem;
    }

    .hero-text-layer h1 {
        font-size: 2.5rem;
    }

    .section-header-offset h2 {
        font-size: 2rem;
    }
}