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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #e74c3c;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.cta-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

.split-section {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.split-content {
    flex: 1;
    padding: 3rem 5%;
}

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

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.split-visual {
    flex: 1;
    height: 500px;
}

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

.services-preview {
    background: #f8f9fa;
    padding: 5rem 5%;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

.services-cta {
    text-align: center;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    margin-bottom: 2rem;
}

.feature-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-item p {
    margin: 0;
}

.testimonials-section {
    padding: 5rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.testimonials-split {
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

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

.testimonial .author {
    display: block;
    color: #e74c3c;
    font-weight: 600;
}

.form-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: #999;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.cta-submit {
    width: 100%;
    padding: 1rem;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-submit:hover {
    background: #c0392b;
}

.cta-bottom {
    text-align: center;
    padding: 5rem 5%;
    background: #ffffff;
}

.cta-bottom h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-bottom p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #aaa;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #e74c3c;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #c0392b;
}

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

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

.page-hero {
    text-align: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.values-section {
    padding: 5rem 5%;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.value-card p {
    color: #666;
}

.equipment-list {
    list-style: none;
    margin-top: 1.5rem;
}

.equipment-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.equipment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.services-detail {
    padding: 3rem 5%;
}

.service-item-split {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 4rem;
}

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

.service-detail-content {
    flex: 2;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #666;
}

.service-detail-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-detail-price {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e74c3c;
}

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

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.price-note {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.pricing-note {
    background: #fff3cd;
    padding: 2rem;
    border-left: 4px solid #ffc107;
    margin: 3rem 0;
}

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

.note-content p {
    margin-bottom: 0.8rem;
    color: #666;
}

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 3rem 5%;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-block a {
    color: #e74c3c;
    text-decoration: none;
}

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

.contact-note {
    font-size: 0.9rem;
    color: #999;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.location-info {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.location-info p {
    color: #666;
    margin-bottom: 0.8rem;
}

.contact-cta {
    text-align: center;
    padding: 4rem 5%;
    background: #f8f9fa;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-main {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.selected-service {
    font-weight: 600;
    color: #e74c3c;
    margin-top: 1.5rem;
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.next-steps {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step p {
    color: #666;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 5%;
}

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

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

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

.legal-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

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

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

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    color: #999;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-section {
        flex-direction: column;
    }

    .hero-visual,
    .split-visual {
        width: 100%;
        height: 400px;
    }

    .testimonials-split,
    .form-split,
    .contact-split,
    .steps-grid {
        flex-direction: column;
    }

    .service-item-split {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .split-content h2,
    .services-intro h2 {
        font-size: 2rem;
    }

    .service-card {
        min-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

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

    .thanks-actions a {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .split-content h2 {
        font-size: 1.6rem;
    }
}