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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2c5f7f;
}

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
    max-width: 580px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #2c5f7f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #234d66;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 90px 70px;
    background: #ffffff;
}

.intro-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #3a3a3a;
}

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

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-centered h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #5a5a5a;
}

.service-grid-alt {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7f;
    margin-bottom: 25px;
}

.select-service {
    padding: 14px 32px;
    background: #2c5f7f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.select-service:hover {
    background: #234d66;
    transform: translateY(-2px);
}

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    font-size: 17px;
    color: #2a2a2a;
    position: relative;
    padding-left: 30px;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7f;
    font-weight: 700;
}

.form-right {
    flex: 1;
}

.consultation-form {
    background: #f8f9fa;
    padding: 45px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2a2a2a;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f7f;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c5f7f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.approach-split {
    display: flex;
    background: #1a2a35;
    color: #ffffff;
}

.approach-content {
    flex: 1.2;
    padding: 90px 70px;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #d5dde3;
}

.approach-stats {
    flex: 1;
    background: #0f1b24;
    padding: 90px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #4a9bc7;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #b5c4cf;
    line-height: 1.5;
}

.main-footer {
    background: #0a0a0a;
    color: #c5c5c5;
    padding: 70px 0 30px;
}

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

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

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 13px;
    line-height: 1.7;
    color: #8a8a8a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.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-actions {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background: #2c5f7f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #234d66;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.cookie-banner.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-container-split,
    .approach-split {
        flex-direction: column;
    }

    .service-card-split.reverse {
        flex-direction: column;
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 42px;
    }

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

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