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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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: 14px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left {
    flex: 0 0 auto;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

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

.hero-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.hero-text-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-side h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-text-side p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.split-intro {
    display: flex;
    min-height: 500px;
}

.split-text-block {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.split-text-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.split-text-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.split-image-block {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.services-grid {
    padding: 100px 60px;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.split-process {
    display: flex;
    min-height: 550px;
}

.split-image-left {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-content-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.split-content-right h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.split-content-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

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

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-side {
    flex: 1;
}

.form-side h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

#selected-service-display {
    font-size: 16px;
    color: #27ae60;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #d5f4e6;
    border-radius: 4px;
    font-weight: 600;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.info-side {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.info-side h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefits-list li {
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.disclaimer-section {
    padding: 60px 60px;
    background-color: #fef9e7;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f39c12;
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #5a5a5a;
}

.footer-split {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 20px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.page-hero-split {
    padding: 100px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.cta-section-centered {
    padding: 100px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-section-centered p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.about-split-section {
    display: flex;
    min-height: 550px;
}

.about-content-side {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.about-content-side h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.about-content-side p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.about-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.values-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.method-split-section {
    display: flex;
    min-height: 550px;
}

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

.method-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.method-content-side {
    flex: 1;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.method-content-side h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.method-content-side p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.equipment-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.equipment-content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.equipment-content-centered h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.equipment-content-centered p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

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

.contact-info-side {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-note {
    margin-top: 50px;
    padding: 25px;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

.contact-map-side {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.map-placeholder {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 40px;
}

.map-overlay p {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.access-info {
    padding: 40px;
    background-color: #f8f9fa;
}

.access-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.access-info p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.contact-additional {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.additional-content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.additional-content-centered h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.additional-content-centered p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-section {
    padding: 100px 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e;
}

.booking-summary {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.booking-summary h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.booking-summary p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-next-steps ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thanks-next-steps li {
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

@media (max-width: 1024px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .split-intro,
    .split-process,
    .about-split-section,
    .method-split-section,
    .service-detail-block,
    .contact-split-section {
        flex-direction: column;
    }

    .hero-image-side,
    .split-image-block,
    .split-image-left,
    .about-image-side,
    .method-image-side,
    .service-detail-image {
        min-height: 350px;
    }

    .form-container-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-cards-container {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-text-side h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

    .section-header-center h2,
    .values-section h2 {
        font-size: 32px;
    }

    .hero-split,
    .split-intro,
    .split-process,
    .about-split-section,
    .method-split-section,
    .services-detailed,
    .form-section,
    .values-section {
        padding: 60px 30px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}