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

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background: #1a2332;
    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 20px;
}

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

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-section {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a2332;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 36px;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #e85a28;
    transform: translateY(-2px);
}

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

.content-wrapper.narrow {
    max-width: 800px;
}

.intro-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a2332;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-grid {
    padding: 90px 20px;
    background: #ffffff;
}

.services-grid h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a2332;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a2332;
}

.service-info p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 18px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
}

.trust-section {
    padding: 90px 20px;
    background: #1a2332;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #ffffff;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #cbd5e0;
}

.text-link {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #e85a28;
}

.trust-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #2d3748;
}

.testimonials-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a2332;
}

.testimonial {
    background: #ffffff;
    padding: 36px;
    margin-bottom: 28px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 14px;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #1a2332;
}

.form-section {
    padding: 90px 20px;
    background: #ffffff;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a2332;
}

.form-section > .content-wrapper > p {
    text-align: center;
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 48px;
}

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

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

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

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

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

.submit-button:hover {
    background: #e85a28;
}

.form-consent {
    font-size: 13px;
    color: #6c757d;
    margin-top: 16px;
    text-align: center;
}

.form-consent a {
    color: #ff6b35;
    text-decoration: none;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: #1a2332;
    color: #cbd5e0;
    padding: 60px 20px 24px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    margin-bottom: 12px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    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: 32px;
    flex-wrap: wrap;
}

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

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

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

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

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

.cookie-btn.reject {
    background: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #2d3748;
}

.page-header {
    background: #1a2332;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
}

.about-intro {
    padding: 80px 20px;
    background: #ffffff;
}

.lead-text {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a2332;
}

.values-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #ff6b35;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
}

.team-section {
    padding: 90px 20px;
    background: #ffffff;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a2332;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.team-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e9ecef;
}

.equipment-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

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

.equipment-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.cta-section-alt {
    padding: 90px 20px;
    background: #ff6b35;
    text-align: center;
}

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

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

.cta-section-alt .cta-button {
    background: #ffffff;
    color: #ff6b35;
}

.cta-section-alt .cta-button:hover {
    background: #f8f9fa;
}

.services-detailed {
    padding: 80px 20px;
}

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

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

.service-detail-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

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

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin: 24px 0 20px;
}

.service-link {
    display: inline-block;
    color: #1a2332;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #ff6b35;
}

.pricing-note {
    padding: 60px 20px;
    background: #f8f9fa;
}

.pricing-note h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a2332;
}

.pricing-note p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
}

.contact-info-section {
    padding: 80px 20px;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2332;
}

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

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

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

.email-text {
    color: #1a2332;
    font-weight: 600;
}

.contact-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e9ecef;
}

.location-info {
    padding: 80px 20px;
    background: #f8f9fa;
}

.location-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a2332;
}

.location-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-section {
    padding: 120px 20px;
    background: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a2332;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 24px;
    color: #4a5568;
}

.service-info {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #6c757d;
}

.thanks-actions {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.legal-content {
    padding: 60px 20px 80px;
    background: #ffffff;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a2332;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

img {
    object-fit: cover;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

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

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

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

    .contact-image {
        height: 300px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}