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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a252f;
    --white: #fff;
    --border-color: #ddd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background-color: var(--bg-dark);
    padding: 8px 20px;
    text-align: center;
}

.ad-disclosure {
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.9;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image,
.features-image,
.about-image,
.team-image,
.service-image {
    position: relative;
    overflow: hidden;
}

.hero-image img,
.features-image img,
.about-image img,
.team-image img,
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--white);
}

.services-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-card .price {
    display: block;
    padding: 15px 20px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-section {
    background-color: var(--bg-light);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-form-container {
    background-color: var(--white);
    padding: 40px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.info-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.info-columns {
    display: flex;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.info-column {
    flex: 1;
}

.info-column h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-column p {
    color: var(--text-light);
    line-height: 1.7;
}

.trust-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.trust-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonials {
    display: flex;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

.page-hero {
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-text h2,
.team-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p,
.team-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
}

.equipment-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.equipment-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.equipment-section > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.equipment-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.equipment-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.equipment-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.equipment-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-banner {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner .btn-primary {
    background-color: var(--white);
    color: var(--secondary-color);
}

.cta-banner .btn-primary:hover {
    background-color: var(--bg-light);
}

.services-full {
    padding: 60px 20px;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-intro p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detailed-card {
    display: flex;
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-detailed-card.split-section {
    min-height: auto;
}

.service-detailed-card .split-left,
.service-detailed-card .split-right {
    padding: 40px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.booking-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.booking-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.booking-section > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-main {
    padding: 60px 20px;
}

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

.contact-info-section,
.contact-details-section {
    flex: 1;
    min-width: 300px;
}

.contact-info-section h2,
.contact-details-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.contact-block h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    color: var(--text-light);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.directions-box {
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.directions-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.directions-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.map-placeholder {
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-contact {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

.cta-contact h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-contact p {
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.thanks-icon {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.thanks-container > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-info {
    text-align: left;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-info ol {
    padding-left: 20px;
}

.thanks-info li {
    padding: 8px 0;
    color: var(--text-light);
}

.thanks-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.legal-container h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-date {
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-section li {
    color: var(--text-light);
    padding: 5px 0;
    line-height: 1.7;
}

.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-section ul li {
    padding: 8px 0;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

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

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom p:last-child {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

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

    .hero-image,
    .features-image,
    .about-image,
    .team-image,
    .service-image {
        min-height: 300px;
    }

    .service-detailed-card {
        flex-direction: column;
    }

    .service-detailed-card.split-section.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .info-columns {
        flex-direction: column;
        gap: 30px;
    }

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

    .form-row {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

    .footer-section {
        min-width: 100%;
    }
}

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

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