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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 30px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept, .btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

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

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

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-minimal {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2a2a2a;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 40px;
}

.hero-content-center h1 {
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.intro-statement {
    padding: 120px 0;
    background: #f9f9f9;
}

.large-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
    color: #2a2a2a;
}

.visual-break {
    padding: 0;
}

.image-feature img {
    width: 100%;
    height: 70vh;
    display: block;
}

.services-preview {
    padding: 140px 0;
}

.services-preview h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
}

.service-list-minimal {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 28px;
    font-weight: 400;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.select-service-btn {
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service-btn:hover {
    background: #333;
}

.booking-form-section {
    padding: 100px 0;
    background: #f9f9f9;
    display: none;
}

.booking-form-section.show {
    display: block;
}

.booking-form-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 50px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

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

.trust-statement {
    padding: 100px 0;
}

.testimonial-minimal blockquote {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    color: #2a2a2a;
    border-left: 3px solid #1a1a1a;
    padding-left: 40px;
}

.testimonial-minimal cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.image-statement {
    padding: 0;
}

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

.content-half {
    flex: 1;
}

.content-half img {
    width: 100%;
    height: 100%;
}

.centered-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: #f9f9f9;
}

.centered-text h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 25px;
}

.centered-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.disclaimer-section {
    padding: 80px 0;
    background: #f0f0f0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

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

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

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

.page-hero-minimal {
    padding: 100px 0 60px;
    background: #f9f9f9;
}

.page-hero-minimal h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
}

.about-intro {
    padding: 80px 0;
}

.about-story {
    padding: 60px 0 100px;
}

.story-block, .values-block {
    margin-bottom: 80px;
}

.story-block h2, .values-block h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

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

.image-block {
    margin: 60px 0;
}

.image-block img {
    width: 100%;
    height: 500px;
}

.value-items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

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

.team-section, .fleet-section {
    padding: 60px 0;
}

.team-section h2, .fleet-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

.team-section p, .fleet-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.team-image img, .fleet-image img {
    width: 100%;
    height: 450px;
}

.commitment-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.commitment-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

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

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

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

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 400px;
}

.service-info {
    flex: 1;
}

.service-header-detail {
    margin-bottom: 25px;
}

.service-header-detail h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}

.price-large {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

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

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

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.service-note {
    padding: 60px 0;
    background: #f9f9f9;
}

.note-text {
    font-size: 16px;
    color: #666;
    text-align: center;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.note-small {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

.contact-message {
    margin-top: 60px;
    padding: 40px;
    background: #f9f9f9;
}

.contact-message p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-message a {
    color: #1a1a1a;
    text-decoration: underline;
}

.map-section {
    padding: 60px 0;
}

.contact-notes {
    padding: 60px 0;
}

.contact-notes h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 25px;
}

.contact-notes p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 120px 0;
    background: #f9f9f9;
}

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

.thanks-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
}

.thanks-details {
    margin: 40px 0;
    padding: 30px;
    background: #ffffff;
    border-left: 3px solid #1a1a1a;
}

.thanks-details p {
    font-size: 17px;
    color: #555;
}

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

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    padding: 16px 40px;
    border: 1px solid #1a1a1a;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.next-steps {
    padding: 80px 0;
}

.next-steps h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
}

.steps-list {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

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

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

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

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

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

.update-date {
    margin-top: 50px;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .container-wide, .container-narrow {
        padding: 0 20px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .large-text {
        font-size: 24px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .centered-text {
        padding: 40px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .steps-list {
        flex-direction: column;
    }

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

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