* {
    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: #333;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-cookie {
    background: #27ae60;
    color: #fff;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.main-nav a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 12px;
    color: #999;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #229954;
}

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

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

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

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

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

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

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

.split-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 50px;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #777;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 25px;
}

.split-standard {
    display: flex;
}

.process-list {
    list-style: none;
    margin: 30px 0;
}

.process-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.cta-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #27ae60;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #27ae60;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-secondary:hover {
    background: #27ae60;
    color: #fff;
}

.testimonials-split {
    padding: 80px 50px;
    background: #f8f9fa;
}

.testimonials-split h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.testimonial-item {
    flex: 1 1 300px;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

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

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

.form-section {
    padding: 80px 50px;
    background: #fff;
}

.form-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.form-left {
    flex: 1;
}

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

.form-left p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

.service-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.disclaimer-section {
    padding: 40px 50px;
    background: #f0f0f0;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.footer-split {
    background: #2c3e50;
    color: #fff;
    padding: 60px 50px 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

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

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

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #27ae60;
}

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

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

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.legal-page p,
.legal-page li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.contact-left {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

.contact-left h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-info {
    margin-top: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-right {
    flex: 1;
    background: #e8e8e8;
}

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

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .form-split,
    .contact-page-split {
        flex-direction: column;
    }

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

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

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

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

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

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