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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.main-header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    padding: 5px 10px;
    border: 1px solid #34495e;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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 {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

.hero-section {
    position: relative;
    background-color: #ecf0f1;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

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

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    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-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #e74c3c;
}

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

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.trust-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.form-section {
    padding: 80px 0;
    background-color: #34495e;
    color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #95a5a6;
    border-radius: 5px;
    font-size: 16px;
    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: #3498db;
}

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

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

.why-us-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.page-hero {
    padding: 80px 0;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: #bdc3c7;
}

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

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

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

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

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

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

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

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

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

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.price-label {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.services-cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.about-content-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.about-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

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

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

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

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

.equipment-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.equipment-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.equipment-text {
    flex: 1;
}

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

.equipment-list {
    list-style: none;
    padding-left: 0;
}

.equipment-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

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

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
}

.team-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.team-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #ecf0f1;
}

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

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

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

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 35px;
}

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

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

.contact-image-block {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

.directions-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.directions-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.thanks-service-info {
    padding: 25px;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #2c3e50;
}

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

.thanks-next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    list-style: decimal;
    padding-left: 25px;
}

.steps-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

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

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.legal-page-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-page-section ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-page-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
    font-style: italic;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

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

    .about-content-wrapper {
        flex-direction: column;
    }

    .equipment-layout {
        flex-direction: column;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }
}