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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.active {
    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;
    font-size: 14px;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2980b9;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    gap: 28px;
}

.nav-main a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-image-container {
    flex: 1;
    position: relative;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 36px;
}

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

.cta-primary:hover {
    background-color: #3498db;
    transform: translateY(-2px);
}

.intro-narrative {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.narrative-left {
    flex: 1.2;
}

.narrative-left h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

.narrative-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.narrative-right {
    flex: 1;
    background-color: #ecf0f1;
}

.narrative-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.why-different {
    background-color: #2c3e50;
    padding: 100px 60px;
}

.different-content h2 {
    font-size: 40px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.different-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.different-item {
    flex: 1;
    min-width: 250px;
}

.different-item h3 {
    font-size: 22px;
    color: #3498db;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.services-preview-split {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
}

.services-preview-left {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-preview-left h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.services-preview-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 28px;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #2980b9;
}

.services-preview-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    padding: 24px 24px 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    padding: 0 24px 16px;
}

.service-card .price {
    display: block;
    font-size: 20px;
    color: #3498db;
    font-weight: 700;
    padding: 0 24px 24px;
}

.testimonials-offset {
    background-color: #ecf0f1;
    padding: 80px 60px;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 36px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.consultation-form-section {
    display: flex;
    padding: 100px 60px;
    gap: 70px;
    background-color: #ffffff;
}

.form-split-left {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-split-left h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.form-split-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.form-note {
    font-size: 14px;
    color: #7f8c8d;
}

.form-split-right {
    flex: 1.1;
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 4px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

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

.trust-indicators {
    background-color: #2c3e50;
    padding: 80px 60px;
}

.trust-content h2 {
    font-size: 36px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
    text-align: center;
}

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

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

.footer-section {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

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

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #888888;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-narrative,
    .services-preview-split,
    .consultation-form-section {
        flex-direction: column;
    }

    .header-split {
        padding: 20px 30px;
    }

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

    .hero-content h1 {
        font-size: 38px;
    }

    .intro-narrative,
    .services-preview-split,
    .consultation-form-section {
        padding: 60px 30px;
    }

    .why-different,
    .trust-indicators {
        padding: 60px 30px;
    }

    .footer-main {
        padding: 40px 30px 20px;
    }
}

@media (max-width: 768px) {
    .header-right {
        flex-direction: column;
        gap: 16px;
    }

    .nav-main {
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .different-grid {
        flex-direction: column;
    }

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