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

:root {
    --primary: #2C5F7C;
    --secondary: #89A7B8;
    --accent: #D4A76A;
    --dark: #1A1A1A;
    --light: #F5F5F5;
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.ad-disclosure {
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

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

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

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

.hero-section {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-asymmetric {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.hero-content {
    flex: 1;
    padding: 60px 40px 60px 80px;
    position: relative;
    z-index: 2;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
}

.hero-image-main {
    position: absolute;
    right: -50px;
    top: 50px;
    width: 520px;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
}

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

.hero-accent-box {
    position: absolute;
    left: 40px;
    bottom: 80px;
    width: 280px;
    padding: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
}

h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 800;
}

h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--dark);
    font-weight: 700;
}

h3 {
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 600;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 35px;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #234A5E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 124, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
}

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

.section-offset {
    padding: 100px 0;
    position: relative;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.asymmetric-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

.column-main {
    flex: 1.4;
}

.column-side {
    flex: 1;
    position: relative;
    top: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.price-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 20px;
    margin-top: 15px;
}

.offset-image-block {
    position: relative;
    margin: 80px 0;
}

.offset-image-block img {
    width: 100%;
    max-width: 700px;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 15px -15px 0 var(--accent);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 320px;
}

.floating-card-1 {
    top: -40px;
    right: 50px;
    transform: rotate(-2deg);
}

.floating-card-2 {
    bottom: -30px;
    left: -30px;
    transform: rotate(3deg);
}

.stats-overlay {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--secondary);
}

.form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    transform: rotate(-1deg);
}

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

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

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

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

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

footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--accent);
}

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

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

.footer-column a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--secondary);
    font-size: 14px;
}

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

.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-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

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

.btn-accept:hover {
    background: #C49555;
}

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark);
}

.testimonial-block {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 50px;
    border-radius: 12px;
    margin: 60px 0;
    position: relative;
    transform: rotate(-1.5deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 16px;
}

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

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    height: 400px;
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.info-block p {
    color: #4A4A4A;
    line-height: 1.6;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4A4A4A;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #4A4A4A;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-box {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.about-split {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--accent);
}

@media (max-width: 968px) {
    .hero-asymmetric,
    .asymmetric-grid,
    .contact-grid,
    .about-split {
        flex-direction: column;
    }

    .column-side {
        top: 0;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-image-main {
        position: static;
        width: 100%;
        transform: none;
    }

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