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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 60px 40px;
    gap: 60px;
}

.hero-left {
    flex: 1;
    padding-right: 40px;
}

.hero-right {
    flex: 1;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-left p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #2c3e50;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.info-split {
    display: flex;
    align-items: center;
    padding: 100px 40px;
    gap: 80px;
    background: #f8f9fa;
}

.info-split.reverse {
    flex-direction: row-reverse;
    background: #ffffff;
}

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

.info-left img, .info-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.info-right h2, .info-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.info-right p, .info-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}

.cta-text {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.cta-text:hover {
    color: #2980b9;
}

.highlight-block {
    padding: 100px 40px;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.highlight-block h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.stat-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 0 1 250px;
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 12px;
}

.stat-item p {
    font-size: 18px;
    line-height: 1.5;
}

.content-split {
    display: flex;
    align-items: center;
    padding: 100px 40px;
    gap: 80px;
}

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

.content-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.content-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.services-showcase {
    padding: 100px 40px;
    background: #f8f9fa;
}

.services-showcase h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.service-split-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-split {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.service-info {
    flex: 1;
}

.service-visual {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

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

.service-info ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-info ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-top: 12px;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.testimonial-block {
    padding: 100px 40px;
    background: #ffffff;
}

.testimonial-split {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.testimonial-content {
    flex: 1;
    max-width: 500px;
}

.testimonial-content blockquote {
    font-size: 22px;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonial-content cite {
    font-size: 16px;
    color: #777;
    font-style: normal;
}

.form-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    color: #555;
}

.split-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 36px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.final-cta-split {
    display: flex;
    align-items: center;
    padding: 100px 40px;
    gap: 60px;
    background: #2c3e50;
    color: #ffffff;
}

.cta-left {
    flex: 1;
}

.cta-right {
    flex: 1;
    text-align: center;
}

.cta-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-left p {
    font-size: 18px;
    line-height: 1.7;
}

.btn-large {
    display: inline-block;
    padding: 20px 48px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 19px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52,152,219,0.3);
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-section a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    padding: 16px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(52,152,219,0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52,152,219,0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    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: #1a1a1a;
}

.values-section {
    padding: 100px 40px;
    background: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.cta-block {
    padding: 100px 40px;
    background: #f8f9fa;
    text-align: center;
}

.cta-block h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-block p {
    font-size: 20px;
    color: #555;
    margin-bottom: 36px;
}

.services-detailed {
    padding: 80px 40px;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

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

.service-detail-info {
    flex: 1;
}

.service-detail-visual {
    flex: 1;
}

.service-detail-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-detail-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 28px;
    margin-bottom: 12px;
}

.service-detail-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-info ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-info ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.service-detail-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

.service-price {
    font-size: 38px;
    font-weight: 800;
    color: #2c3e50;
}

.service-duration {
    font-size: 16px;
    color: #777;
}

.contact-content {
    padding: 80px 40px;
}

.contact-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

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

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.response-time {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.response-time p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.legal-content {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.legal-update {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 60vh;
}

.thanks-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-content {
    flex: 1;
}

.thanks-visual {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 22px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 20px;
}

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

#service-confirmation {
    font-weight: 600;
    color: #2c3e50;
    font-size: 17px;
    margin-top: 24px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 36px;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.next-steps {
    padding: 80px 40px;
    background: #f8f9fa;
}

.next-steps h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split, .info-split, .content-split, .service-split, .service-detail-split, .contact-split, .thanks-container, .final-cta-split {
        flex-direction: column;
        gap: 40px;
    }

    .hero-split, .info-split.reverse, .service-split.reverse, .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left, .info-left, .info-right, .content-left, .content-right {
        padding-right: 0;
    }

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

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

    .nav-right {
        gap: 20px;
    }

    .stat-grid {
        gap: 40px;
    }

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

    .form-container {
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}