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

.ad-notice {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a90e2;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #34495e;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.intro-block {
    background-color: #f8f9fa;
    padding: 80px 24px;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.services-showcase {
    background-color: #ffffff;
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 20px 16px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    margin: 0 20px 16px;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    border-radius: 0;
}

.select-service:hover {
    background-color: #2980b9;
}

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

.booking-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

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

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

.benefits-list {
    list-style: none;
    margin-top: 24px;
}

.benefits-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #444;
}

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

.booking-form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-note {
    font-size: 12px;
    color: #7f8c8d;
    text-align: center;
}

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

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

.why-us-section {
    background-color: #ffffff;
    padding: 80px 24px;
}

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

.features-row {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 280px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 24px 24px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #4a90e2;
}

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

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

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

.cookie-content p {
    color: #ffffff;
    font-size: 14px;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

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

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

.about-content {
    background-color: #ffffff;
    padding: 80px 24px;
}

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

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

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

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

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

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

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

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

.equipment-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.services-detail {
    padding: 40px 24px 80px;
}

.services-detail h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-detail > .content-wrapper p {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

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

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

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

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

.service-includes li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.price-tag {
    font-size: 26px;
    font-weight: bold;
    color: #27ae60;
}

.service-detail-card img {
    width: 350px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

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

.cta-section h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

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

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

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

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

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

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

.additional-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

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

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.thanks-container h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.order-summary {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
    text-align: left;
}

.order-summary h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.order-summary p {
    font-size: 15px;
    color: #555;
    margin-bottom: 6px;
}

.next-steps {
    text-align: left;
    margin-bottom: 32px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.return-btn {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.legal-content {
    padding: 80px 24px;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.update-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .hero-overlay p {
        font-size: 16px;
    }

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

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

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

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

    .service-detail-card img {
        width: 100%;
        height: 250px;
    }

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

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