* {
    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: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

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

.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: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.header-asymmetric {
    padding: 25px 5%;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-left,
.nav-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 5%;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 65%;
    height: 80%;
    z-index: 1;
    background-color: #ecf0f1;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
}

.hero-text-float {
    position: relative;
    z-index: 2;
    max-width: 550px;
    background: rgba(255,255,255,0.95);
    padding: 60px 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.hero-text-float h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-text-float p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44,62,80,0.3);
}

.intro-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 5%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1.2;
    padding-right: 40px;
}

.intro-narrow h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

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

.intro-image-side {
    flex: 1;
    margin-top: 60px;
    background-color: #ecf0f1;
}

.intro-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: -15px -15px 0 #3498db;
}

.services-staggered {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-header-left {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.services-header-left h3 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 800;
}

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

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

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

.service-card-large {
    flex: 1 1 calc(55% - 15px);
    min-width: 350px;
}

.service-card-offset {
    flex: 1 1 calc(45% - 15px);
    min-width: 300px;
    margin-top: 40px;
}

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

.service-card-wide {
    flex: 1 1 calc(65% - 15px);
    min-width: 350px;
    margin-top: -30px;
}

.service-card-tall {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-card h4 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #555;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
    margin: 0 25px 20px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.process-diagonal {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-content {
    flex: 1.3;
}

.process-content h3 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.process-blocks {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.process-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.process-number {
    font-size: 32px;
    font-weight: 800;
    color: #3498db;
    min-width: 60px;
}

.process-item h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.process-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.process-image {
    flex: 0.8;
    background-color: #ecf0f1;
}

.process-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.cta-floating {
    padding: 80px 5%;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box h3 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.9;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #34495e;
}

.footer-layered {
    background: #2c3e50;
    color: white;
    padding: 60px 5% 30px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 40px 5%;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        right: 0;
        margin-bottom: 30px;
    }

    .hero-text-float {
        max-width: 100%;
        padding: 40px 30px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
        margin: 60px auto;
    }

    .intro-image-side {
        margin-top: 0;
    }

    .process-diagonal {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-card-large,
    .service-card-offset,
    .service-card-small,
    .service-card-wide,
    .service-card-tall {
        flex: 1 1 100%;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .hero-text-float h2 {
        font-size: 32px;
    }

    .nav-split {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .modal-content {
        padding: 30px 20px;
    }
}