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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

.split-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.hero-right {
    overflow: hidden;
}

.intro-split {
    display: flex;
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-left {
    overflow: hidden;
}

.intro-right {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-right p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.services-section {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-height: 400px;
}

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

.service-content,
.service-image {
    flex: 1;
}

.service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.service-image {
    overflow: hidden;
}

.testimonial-split {
    display: flex;
    background: #ecf0f1;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 5rem 4rem;
}

.testimonial-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.testimonial {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

.testimonial-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.testimonial-right p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    background: #34495e;
    color: #ffffff;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

.form-right {
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    background: #f8f9fa;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.selected-service-display {
    background: #3498db;
    color: #ffffff;
    padding: 1.2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.selected-service-display p {
    margin: 0;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dfe6e9;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 4rem;
    background: #fff9e6;
    border-top: 3px solid #f39c12;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

.disclaimer-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.split-footer {
    background: #2c3e50;
    color: #ffffff;
}

.footer-main {
    display: flex;
    padding: 3rem 4rem;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-left h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-left p {
    color: #bdc3c7;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.footer-bottom {
    padding: 1.5rem 4rem;
    background: #1a252f;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

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

.thanks-left,
.thanks-right {
    flex: 1;
}

.thanks-left {
    background: #27ae60;
    color: #ffffff;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-left p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e8f8f5;
}

.thanks-right {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.thanks-right h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.thanks-right a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.thanks-right a:hover {
    background: #2980b9;
}

.contact-info-split {
    display: flex;
}

.contact-info-left,
.contact-info-right {
    flex: 1;
    padding: 5rem 4rem;
}

.contact-info-left {
    background: #ecf0f1;
}

.contact-info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-info-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #34495e;
}

.page-header {
    padding: 4rem 4rem 2rem;
    background: #f8f9fa;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.page-content {
    padding: 3rem 4rem;
    max-width: 1000px;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.page-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .split-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .testimonial-split,
    .form-split,
    .footer-main,
    .thanks-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-right,
    .form-left,
    .form-right,
    .testimonial-left,
    .testimonial-right,
    .service-content,
    .thanks-left,
    .thanks-right,
    .contact-info-left,
    .contact-info-right {
        padding: 3rem 2rem;
    }

    .hero-left h1,
    .thanks-left h1 {
        font-size: 2rem;
    }

    .services-section,
    .page-content,
    .page-header {
        padding: 3rem 2rem;
    }
}