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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffffff;
    color: #2c2c2c;
}

.btn-accept:hover {
    background: #e6e6e6;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #0066cc;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: #f8f9fa;
}

.hero-text-content {
    max-width: 550px;
}

.hero-text-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.intro-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.services-stacked {
    padding: 5rem 3rem;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    min-height: 400px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

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

.service-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

.select-service {
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #333333;
    transform: translateY(-2px);
}

.booking-section {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.booking-summary {
    flex: 0 0 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
    border: 1px solid #e0e0e0;
}

.booking-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.booking-summary p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.booking-form {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.booking-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #333333;
}

.trust-split {
    display: flex;
    min-height: 500px;
}

.trust-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
}

.trust-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.cta-final {
    padding: 6rem 3rem;
    background: #0066cc;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.footer-split {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 3rem 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.page-hero {
    padding: 5rem 3rem 3rem;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.2rem;
    color: #666;
}

.services-detailed {
    padding: 3rem;
}

.service-full {
    margin-bottom: 4rem;
}

.service-split {
    display: flex;
    min-height: 500px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image-large {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

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

.service-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.price-badge {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0066cc;
    background: #e6f2ff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

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

.service-info ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.service-full.alternate {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.about-split {
    display: flex;
    min-height: 500px;
}

.about-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.values-section {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.team-split {
    display: flex;
    min-height: 500px;
}

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

.team-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.team-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.approach-section {
    padding: 5rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.fleet-split {
    display: flex;
    min-height: 500px;
}

.fleet-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.fleet-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.fleet-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.fleet-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.cta-section-alt {
    padding: 5rem 3rem;
    background: #0066cc;
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section-alt p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    min-height: 500px;
    padding: 4rem 3rem;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.additional-info {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.additional-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-page {
    padding: 5rem 3rem;
    min-height: 500px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-main {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.thanks-step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.thanks-step p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-service-info {
    background: #e6f2ff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-service-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-service-info p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #333333;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

.thanks-contact {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-contact p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 3rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5rem 0 0.8rem;
    color: #1a1a1a;
}

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

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #004499;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .service-split,
    .about-split,
    .team-split,
    .trust-split,
    .fleet-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .intro-image,
    .intro-content,
    .service-image,
    .service-details,
    .service-image-large,
    .service-info,
    .about-content,
    .about-image,
    .team-content,
    .team-image,
    .trust-content,
    .trust-image,
    .fleet-content,
    .fleet-image,
    .contact-info,
    .contact-map {
        min-height: 300px;
    }

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

    .booking-summary {
        flex: 1;
    }

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

    .values-grid,
    .info-cards {
        flex-direction: column;
    }

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

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