* {
    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;
}

.ad-disclosure {
    background-color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #d5d9dc;
}

.main-nav {
    background-color: #1a1a2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
}

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #2c3e50;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-statement {
    padding: 90px 40px;
    background-color: #ecf0f1;
}

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

.statement-container h2 {
    font-size: 36px;
    margin-bottom: 22px;
    color: #1a1a2e;
    font-weight: 700;
}

.statement-container p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

.services-preview {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #f8f9fa;
}

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

.service-image {
    flex: 1;
    background-color: #dfe4e8;
    min-height: 380px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2c3e50;
}

.booking-section {
    padding: 90px 40px;
    background-color: #1a1a2e;
}

.booking-container {
    max-width: 720px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.booking-header p {
    font-size: 17px;
    color: #d5d9dc;
}

.booking-form {
    background-color: #ffffff;
    padding: 50px;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

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

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

.trust-indicators {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

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

.trust-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 700;
}

.trust-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a1a2e;
    color: #d5d9dc;
    padding: 60px 40px 30px;
}

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

.footer-section {
    flex: 1;
}

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

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b8bdc1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    text-align: center;
    font-size: 13px;
    color: #8a9199;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.6;
    margin-top: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 24px 30px;
    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;
    gap: 30px;
}

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

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

.cookie-btn {
    padding: 12px 26px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.85;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 680px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
}

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.thanks-message {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #ecf0f1;
    padding: 24px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #2c3e50;
}

.thanks-note {
    font-size: 15px;
    color: #777;
    margin-bottom: 32px;
}

.thanks-note a {
    color: #3498db;
    text-decoration: none;
}

.thanks-note a:hover {
    text-decoration: underline;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.page-header h1 {
    font-size: 46px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 70px;
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: stretch;
    background-color: #f8f9fa;
}

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

.service-detail-image {
    flex: 1;
    background-color: #dfe4e8;
    min-height: 450px;
}

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

.service-detail-content {
    flex: 1;
    padding: 45px;
}

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

.price-highlight {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 24px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding-left: 26px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    color: #2c3e50;
}

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

.service-cta {
    display: inline-block;
    padding: 13px 28px;
    background-color: #1a1a2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #2c3e50;
}

.cta-booking {
    padding: 80px 40px;
    background-color: #3498db;
    text-align: center;
}

.cta-booking-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-booking-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-button-large:hover {
    background-color: #c0392b;
}

.about-hero {
    background-color: #1a1a2e;
    padding: 90px 40px;
    text-align: center;
}

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

.about-hero-content p {
    font-size: 19px;
    color: #d5d9dc;
}

.about-story {
    padding: 90px 40px;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.3;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.story-image {
    flex: 1;
    background-color: #dfe4e8;
    min-height: 420px;
}

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

.values-section {
    padding: 90px 40px;
    background-color: #ecf0f1;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.equipment-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

.equipment-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.equipment-image {
    flex: 1;
    background-color: #dfe4e8;
    min-height: 450px;
}

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

.equipment-text {
    flex: 1;
}

.equipment-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a2e;
    font-weight: 700;
}

.equipment-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
    color: #555;
}

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

.equipment-list li {
    padding-left: 28px;
    margin-bottom: 14px;
    position: relative;
    font-size: 15px;
    color: #2c3e50;
}

.equipment-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 22px;
    font-weight: 700;
}

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

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a2e;
    font-weight: 700;
}

.approach-content {
    max-width: 820px;
    margin: 0 auto 50px;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #555;
}

.team-image {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #dfe4e8;
    min-height: 480px;
}

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

.commitment-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

.commitment-content {
    max-width: 820px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a2e;
    font-weight: 700;
}

.commitment-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #555;
}

.cta-visit {
    padding: 80px 40px;
    background-color: #1a1a2e;
    text-align: center;
}

.cta-visit-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-visit-content p {
    font-size: 18px;
    color: #d5d9dc;
    margin-bottom: 30px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #2980b9;
}

.contact-header {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.contact-header h1 {
    font-size: 46px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-header p {
    font-size: 18px;
    color: #d5d9dc;
}

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

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #1a1a2e;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 36px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    background-color: #ecf0f1;
    padding: 24px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #f8f9fa;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.contact-directions {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.contact-directions h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a2e;
    font-weight: 700;
}

.directions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
}

.direction-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
}

.direction-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 700;
}

.direction-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.contact-booking-reminder {
    padding: 80px 40px;
    background-color: #3498db;
    text-align: center;
}

.booking-reminder-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.booking-reminder-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.cta-button-contact {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-button-contact:hover {
    background-color: #c0392b;
}

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a1a2e;
    font-weight: 700;
}

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

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

.legal-container ul {
    margin-bottom: 24px;
    padding-left: 28px;
}

.legal-container ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid #dfe4e8;
    font-size: 15px;
}

.cookie-table th {
    background-color: #ecf0f1;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .service-card-split,
    .story-layout,
    .equipment-layout,
    .contact-layout,
    .service-detail-layout {
        flex-direction: column;
    }

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

    .trust-grid,
    .values-grid,
    .directions-grid,
    .footer-content {
        flex-direction: column;
    }

    .hero-content h1,
    .about-hero-content h1,
    .page-header h1 {
        font-size: 36px;
    }

    .nav-menu {
        gap: 18px;
    }

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

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