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

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

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

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

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

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 70px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.ad-label {
    font-size: 0.75rem;
    color: #94a3b8;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-section {
    position: relative;
    height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(30, 58, 138, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-overlay p {
    color: #e2e8f0;
    font-size: 1.3rem;
    max-width: 700px;
}

.intro-section {
    padding: 80px 0;
    background: #f8fafc;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1e293b;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #475569;
}

.services-preview {
    padding: 100px 0;
    background: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e293b;
}

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

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

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

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

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.service-info p {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e40af;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background: #1e40af;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #1e3a8a;
    transform: scale(1.02);
}

.btn-secondary {
    display: inline-block;
    background: #64748b;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s, transform 0.2s;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #475569;
    transform: scale(1.02);
}

.why-us-section {
    padding: 100px 0;
    background: #f1f5f9;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1e293b;
}

.split-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #475569;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #334155;
    font-size: 1.05rem;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
    font-size: 1.3rem;
}

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

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

.booking-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.booking-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    color: #64748b;
    font-size: 1.05rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: #1e40af;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #1e3a8a;
    transform: scale(1.01);
}

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

.trust-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.testimonials-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.testimonial p {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    color: #1e40af;
    font-weight: 600;
    font-style: normal;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fef3c7;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #713f12;
    line-height: 1.7;
}

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

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #60a5fa;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #60a5fa;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.cookie-btn.accept:hover {
    background: #1e3a8a;
    transform: scale(1.02);
}

.cookie-btn.reject {
    background: #64748b;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #475569;
    transform: scale(1.02);
}

.page-header {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #e2e8f0;
}

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

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

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

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

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.service-description p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #475569;
    line-height: 1.7;
}

.pricing-block {
    margin-top: 25px;
    padding: 20px;
    background: #eff6ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 1rem;
    color: #64748b;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e40af;
}

.cta-section {
    padding: 80px 0;
    background: #f1f5f9;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.cta-section p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.about-content {
    padding: 60px 0;
}

.about-intro {
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1e293b;
}

.about-intro p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.about-image-section {
    margin-bottom: 60px;
}

.about-image-section img {
    width: 100%;
    border-radius: 8px;
}

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

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1e293b;
}

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

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e40af;
}

.value-item p {
    color: #475569;
    line-height: 1.7;
}

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

.team-section h2,
.equipment-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1e293b;
}

.team-section p,
.equipment-section p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
    background: #f1f5f9;
}

.approach-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1e293b;
}

.approach-section p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.contact-info-section {
    padding: 60px 0;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1e293b;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e40af;
}

.info-block p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.info-note {
    background: #eff6ff;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.info-note p {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
}

.location-section {
    padding: 60px 0;
    background: #f8fafc;
}

.location-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1e293b;
}

.location-section p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.service-confirmation {
    margin: 30px 0;
}

.service-selected {
    font-size: 1.2rem;
    color: #1e293b;
    background: #eff6ff;
    padding: 15px;
    border-radius: 6px;
    display: inline-block;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1e293b;
}

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

.next-steps ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #475569;
    font-size: 1.05rem;
}

.next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
}

.thanks-actions {
    margin-top: 40px;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.updated {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #334155;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #475569;
    line-height: 1.7;
}

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

.legal-page ul li {
    margin-bottom: 10px;
    color: #475569;
    line-height: 1.7;
}

.legal-page a {
    color: #1e40af;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

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

    .split-image {
        width: 100%;
        min-height: 300px;
    }

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

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

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

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

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

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