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

.sidebar-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 40px 30px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-block {
    margin-bottom: 50px;
}

.brand-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.brand-tagline {
    font-size: 14px;
    color: #a8b2c1;
    line-height: 1.4;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 20px;
}

.sidebar-nav a {
    color: #d1d8e0;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: #4a90e2;
}

.sidebar-ad-notice {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #718096;
    font-size: 12px;
    line-height: 1.5;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    width: calc(100% - 280px);
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #2c3e50;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 60px 80px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
    color: #e0e0e0;
}

.intro-narrative {
    padding: 80px 80px 60px;
    background-color: #ffffff;
}

.narrative-content {
    max-width: 900px;
}

.narrative-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

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

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #4a90e2;
    margin: 0 24px 24px;
}

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

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

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

.trust-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.booking-section {
    padding: 80px 80px;
    background-color: #f8f9fa;
}

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

.booking-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a2e;
}

.booking-container > p {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.booking-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    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: #4a90e2;
}

.form-group textarea {
    resize: vertical;
}

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

.submit-button:hover {
    background-color: #357abd;
}

.footer {
    background-color: #1a1a2e;
    color: #d1d8e0;
    padding: 60px 80px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #a8b2c1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    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;
    font-size: 15px;
    line-height: 1.6;
    color: #d1d8e0;
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #357abd;
}

.cookie-btn.reject {
    background-color: #5a6c7d;
    color: #ffffff;
}

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

.page-header {
    padding: 60px 80px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

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

.about-content,
.legal-content,
.contact-content {
    padding: 60px 80px 80px;
    background-color: #ffffff;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.about-intro img {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    background-color: #e9ecef;
    height: auto;
    object-fit: cover;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.team-section,
.equipment-section {
    margin-bottom: 60px;
}

.team-section h2,
.equipment-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.team-section p,
.equipment-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
}

.team-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e9ecef;
    object-fit: cover;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e9ecef;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

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

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

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
    display: block;
}

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

.service-detail-content ul {
    margin: 20px 0 20px 24px;
}

.service-detail-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.services-cta {
    padding: 60px 80px 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 36px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #357abd;
}

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

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

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

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

.contact-note {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 30px;
}

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

.contact-map-placeholder {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

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

.direction-method {
    flex: 1;
}

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

.direction-method p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.legal-text {
    max-width: 900px;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-text ul {
    margin: 16px 0 16px 24px;
}

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

.legal-update {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
    font-style: italic;
    color: #718096;
}

.thanks-section {
    padding: 100px 80px;
    background-color: #ffffff;
    min-height: 70vh;
}

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

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

.thanks-icon svg {
    display: inline-block;
}

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

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

.thanks-info {
    margin-bottom: 40px;
}

.selected-service {
    font-size: 17px;
    padding: 16px 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #2c3e50;
}

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

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a2e;
    text-align: center;
}

.next-steps ol {
    margin-left: 24px;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #5a6c7d;
}

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

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

.btn-primary {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #357abd;
}

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

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

@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
        padding: 30px 20px;
    }

    .main-content {
        margin-left: 240px;
        width: calc(100% - 240px);
    }

    .hero-overlay {
        padding: 40px 50px;
    }

    .hero-overlay h1 {
        font-size: 38px;
    }

    .intro-narrative,
    .services-preview,
    .trust-section,
    .booking-section,
    .footer,
    .page-header,
    .about-content,
    .legal-content,
    .contact-content,
    .services-detailed,
    .services-cta,
    .thanks-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .trust-content-wrapper,
    .about-intro,
    .service-detail {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
        padding: 30px 20px;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .hero-overlay {
        padding: 30px 30px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .intro-narrative,
    .services-preview,
    .trust-section,
    .booking-section,
    .footer,
    .page-header,
    .about-content,
    .legal-content,
    .contact-content,
    .services-detailed,
    .services-cta,
    .thanks-section {
        padding: 40px 30px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .trust-content-wrapper,
    .about-intro,
    .service-detail,
    .contact-grid,
    .directions-content {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}
