* {
    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: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.cta-nav-btn {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-nav-btn:hover {
    background: #2980b9;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.hero-cta {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s;
}

.hero-cta:hover {
    background: #229954;
}

.hero-image {
    flex: 1;
    background: #e8ecef;
}

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

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

.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section-intro h2 {
    font-size: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.section-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

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

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.service-image-container {
    flex: 1;
    background: #e8ecef;
}

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

.service-info {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.all-services-link {
    text-align: center;
    margin-top: 60px;
}

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

.all-services-link a:hover {
    background: #1a252f;
}

.booking-section {
    background: #f8f9fa;
    padding: 90px 40px;
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-info p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

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

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

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

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

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

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

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

.submit-btn {
    width: 100%;
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 90px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 45px;
}

.trust-item {
    flex: 1;
    padding: 40px 35px;
    background: #f8f9fa;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #b8c4d0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #3d5267;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b8c4d0;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px !important;
    color: #8a99a8 !important;
    line-height: 1.5;
    max-width: 900px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    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;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.cookie-actions a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.cookie-actions a:hover {
    text-decoration: underline;
}

.page-header {
    background: #f8f9fa;
    padding: 70px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 46px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-header p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    gap: 50px;
}

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

.service-detail-image {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

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

.service-detail-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

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

.service-book-btn {
    margin-top: 24px;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s;
}

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

.pricing-info {
    background: #f8f9fa;
    padding: 50px 40px;
    text-align: center;
}

.pricing-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.pricing-info p {
    font-size: 16px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-hero {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 44px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

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

.value-item {
    flex: 1 1 45%;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-split {
    display: flex;
    gap: 60px;
}

.approach-image {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.equipment-section {
    background: #f8f9fa;
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.equipment-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.equipment-section p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.commitment-section {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.commitment-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-hero {
    background: #f8f9fa;
    padding: 70px 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 46px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 18px;
    color: #5a6c7d;
}

.contact-main {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-split-layout {
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.info-item {
    margin-bottom: 45px;
}

.info-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.info-note {
    font-size: 14px !important;
    color: #7f8c9a !important;
    margin-top: 8px;
}

.hours-table {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e1e4e8;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    opacity: 0.6;
}

.day {
    font-weight: 500;
    color: #2c3e50;
}

.time {
    color: #5a6c7d;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.contact-map-block {
    flex: 1;
}

.map-placeholder {
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.directions-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.directions-info p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 14px;
}

.booking-reminder {
    background: #f8f9fa;
    padding: 60px 40px;
    text-align: center;
}

.booking-reminder h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.booking-reminder p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 28px;
}

.cta-button {
    padding: 16px 36px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #229954;
}

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

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

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 50px;
    line-height: 1.7;
}

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

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.step-item {
    padding: 16px 0;
    border-bottom: 1px solid #e1e4e8;
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.step-item:last-child {
    border-bottom: none;
}

.step-item strong {
    color: #2c3e50;
}

.selected-service-box {
    background: #e8f5e9;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.selected-service-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.selected-service-box p {
    font-size: 16px;
    color: #27ae60;
    font-weight: 500;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

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

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

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

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

.contact-reminder {
    padding-top: 30px;
    border-top: 1px solid #e1e4e8;
}

.contact-reminder p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-page {
    padding: 60px 40px;
}

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

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

.last-updated {
    font-size: 14px;
    color: #7f8c9a;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .service-card,
    .service-card.reverse,
    .form-container-split,
    .trust-grid,
    .about-split,
    .approach-split,
    .contact-split-layout,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

    .section-intro h2 {
        font-size: 32px;
    }

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

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }
}