* {
    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;
    overflow-x: hidden;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-disclosure {
    color: #95a5a6;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 0 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    background-color: #2c3e50;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: #95a5a6;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.intro-text {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ecf0f1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.section-header-centered {
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.services-preview {
    padding: 3rem 0 5rem;
    background-color: #fff;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    display: flex;
    border-bottom: 1px solid #ecf0f1;
}

.service-card:last-child {
    border-bottom: none;
}

.service-image {
    flex: 1;
    background-color: #bdc3c7;
    min-height: 350px;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.service-info h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-info .price {
    font-size: 2rem;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.btn-select-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.why-choose-split {
    display: flex;
    background-color: #f8f9fa;
}

.why-content {
    flex: 1;
    padding: 5rem 4rem;
}

.why-content h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 1rem 0;
    font-size: 1.15rem;
    color: #34495e;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 2rem;
    position: relative;
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-radius: 6px;
    margin-top: 2rem;
}

.why-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.form-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
}

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

.form-container h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    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;
}

.footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: #ecf0f1;
    margin: 0;
    flex: 1;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: center;
}

.about-content-split {
    display: flex;
    align-items: center;
    background-color: #fff;
}

.about-text {
    flex: 1;
    padding: 5rem 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

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

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

.values-split {
    display: flex;
    background-color: #f8f9fa;
}

.values-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.values-text {
    flex: 1;
    padding: 5rem 4rem;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 700;
}

.value-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.team-split {
    display: flex;
    align-items: center;
}

.team-content {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ecf0f1;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.team-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.team-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.equipment-section {
    padding: 4rem 2rem 5rem;
    background-color: #fff;
}

.equipment-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.equipment-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.equipment-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.equipment-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #ecf0f1;
}

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

.service-detail-image {
    flex: 1;
    background-color: #bdc3c7;
    min-height: 500px;
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-price {
    font-size: 2.5rem;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: #34495e;
    padding-left: 2rem;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.5rem;
}

.additional-services {
    padding: 4rem 2rem 5rem;
    background-color: #f8f9fa;
}

.additional-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.additional-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.additional-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.additional-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.cta-section-centered {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #3498db;
    color: #fff;
}

.cta-section-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section-centered p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section-centered .btn-primary {
    background-color: #fff;
    color: #3498db;
}

.cta-section-centered .btn-primary:hover {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.contact-info-split {
    display: flex;
    padding: 4rem 0;
}

.contact-details {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #bdc3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.map-placeholder {
    max-width: 500px;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.directions-split {
    display: flex;
    background-color: #fff;
}

.directions-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.directions-content {
    flex: 1;
    padding: 5rem 4rem;
}

.directions-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.direction-option {
    margin-bottom: 2.5rem;
}

.direction-option h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 700;
}

.direction-option p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.info-section-centered {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.info-section-centered h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.info-section-centered p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.service-requested {
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    padding: 4rem 2rem 5rem;
    background-color: #fff;
}

.steps-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.step-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 700;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-split,
    .intro-split,
    .why-choose-split,
    .about-content-split,
    .values-split,
    .team-split,
    .service-detail-split,
    .contact-info-split,
    .directions-split,
    .page-hero-split {
        flex-direction: column;
    }

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

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header-centered h2 {
        font-size: 2.2rem;
    }

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

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

@media (max-width: 768px) {
    .hero-content,
    .intro-text,
    .why-content,
    .about-text,
    .values-text,
    .team-content,
    .service-detail-content,
    .contact-details,
    .directions-content {
        padding: 3rem 2rem;
    }

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

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

    .section-header-centered h2 {
        font-size: 1.9rem;
    }

    .equipment-grid,
    .additional-grid,
    .steps-grid {
        flex-direction: column;
    }

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