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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.hero-right {
    flex: 1;
    background: #d4d4d4;
}

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

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980b9;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background: #bdc3c7;
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

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

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

.services-highlight {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-highlight h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

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

.service-image {
    flex: 1;
    background: #bdc3c7;
}

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

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

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

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

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

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1;
    min-width: 220px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

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

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.form-section {
    padding: 100px 0;
    background: #2c3e50;
}

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

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

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

.form-left-content p {
    font-size: 18px;
    color: #ecf0f1;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.benefit-item {
    color: #3498db;
    font-size: 16px;
    font-weight: 600;
    padding-left: 25px;
    position: relative;
}

.benefit-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
}

.form-right-content {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #3498db;
}

.btn-submit {
    background: #3498db;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.footer-main {
    background: #1a252f;
    color: #ecf0f1;
    padding: 80px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

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

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.6;
}

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

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

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.thanks-container .cta-primary {
    align-self: center;
}

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

.contact-left {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.contact-left h1,
.contact-right h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-right h2 {
    color: #2c3e50;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3498db;
    font-weight: 600;
}

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

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

.about-hero {
    padding: 100px 0;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    padding: 100px 0;
}

.content-split {
    display: flex;
    margin-bottom: 80px;
}

.content-split.reverse {
    flex-direction: row-reverse;
}

.content-split-image {
    flex: 1;
    background: #bdc3c7;
}

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

.content-split-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.content-split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

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

.services-page-hero {
    padding: 100px 0;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
}

.services-page-hero p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 100px 0;
    background: #f8f9fa;
}

.legal-page {
    padding: 100px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

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

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

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

    .nav-main {
        flex-direction: column;
        gap: 15px;
    }

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