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

:root {
    --primary: #1a4d8f;
    --secondary: #2c7bd6;
    --accent: #f59e0b;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --border: #e2e8f0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: #ffffff;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    max-width: 1320px;
    margin: 0 auto;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: var(--gray);
    background: var(--light);
    padding: 6px 14px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: 28px;
    border: 1px solid var(--border);
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 620px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.hero-content-offset {
    width: 52%;
    padding: 80px 0 80px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-image-overlap {
    width: 58%;
    position: absolute;
    right: -10%;
    top: -5%;
    height: 110%;
}

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

.hero-content-offset h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-content-offset p {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 38px;
    max-width: 520px;
    line-height: 1.65;
}

.cta-primary {
    display: inline-flex;
    background: var(--secondary);
    color: white;
    padding: 16px 42px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(44, 123, 214, 0.25);
}

.cta-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(44, 123, 214, 0.35);
}

.section-offset-left {
    padding: 100px 0;
    background: var(--light);
}

.section-offset-right {
    padding: 90px 0;
    background: white;
}

.offset-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.offset-col-narrow {
    width: 38%;
}

.offset-col-wide {
    width: 62%;
    padding-left: 40px;
}

.section-title-offset {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.8px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-card-offset {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.service-card-offset:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 60px;
}

.service-card-offset:nth-child(odd) {
    margin-right: 60px;
}

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

.service-image {
    width: 280px;
    background: var(--light);
    position: relative;
}

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

.service-content {
    flex: 1;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.service-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin-top: auto;
}

.service-price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
}

.form-section-diagonal {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    margin-top: 60px;
}

.form-section-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: white;
    transform: skewY(-2deg);
    transform-origin: top left;
}

.form-wrapper-offset {
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-intro {
    width: 42%;
    color: white;
}

.form-intro h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.form-container {
    width: 58%;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.about-overlap-section {
    padding: 90px 0;
    position: relative;
}

.about-content-staggered {
    display: flex;
    gap: 70px;
}

.about-text-block {
    width: 50%;
    padding-top: 40px;
}

.about-text-block h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    line-height: 1.25;
}

.about-text-block p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-cluster {
    width: 50%;
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-floating {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: white;
    padding: 32px 40px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
}

.contact-asymmetric {
    padding: 100px 0;
    background: var(--light);
}

.contact-layout {
    display: flex;
    gap: 100px;
}

.contact-info-block {
    width: 45%;
}

.contact-info-block h1 {
    font-size: 46px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    line-height: 1.2;
}

.contact-detail {
    margin-bottom: 32px;
    padding-left: 20px;
    border-left: 4px solid var(--secondary);
}

.contact-detail h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-map-offset {
    width: 55%;
    height: 520px;
    background: #e0e7ef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-page {
    padding: 80px 0;
    max-width: 920px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.legal-page .update-date {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
}

.legal-page li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 10px;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
    text-align: center;
    padding: 80px 24px;
}

.thanks-content {
    max-width: 680px;
}

.thanks-icon {
    width: 88px;
    height: 88px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: white;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary {
    display: inline-flex;
    background: white;
    color: var(--primary);
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 70px 0 32px;
}

.footer-grid {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 28px;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

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

.cookie-accept:hover {
    background: var(--primary);
}

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

.cookie-reject:hover {
    background: #1e293b;
}

.disclaimer-box {
    background: #fef3c7;
    border-left: 4px solid var(--accent);
    padding: 24px 28px;
    margin: 60px 0;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 12px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #78350f;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        width: 100%;
        padding: 60px 24px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
    }

    .offset-grid,
    .form-wrapper-offset,
    .about-content-staggered,
    .contact-layout {
        flex-direction: column;
    }

    .offset-col-narrow,
    .offset-col-wide,
    .form-intro,
    .form-container,
    .about-text-block,
    .about-image-cluster,
    .contact-info-block,
    .contact-map-offset {
        width: 100%;
        padding-left: 0;
    }

    .service-card-offset:nth-child(even),
    .service-card-offset:nth-child(odd) {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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