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

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

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0066cc;
}

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8eef3;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #0052a3;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

.value-prop {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.value-image {
    flex: 1;
    background-color: #dde5ec;
}

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

.value-content {
    flex: 1;
}

.value-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.value-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-grid {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background-color: #ffffff;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 25px 20px;
    line-height: 1.7;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 25px 20px;
}

.service-card .select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: #0052a3;
}

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    padding: 15px 20px;
    background-color: #f0f4f8;
    border-left: 4px solid #0066cc;
    font-weight: 500;
    color: #333;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.service-display {
    padding: 14px;
    background-color: #fff;
    border: 2px solid #0066cc;
    border-radius: 5px;
    color: #0066cc;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0052a3;
}

.trust-section {
    padding: 80px 40px;
    background-color: #1a1a1a;
    color: #fff;
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.stat-label {
    font-size: 18px;
    color: #ccc;
}

.main-footer {
    background-color: #f0f2f5;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #0066cc;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    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;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #0066cc;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #0052a3;
}

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #444;
}

.page-header {
    padding: 80px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

.about-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #dde5ec;
}

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

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0066cc;
}

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

.expertise-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.expertise-image {
    flex: 1;
    background-color: #d4dce4;
}

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

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.expertise-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.expertise-content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.expertise-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.step-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 35px;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}

.step-item h3 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: #1a1a1a;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-item {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-detail-image {
    flex: 1;
    background-color: #d4dce4;
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin: 25px 0;
}

.cta-bottom {
    padding: 80px 40px;
    background-color: #0066cc;
    text-align: center;
    color: #fff;
}

.cta-bottom h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-bottom p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-bottom .cta-primary {
    background-color: #fff;
    color: #0066cc;
}

.cta-bottom .cta-primary:hover {
    background-color: #f0f0f0;
}

.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0066cc;
}

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

.response-time {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f4f8;
    border-left: 4px solid #0066cc;
}

.response-time p {
    font-size: 15px;
    color: #555;
}

.contact-map {
    flex: 1;
    background-color: #d4dce4;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.additional-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.additional-info h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-block {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #fff;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.service-confirmation {
    padding: 20px;
    background-color: #f0f4f8;
    border-radius: 6px;
    margin-bottom: 40px;
}

.selected-service-info {
    font-size: 17px;
    color: #333;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-num {
    width: 40px;
    height: 40px;
    background-color: #0066cc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-top: 5px;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-container,
    .form-split,
    .about-split,
    .expertise-split,
    .service-detail-item,
    .contact-grid {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        min-height: 50vh;
    }

    .nav-menu {
        gap: 20px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hero-left h1,
    .page-header h1 {
        font-size: 36px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .stats-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .hero-left,
    .value-prop,
    .services-grid,
    .form-section,
    .trust-section {
        padding: 60px 20px;
    }
}