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

.hidden {
    display: none;
}

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

.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;
    min-width: 300px;
}

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

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

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

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

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-label {
    font-size: 11px;
    color: #95a5a6;
    border: 1px solid #ecf0f1;
    padding: 4px 10px;
    border-radius: 3px;
    background-color: #f8f9fa;
}

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

.nav-right a:hover {
    color: #e74c3c;
}

.hero-split {
    display: flex;
    min-height: 600px;
    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: 25px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a6c7d;
    max-width: 550px;
}

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

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.hero-right {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

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

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

.intro-image {
    flex: 1;
    background-color: #e8ebed;
    overflow: hidden;
    height: 100%;
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
}

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

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

.services-overview {
    padding: 80px 60px;
    background-color: #ffffff;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 350px;
    align-items: stretch;
    border-bottom: 1px solid #ecf0f1;
}

.service-card-split:last-child {
    border-bottom: none;
}

.service-image {
    flex: 1;
    background-color: #e8ebed;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #1a252f;
    transform: translateX(5px);
}

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

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

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-left p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
}

.form-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

#consultationForm {
    width: 100%;
    max-width: 500px;
}

#consultationForm input,
#consultationForm select,
#consultationForm textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

#consultationForm input:focus,
#consultationForm select:focus,
#consultationForm textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.trust-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-split {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    font-size: 14px;
    color: #ecf0f1;
}

footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.footer-left p {
    font-size: 15px;
    color: #95a5a6;
}

.footer-links {
    display: flex;
    gap: 25px;
}

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

.footer-links a:hover {
    color: #e74c3c;
}

.footer-disclaimer {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
    padding-top: 20px;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-split,
    .footer-split,
    .testimonials-split {
        flex-direction: column;
    }

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

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

    .nav-right {
        gap: 15px;
    }

    .hero-left,
    .intro-text,
    .service-info,
    .form-left,
    .form-right,
    .services-overview {
        padding: 40px 30px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .intro-text h2,
    .form-left h2,
    .trust-content h2 {
        font-size: 28px;
    }

    .services-overview h2 {
        font-size: 32px;
    }
}