* {
    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;
    padding-top: 2.5rem;
}

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    backdrop-filter: blur(10px);
    display: none;
}

.cookie-banner:not(.hidden) {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

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

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

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 0.5rem 2rem;
    font-size: 0.75rem;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
}

.navbar {
    position: fixed;
    top: 2.5rem;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 100;
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #2c5f2d;
}

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

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

.nav-menu a:hover {
    color: #2c5f2d;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 5px 0;
    transition: 0.3s;
}

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    z-index: 2;
    padding-right: 3rem;
}

.hero-heading {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtext {
    font-size: 1.4rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

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

.cta-hero:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -100px;
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background-color: #2a2a2a;
}

.intro-irregular {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 4rem;
    background: #f8f8f8;
}

.intro-text-block {
    flex: 1.2;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2a2a2a;
}

.intro-visual-element {
    flex: 1;
    position: relative;
    top: -40px;
}

.intro-visual-element img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #3a3a3a;
}

.services-offset {
    padding: 7rem 5% 5rem;
    background: #ffffff;
}

.services-header-angled {
    max-width: 600px;
    margin-bottom: 4rem;
    margin-left: 8%;
}

.services-header-angled h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.services-header-angled p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.service-cards-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card-shift-left {
    margin-right: 10%;
}

.card-shift-right {
    margin-left: 10%;
}

.card-image-wrap {
    flex: 0 0 300px;
}

.card-image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #2a2a2a;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.card-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

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

.btn-select:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.booking-form-section {
    padding: 6rem 5%;
    background: #f8f8f8;
}

.form-container-asymmetric {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    gap: 4rem;
    align-items: stretch;
}

.form-visual-side {
    flex: 1;
    position: relative;
    top: 60px;
}

.form-visual-side img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #3a3a3a;
}

.form-content-side {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-content-side > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #d4af37;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 1.2rem 2rem;
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.trust-block-irregular {
    padding: 7rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-wrap h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
}

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

.trust-point {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.point-offset-1 {
    margin-left: 0;
    max-width: 70%;
}

.point-offset-2 {
    margin-left: auto;
    max-width: 70%;
}

.point-offset-3 {
    margin-left: 15%;
    max-width: 70%;
}

.point-offset-4 {
    margin-left: auto;
    max-width: 70%;
}

.trust-point h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #d4af37;
}

.trust-point p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.footer-asymmetric {
    background: #0f0f0f;
    color: #b0b0b0;
    padding: 4rem 5% 2rem;
}

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

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

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

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

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.email-text {
    margin-top: 1rem;
    color: #b0b0b0;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.7;
    color: #909090;
}

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

.page-header-simple {
    padding: 8rem 5% 4rem;
    background: #f8f8f8;
    margin-top: 2.5rem;
}

.page-header-simple h1 {
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 1200px;
    margin: 0 auto;
}

.page-content-standard {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.page-content-standard h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.page-content-standard h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.page-content-standard p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #2a2a2a;
}

.page-content-standard ul,
.page-content-standard ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content-standard li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #d4af37;
}

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #2a2a2a;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

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

.thanks-content a:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.hero-split,
.value-proposition,
.about-story,
.approach-section,
.team-section,
.contact-content,
.directions-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.split-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #2a2a2a;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

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

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.feature-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

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

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

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c5f2d;
    color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.fleet-showcase,
.services-detailed {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.fleet-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #2a2a2a;
}

.fleet-card .card-content {
    padding: 2rem;
}

.fleet-card .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fleet-card .card-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.price-display {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

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

.select-service:hover {
    background: #1a4620;
}

.booking-section,
.booking-form-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.booking-form {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #2c5f2d;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.btn-submit:hover {
    background: #1a4620;
}

.trust-indicators {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.container-narrow h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #2c5f2d;
    font-weight: 600;
}

.page-hero {
    padding: 8rem 5% 5rem;
    background: #f8f8f8;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-content-centered p {
    font-size: 1.3rem;
    color: #4a4a4a;
}

.values-section,
.commitment-section,
.inquiry-section,
.cta-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.value-block,
.contact-detail-block {
    margin-bottom: 3rem;
}

.value-block h3,
.contact-detail-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c5f2d;
}

.value-block p,
.contact-detail-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.note-text {
    font-size: 0.95rem !important;
    color: #707070 !important;
    font-style: italic;
}

.service-item {
    margin-bottom: 5rem;
}

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

.specs-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.specs-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 1.05rem;
}

.specs-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 1.5rem;
}

.booking-cta {
    padding: 4rem 5%;
    background: #f8f8f8;
    text-align: center;
}

.thanks-section {
    padding: 6rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.confirmation-details {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.booking-reference {
    background: #e8f5e9;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.booking-reference strong {
    color: #2c5f2d;
}

.contact-support {
    margin: 2rem 0;
}

.contact-support h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.footer {
    background: #0f0f0f;
    color: #b0b0b0;
    padding: 4rem 5% 2rem;
}

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

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

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

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

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.7;
    color: #909090;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    font-size: 0.9rem;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    body {
        padding-top: 6rem;
    }

    .navbar {
        top: 2.5rem;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

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

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

    .content-block h2 {
        font-size: 2rem;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .timeline-steps {
        gap: 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}