* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
}

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f3f4f6;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
}

.hero-section {
    position: relative;
    height: 600px;
    background-color: #1a1a1a;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.intro-content {
    text-align: center;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 19px;
    color: #4b5563;
    line-height: 1.8;
}

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 360px;
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.service-info {
    padding: 28px;
}

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

.service-info p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
}

.service-select {
    width: 100%;
    padding: 12px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 90px 0;
    background-color: #eff6ff;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.trust-content > p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 48px;
    line-height: 1.7;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.feature-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.booking-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.booking-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.booking-section > p {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 48px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #e5e7eb;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.why-section {
    padding: 100px 0;
    background-color: #1f2937;
    color: #ffffff;
}

.why-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.why-item {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
}

.why-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.why-item p {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
}

.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    font-size: 14px;
    margin-bottom: 8px;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
}

.page-header {
    background-color: #1f2937;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 19px;
    color: #d1d5db;
}

.about-intro {
    padding: 90px 0;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    padding: 90px 0;
    background-color: #f9fafb;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.team-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.team-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.equipment-section {
    padding: 90px 0;
    background-color: #eff6ff;
}

.equipment-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.equipment-section p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.location-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-link {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #1d4ed8;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin: 24px 0 20px;
}

.service-detail-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.contact-info {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.contact-email {
    font-weight: 600;
    color: #1a1a1a;
}

.contact-note {
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
}

.hours-list {
    margin-bottom: 16px;
}

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

.hours-row .day {
    font-weight: 600;
    color: #374151;
}

.hours-row .time {
    color: #6b7280;
}

.contact-directions {
    padding: 80px 0;
    background-color: #f9fafb;
}

.contact-directions h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.direction-method {
    flex: 1;
    min-width: 280px;
}

.direction-method h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.direction-method p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 0;
    background-color: #1f2937;
    color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 17px;
    color: #d1d5db;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #1d4ed8;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f9fafb;
    min-height: 70vh;
}

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

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

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

.thanks-message {
    font-size: 19px;
    color: #4b5563;
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid #2563eb;
}

.service-confirmation p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 8px;
    text-align: left;
}

.thanks-next {
    font-size: 17px;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-note {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.thanks-btn {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.thanks-btn.primary {
    background-color: #2563eb;
    color: #ffffff;
}

.thanks-btn.primary:hover {
    background-color: #1d4ed8;
}

.thanks-btn.secondary {
    background-color: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.thanks-btn.secondary:hover {
    background-color: #eff6ff;
}

.legal-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin: 48px 0 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #374151;
}

.legal-content p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: #4b5563;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .intro-content h2 {
        font-size: 28px;
    }

    .services-preview h2 {
        font-size: 32px;
    }

    .trust-content h2 {
        font-size: 28px;
    }

    .why-section h2 {
        font-size: 30px;
    }

    .booking-form {
        padding: 28px 20px;
    }

    .footer-container {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .team-content {
        flex-direction: column;
    }

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

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

    .directions-content {
        flex-direction: column;
    }

    .thanks-content h1 {
        font-size: 32px;
    }
}