* {
    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: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background: #45a049;
}

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

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: flex-end;
}

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

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c3e50;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c3e50;
}

.ad-label {
    font-size: 11px;
    color: #888;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    white-space: nowrap;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

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

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-text {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 36px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    background: #e0e0e0;
}

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

.intro-section {
    padding: 100px 60px;
    background: #ffffff;
}

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

.intro-left {
    flex: 1;
}

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

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

.intro-right {
    flex: 0 0 480px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    padding: 120px 60px 100px;
    background: #fafafa;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.services-intro {
    font-size: 18px;
    color: #666;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 0 0 calc(55% - 12px);
}

.card-medium {
    flex: 0 0 calc(45% - 12px);
}

.card-small {
    flex: 0 0 calc(33.333% - 16px);
}

.service-icon {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    margin-bottom: 24px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

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

.service-select {
    padding: 12px 24px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: #1a252f;
}

.form-section {
    padding: 100px 60px;
    background: #2c3e50;
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 15%;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-field input[readonly] {
    background: #f5f5f5;
    color: #2c3e50;
    font-weight: 600;
}

.form-submit {
    padding: 16px 32px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.form-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 60px;
    background: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.trust-blocks {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    gap: 80px;
    justify-content: space-between;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 16px;
}

.thanks-service {
    display: inline-block;
    padding: 12px 24px;
    background: #f0f0f0;
    border-radius: 6px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0;
}

.back-home {
    display: inline-block;
    padding: 14px 32px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.page-header {
    background: #2c3e50;
    padding: 80px 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 60px;
}

.page-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 40px 0 20px;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0 16px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-info-block {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin-bottom: 8px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.service-item h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-item .price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 16px 0;
}

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

.service-item ul {
    margin-top: 20px;
}

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

    .hero-content-offset {
        flex: 1;
        padding: 60px 40px;
    }

    .hero-visual-block {
        min-height: 400px;
        clip-path: none;
    }

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

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .intro-wrapper {
        flex-direction: column;
    }

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

    .trust-blocks {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .main-header {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .main-nav {
        gap: 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .form-container-offset {
        margin: 0 auto;
        padding: 40px 30px;
    }

    .page-content {
        padding: 0 30px;
    }
}