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

.ad-notice {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    min-height: 90vh;
    padding: 80px 40px 40px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    color: white;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-primary {
    background: white;
    color: #667eea;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    width: fit-content;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: 60px;
    background-color: #5a67d8;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.intro-asymmetric {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
    background: white;
}

.intro-block-one {
    flex: 1;
    padding-left: 40px;
}

.intro-block-one h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-block-one p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-block-two {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background-color: #e8f4f8;
}

.intro-block-two img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.intro-block-two p {
    font-size: 17px;
    color: #34495e;
    font-style: italic;
    padding: 20px;
}

.services-staggered {
    padding: 120px 60px;
    background: #f7f9fc;
}

.services-staggered h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-left {
    margin-right: 20%;
}

.card-right {
    margin-left: 20%;
}

.card-center {
    margin-left: 10%;
    margin-right: 10%;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.service-card h3 {
    font-size: 26px;
    margin: 25px 30px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0 30px 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 0 30px 20px;
}

.select-service {
    background: #3498db;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin: 0 30px 30px;
    transition: background 0.3s, transform 0.2s;
}

.select-service:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.form-overlay-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.form-container-asymmetric {
    background: white;
    padding: 50px;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 80px rgba(0,0,0,0.3);
}

.close-form {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

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

.form-container-asymmetric h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container-asymmetric > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

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

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.cta-submit {
    background: #27ae60;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s, transform 0.2s;
}

.cta-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.trust-block {
    padding: 100px 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: linear-gradient(to right, #e8f5e9, #ffffff);
}

.trust-content {
    flex: 1;
    padding-right: 40px;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.trust-image {
    flex: 1;
    background-color: #c8e6c9;
}

.trust-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-bottom-offset {
    padding: 120px 60px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.cta-bottom-offset h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-bottom-offset p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-secondary {
    background: white;
    color: #2c3e50;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #95a5a6;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px 40px;
    z-index: 3000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
}

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

.cookie-accept:hover {
    transform: scale(1.05);
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .floating-nav {
        right: 20px;
        padding: 15px 20px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

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

    .services-staggered {
        padding: 60px 20px;
    }

    .card-left,
    .card-right,
    .card-center {
        margin-left: 0;
        margin-right: 0;
    }

    .trust-block {
        flex-direction: column;
        padding: 60px 20px;
    }

    .trust-content {
        padding-right: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}