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

.ad-notice {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 60px;
    background-color: #ffffff;
    margin-left: 8%;
    margin-top: -120px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-content-offset h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #555;
}

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

.cta-hero:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-visual-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 60%;
    height: 70%;
    z-index: 5;
    background-color: #e9ecef;
}

.hero-visual-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-offset {
    display: flex;
    padding: 140px 60px;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text-block {
    flex: 1;
    padding-left: 120px;
}

.intro-text-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.intro-visual-small {
    flex: 0 0 400px;
    height: 500px;
    margin-top: -80px;
    background-color: #e9ecef;
}

.intro-visual-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-cards-irregular {
    padding: 100px 40px;
    background-color: #fafafa;
}

.services-cards-irregular h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: left;
    padding-left: 60px;
    color: #1a1a1a;
}

.cards-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

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

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

.card-offset-1 {
    flex: 0 0 calc(45% - 20px);
    margin-top: 0;
}

.card-offset-2 {
    flex: 0 0 calc(55% - 20px);
    margin-top: 60px;
}

.card-offset-3 {
    flex: 0 0 calc(50% - 20px);
    margin-top: -40px;
}

.card-offset-4 {
    flex: 0 0 calc(50% - 20px);
    margin-top: 80px;
}

.card-offset-5 {
    flex: 0 0 calc(60% - 20px);
    margin-top: -20px;
    margin-left: auto;
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 25px 30px 15px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 30px 15px;
    color: #555;
    font-size: 16px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 30px 25px;
}

.select-service {
    margin: 0 30px 30px;
    padding: 14px 30px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section-overlap {
    padding: 120px 40px;
    position: relative;
}

.form-container {
    max-width: 700px;
    margin-left: 15%;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.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: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    background-color: #e8f4f8;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.selected-service-display strong {
    color: #2c3e50;
}

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

.submit-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.trust-content-scattered {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 60px;
}

.trust-block {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-pos-1 {
    margin-top: 0;
}

.trust-pos-2 {
    margin-top: 60px;
}

.trust-pos-3 {
    margin-top: -30px;
}

.trust-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
}

.footer-main {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col p {
    color: #b0b0b0;
    font-size: 15px;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #2c3e50;
    font-size: 15px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #34495e;
}

.cookie-reject {
    background-color: #e0e0e0;
    color: #2c3e50;
}

.cookie-reject:hover {
    background-color: #d0d0d0;
}

@media (max-width: 1024px) {
    .nav-floating {
        right: 20px;
        top: 20px;
        padding: 12px 20px;
    }

    .hero-content-offset {
        margin-left: 5%;
        padding: 40px;
    }

    .hero-content-offset h1 {
        font-size: 42px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-text-block {
        padding-left: 0;
    }

    .cards-asymmetric-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100% !important;
        margin-top: 0 !important;
    }

    .trust-content-scattered {
        flex-direction: column;
    }

    .trust-block {
        margin-top: 0 !important;
    }

    .footer-main {
        flex-wrap: wrap;
    }

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