* {
    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: #1a202c;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f7fafc;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #2d3748;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #2d3748;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #1a202c;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2d3748;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2d3748;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

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

.split-text {
    flex: 1;
    padding: 0 20px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.split-text ul {
    list-style: none;
    margin-top: 20px;
}

.split-text ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
}

.split-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d3748;
    font-weight: bold;
}

.split-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.split-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-preview {
    padding: 100px 40px;
    background-color: #f7fafc;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 380px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1a202c;
    font-weight: 600;
}

.service-card p {
    padding: 0 24px;
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 16px;
}

.price {
    padding: 0 24px;
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin: 24px 0;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    background-color: #2d3748;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 15px;
}

.select-service:hover {
    background-color: #1a202c;
}

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

.split-form {
    flex: 1;
    padding: 0 20px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.selected-service-display {
    background-color: #f7fafc;
    padding: 16px;
    border-radius: 6px;
    margin-top: 20px;
}

.trust-section {
    padding: 100px 40px;
    background-color: #f7fafc;
}

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

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #2d3748;
}

.cookie-btn.accept:hover {
    background-color: #f7fafc;
}

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

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    font-size: 13px;
    color: #718096;
    line-height: 1.6;
    text-align: center;
    background-color: #f7fafc;
}

.page-header {
    padding: 80px 40px 40px;
    text-align: center;
    background-color: #f7fafc;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #4a5568;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-card {
    margin-bottom: 80px;
}

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

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

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.process-step {
    background-color: #f7fafc;
    padding: 32px;
    border-radius: 8px;
    width: 260px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

.process-step p {
    font-size: 15px;
    color: #4a5568;
}

.equipment-section {
    padding: 100px 40px;
    background-color: #f7fafc;
}

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

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-card {
    background-color: #f7fafc;
    padding: 32px;
    border-radius: 8px;
    width: 260px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    color: #4a5568;
}

.about-intro {
    padding: 100px 40px;
    background-color: #ffffff;
}

.contact-main {
    padding: 100px 40px;
    background-color: #ffffff;
}

.contact-info {
    margin: 32px 0;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a202c;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-note {
    margin-top: 32px;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 6px;
    font-size: 15px;
    color: #4a5568;
}

.directions-section {
    padding: 80px 40px;
    background-color: #f7fafc;
}

.directions-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a202c;
    font-weight: 700;
}

.directions-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.direction-option {
    flex: 1;
}

.direction-option h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

.direction-option p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
}

.cta-section {
    padding: 100px 40px;
    text-align: center;
    background-color: #2d3748;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e2e8f0;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f7fafc;
    min-height: 600px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #38a169;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.next-steps {
    text-align: left;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
    font-size: 16px;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d3748;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a202c;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

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

    .directions-content {
        flex-direction: column;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        gap: 16px;
    }

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

    .split-text h2,
    .page-header h1 {
        font-size: 32px;
    }

    .services-preview h2,
    .process-section h2,
    .values-section h2,
    .trust-section h2 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

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