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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    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;
    margin: 0;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-accept {
    background: #4a9eff;
    color: #fff;
}

.btn-accept:hover {
    background: #3a8eef;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: #fff;
    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: #1a1a1a;
    text-decoration: none;
}

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

.header-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.header-right a:hover {
    color: #4a9eff;
}

.ad-notice {
    font-size: 0.85rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

.intro-image {
    flex: 1;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background: #fafafa;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.services-grid {
    padding: 5rem 0;
    background: #fff;
}

.section-header-full {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-header-full h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-full p {
    font-size: 1.15rem;
    color: #666;
}

.service-card-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 0;
}

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

.service-image {
    flex: 1;
    background: #e8e8e8;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
    background: #f9f9f9;
}

.service-card-split:nth-child(even) .service-info {
    background: #fff;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
    display: block;
}

.btn-select {
    padding: 0.9rem 1.8rem;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.form-section-split {
    display: flex;
    min-height: 650px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.form-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-display {
    background: #f0f4ff;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #667eea;
}

.service-display .label {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-bottom: 0.3rem;
}

.service-display #serviceName {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.testimonials-split {
    padding: 5rem 0;
    background: #fff;
}

.testimonial-item {
    display: flex;
    min-height: 300px;
    margin-bottom: 0;
}

.testimonial-item.reverse {
    flex-direction: row-reverse;
}

.testimonial-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5rem;
    background: #fafafa;
}

.testimonial-item:nth-child(even) .testimonial-text {
    background: #f0f4ff;
}

.testimonial-text p {
    font-size: 1.4rem;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
}

.footer-split {
    background: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 3rem;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #4a9eff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 1.5rem 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom p:last-child {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.thanks-split {
    display: flex;
    min-height: 80vh;
}

.thanks-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.thanks-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.thanks-details {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.thanks-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-details p {
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.content-split {
    display: flex;
    min-height: 80vh;
}

.content-narrow {
    flex: 2;
    padding: 4rem 5rem;
    background: #fff;
}

.content-narrow h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-narrow h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-narrow ul, .content-narrow ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-narrow li {
    margin-bottom: 0.8rem;
    color: #444;
    line-height: 1.7;
}

.sidebar-split {
    flex: 1;
    background: #f5f5f5;
    padding: 4rem 3rem;
}

.sidebar-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.sidebar-box p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .hero-split, .intro-split, .service-card-split, .form-section-split, .content-split, .thanks-split, .testimonial-item {
        flex-direction: column;
    }

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

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

    .hero-left h1 {
        font-size: 2.5rem;
    }

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