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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.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: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

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

.split-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 3px;
}

.header-right nav {
    display: flex;
    gap: 24px;
}

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

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

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

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

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-image {
    flex: 1;
    background: #ccc;
    min-height: 500px;
}

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

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

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #ddd;
}

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

.service-card p {
    margin: 0 20px 12px;
    color: #666;
    font-size: 15px;
}

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

.service-card .select-service {
    margin: 20px;
    padding: 12px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.service-card .select-service.selected {
    background: #28a745;
}

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

.form-container {
    flex: 1;
    padding: 60px 50px;
    background: #fff;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.form-container input,
.form-container select,
.form-container textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    padding: 14px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-visual {
    flex: 1;
    background: #ccc;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    padding: 80px 40px;
    background: #1a1a1a;
    color: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

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

.split-footer {
    display: flex;
    padding: 60px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
}

.footer-left {
    flex: 1;
}

.footer-left p {
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
}

.footer-right {
    flex: 1;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-nav a {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.disclaimer {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    max-width: 600px;
}

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

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

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

    .service-card {
        width: 100%;
    }

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