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

:root {
    --primary-color: #1a4d6d;
    --secondary-color: #2c7da0;
    --accent-color: #f4a261;
    --dark-text: #1e1e1e;
    --light-text: #666;
    --background-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f0f0f0;
    color: #555;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #ddd;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    position: relative;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

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

.hero-content-left {
    flex: 0 0 48%;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.cta-primary:hover {
    background-color: #e76f51;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

.hero-image-right {
    flex: 0 0 52%;
    position: relative;
    margin-left: -40px;
}

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

.intro-diagonal {
    display: flex;
    align-items: center;
    padding: 120px 10% 120px 6%;
    background-color: var(--white);
    position: relative;
}

.intro-text-block {
    flex: 0 0 55%;
    padding-right: 80px;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-text-block p {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.8;
}

.intro-visual {
    flex: 0 0 45%;
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cards-overlap {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 70px;
    margin-left: 8%;
    color: var(--primary-color);
    font-weight: 700;
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card.card-1,
.service-card.card-4 {
    flex: 0 0 calc(48% - 20px);
}

.service-card.card-2,
.service-card.card-3,
.service-card.card-5 {
    flex: 0 0 calc(31% - 27px);
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--background-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    padding: 0 25px;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    padding: 0 25px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service-btn {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section-offset {
    padding: 100px 10% 100px 15%;
    background-color: var(--background-light);
}

.form-intro {
    max-width: 650px;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

.asymmetric-form {
    max-width: 700px;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.selected-service-display {
    background-color: #e8f4f8;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary-color);
}

.selected-service-display span {
    color: var(--dark-text);
    font-size: 1rem;
}

.submit-btn {
    padding: 16px 45px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-offset {
    display: flex;
    align-items: center;
    padding: 100px 8% 100px 10%;
    background-color: var(--white);
}

.trust-offset img {
    flex: 0 0 45%;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    object-fit: cover;
    height: auto;
}

.trust-content {
    flex: 0 0 55%;
    padding-left: 70px;
}

.trust-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.footer-block {
    flex: 0 0 calc(33.333% - 27px);
}

.footer-block h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-block p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-block a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    background-color: #252525;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background-color: #e76f51;
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid #666;
}

.cookie-btn.reject:hover {
    border-color: var(--white);
}

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

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

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

    .intro-diagonal {
        flex-direction: column-reverse;
        padding: 80px 6%;
    }

    .intro-text-block {
        flex: 1;
        padding-right: 0;
        margin-top: 40px;
    }

    .intro-visual {
        flex: 1;
        width: 100%;
    }

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

    .trust-offset {
        flex-direction: column;
        padding: 80px 6%;
    }

    .trust-offset img {
        flex: 1;
        width: 100%;
        margin-bottom: 40px;
    }

    .trust-content {
        flex: 1;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
        padding: 20px 5%;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .section-title-offset {
        font-size: 2rem;
        margin-left: 0;
    }

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

    .footer-block {
        flex: 1;
    }

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