* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}
@font-face {
    font-family: 'Teachers';
    src: url('../fonts/Teachers-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Teachers', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Top Bar */
.top-bar {
    background-color: #5a9b6a;
    color: white;
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social i {
    font-size: 18px;
    cursor: pointer;
}

/* Middle Header */
.middle-header {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5a9b6a 0%, #4a8a5a 100%);
    border: 3px solid #5a9b6a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    box-shadow: 0 4px 8px rgba(90, 155, 106, 0.3);
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid white;
    box-sizing: border-box;
    z-index: 1;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    position: relative;
    z-index: 0;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    letter-spacing: 3px;
    font-family: 'Teachers', serif;
}

.contact-info {
    text-align: right;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

/* Navigation Bar */
.main-nav {
    background-color: #1a1a1a;
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

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


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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #5a9b6a;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    cursor: pointer;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-selector .flag {
    font-size: 18px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option:first-child {
    border-radius: 5px 5px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 5px 5px;
}

.language-option span:last-child {
    font-size: 14px;
    font-weight: 500;
}

/* Split Hero Section */
.split-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.split-hero-left {
    background-color: #7fb3a8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.split-hero-right {
    background: linear-gradient(135deg, #5a8a7f 0%, #4a7a6f 100%);
    background-image: url('img/3.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.split-hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 138, 127, 0.8) 0%, rgba(74, 122, 111, 0.9) 100%);
}

.split-hero-logo {
    text-align: center;
    z-index: 1;
    position: relative;
}

.split-logo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-logo-icon i {
    font-size: 40px;
    color: #1a1a1a;
}

.split-logo-title {
    font-size: 48px;
    font-weight: bold;
    color: #1a1a1a;
    font-family: 'Teachers', serif;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.split-logo-subtitle {
    font-size: 14px;
    color: #333;
    letter-spacing: 1px;
    font-weight: 300;
}

.split-hero-title {
    font-size: 64px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
    text-align: center;
}

.split-hero-btn {
    background-color: transparent;
    color: #1a1a1a;
    padding: 15px 50px;
    border: 2px solid #1a1a1a;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
    position: relative;
    text-transform: uppercase;
}

.split-hero-btn:hover {
    background-color: #1a1a1a;
    color: white;
}

/* Hero Section */
.hero-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.eu-banners-image {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

.eu-funding-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Search Form */
.search-form-container {
    background-color: #e8e8e8;
    padding: 30px;
    border-radius: 5px;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 12px;
    border-radius: 3px;
}

.form-group i {
    color: #666;
    font-size: 18px;
}

.form-group select,
.form-group input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background: transparent;
    cursor: pointer;
}

.date-picker {
    cursor: pointer;
    position: relative;
}

.date-picker[readonly] {
    background-color: white;
    cursor: pointer;
}

.date-picker:focus {
    outline: none;
}

.form-group .fa-calendar {
    cursor: pointer;
    color: #1a1a1a;
    transition: color 0.2s ease;
    pointer-events: auto;
}

.form-group .fa-calendar:hover {
    color: #5a9b6a;
}

.form-group {
    cursor: default;
}

.form-group .date-picker {
    cursor: pointer;
}

.date-picker.calendar-open {
    border-color: #5a9b6a;
}

/* Flatpickr Calendar Styling */
.flatpickr-calendar {
    font-family: Teachers, sans-serif;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    z-index: 10000;
}

.flatpickr-calendar.open {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flatpickr-input {
    cursor: pointer !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #5a9b6a;
    border-color: #5a9b6a;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #4a8a5a;
    border-color: #4a8a5a;
}

.flatpickr-day.today {
    border-color: #5a9b6a;
}

.flatpickr-day.today:hover {
    background: #5a9b6a;
    color: white;
}

.flatpickr-months .flatpickr-month {
    color: #333;
}

.flatpickr-weekdays {
    background-color: #f5f5f5;
}

.flatpickr-weekday {
    color: #666;
    font-weight: 600;
}

.flatpickr-day:hover {
    background: #f0f0f0;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #ccc;
}

.flatpickr-day.flatpickr-disabled:hover {
    background: transparent;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-size: 14px;
    color: #333;
}

.search-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #333;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 40px;
    text-align: center;
}

.welcome-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
}

.owner-photo {
    text-align: center;
}

.owner-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.owner-name {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.owner-title {
    font-size: 14px;
    color: #666;
}

.welcome-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.welcome-text p {
    margin-bottom: 20px;
}

.quote {
    font-style: italic;
    color: #333;
    font-size: 18px;
    margin: 30px 0 !important;
}

.about-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.about-btn:hover {
    background-color: #333;
}

/* Mid-Page Banner */
.mid-banner {
    background-image: url('img/3.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay h2 {
    color: white;
    font-size: 42px;
    font-weight: bold;
    text-align: center;
}

/* Fleet Section */
.fleet-section {
    padding: 80px 0;
    background-color: white;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.fleet-btn-container {
    text-align: center;
    margin-bottom: 50px;
}

.explore-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.explore-btn:hover {
    background-color: #333;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.car-card {
    text-align: center;
}

.car-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.car-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.view-btn {
    background-color: #e8e8e8;
    color: #333;
    padding: 10px 30px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn.active {
    background-color: #1a1a1a;
    color: white;
}

.view-btn:hover {
    background-color: #333;
    color: white;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0 80px;
    background-color: #f5f5f5;
}

.benefits-intro-text {
    font-size: 16px;
    color: #333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-weight: 400;
}

.benefits-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.benefits-carousel {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    padding: 0 20px;
}

.benefit-card {
    min-width: calc(20% - 20px);
    flex: 0 0 calc(20% - 20px);
    background-color: white;
    padding: 40px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card i {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background-color: #1a1a1a;
}

.dot:hover {
    background-color: #888;
}

/* Booking Section */
.booking-section {
    background-image: url('img/4.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
}

.booking-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.2;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    min-width: 30px;
}

.step i {
    color: #5a9b6a;
    font-size: 20px;
}

.step p {
    flex: 1;
    font-size: 16px;
    color: #333;
    margin: 0;
}

.book-online-btn {
    background-color: #333;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.book-online-btn:hover {
    background-color: #1a1a1a;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 200px;
}

.footer-left {
    background-color: #5a9b6a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a9b6a;
    font-size: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid #e9ecef;
    overflow: hidden;
    position: relative;
}

.footer-logo-circle .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.footer-logo-text {
    text-align: center;
    color: white;
}

.footer-logo-text h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Teachers', serif;
    letter-spacing: 2px;
}

.footer-logo-text p {
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-right {
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 20px;
}

.footer-right h3 {
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.footer-rent-btn {
    background-color: transparent;
    color: white;
    padding: 12px 40px;
    border: 2px solid white;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-rent-btn:hover {
    background-color: white;
    color: #1a1a1a;
}

.footer-bottom {
    background-color: #000;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-section {
    color: white;
}

.footer-logo-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5a9b6a 0%, #4a8a5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(90, 155, 106, 0.3);
    border: 2px solid #4a8a5a;
    overflow: hidden;
    position: relative;
}

.footer-logo-large .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.footer-logo-section h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Teachers', serif;
    letter-spacing: 2px;
}

.footer-logo-section p {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 10px;
}

.tagline {
    font-size: 14px !important;
    color: white !important;
    margin-top: 15px !important;
    line-height: 1.6;
}

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

.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;
}

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

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

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    background-color: #ffffff49;
}

.payment-methods-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 12px;
    padding-top: 20px;
}

/* About Us Page Styles */
.about-hero-section {
    background-image: url('img/4.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay h1 {
    color: white;
    font-size: 64px;
    font-weight: bold;
    text-align: center;
}

.about-content-section {
    padding: 80px 0;
    background-color: white;
}

.about-main-title {
    font-size: 42px;
    font-weight: bold;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 60px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.about-left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.owner-photo-large {
    margin-bottom: 30px;
}

.owner-photo-large img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e8e8e8;
}

.contact-prompt {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-phone svg {
    width: 28px;
    height: 28px;
    color: #5a9b6a;
    flex-shrink: 0;
}

.facebook-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.facebook-icon-large:hover {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.4);
}

.facebook-icon-large svg {
    width: 40px;
    height: 40px;
    color: #3b5998;
    transition: color 0.3s ease;
}

.facebook-icon-large:hover svg {
    color: white;
}

.contact-us-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 250px;
}

.contact-us-btn:hover {
    background-color: #333;
}

.about-right-column {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.company-story p {
    margin-bottom: 20px;
}

.highlight-quote {
    font-size: 20px;
    font-style: italic;
    color: #1a1a1a;
    font-weight: 500;
    margin: 30px 0 !important;
    padding-left: 20px;
    border-left: 4px solid #5a9b6a;
}

.signature {
    margin-top: 40px;
    text-align: right;
}

.signature-text {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 5px !important;
    font-style: italic;
}

.signature-label {
    font-size: 14px;
    color: #666;
    margin: 0 !important;
}

.eu-funding-footer {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Benefits Page Styles */
.benefits-hero-section {
    background-image: url('img/4.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-hero-overlay h1 {
    color: white;
    font-size: 64px;
    font-weight: bold;
    text-align: center;
}

.benefits-content-section {
    padding: 80px 0;
    background-color: white;
}

.benefits-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.benefits-main-title {
    font-size: 48px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.benefits-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.benefits-underline {
    width: 100px;
    height: 3px;
    background-color: #5a9b6a;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.benefit-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(90, 155, 106, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-color: #5a9b6a;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: #5a9b6a;
    transition: all 0.3s ease;
}

.benefit-icon:hover svg {
    color: #4a8a5a;
    transform: scale(1.1);
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.benefits-right-column {
    position: sticky;
    top: 100px;
}

.benefits-image {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* Fleet Page Styles */
.fleet-hero-section {
    background-image: url('img/4.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-hero-overlay h1 {
    color: white;
    font-size: 64px;
    font-weight: bold;
    text-align: center;
}

.fleet-intro-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.fleet-intro-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.fleet-intro-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.car-detail-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.car-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.car-model-name {
    font-size: 48px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.car-group {
    font-size: 18px;
    color: #666;
}

.car-image-container {
    margin-bottom: 50px;
}

.car-main-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.car-features-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    min-width: 80px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-icon-item i {
    font-size: 24px;
    color: #5a9b6a;
}

.feature-icon-item span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.car-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.car-details-column h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #5a9b6a;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 15px;
    color: #555;
}

.features-list li span {
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

.prices-include-list {
    list-style: none;
    padding: 0;
}

.prices-include-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.prices-include-list li i {
    color: #5a9b6a;
    margin-top: 3px;
    flex-shrink: 0;
}

.booking-column {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fleet-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fleet-booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fleet-booking-form label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.fleet-booking-form select,
.fleet-booking-form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    color: #333;
    background-color: white;
}

.fleet-booking-form select:focus,
.fleet-booking-form input:focus {
    outline: none;
    border-color: #5a9b6a;
}

.fleet-search-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.fleet-search-btn:hover {
    background-color: #333;
}

.price-display {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 3px;
    text-align: center;
    margin-top: 10px;
}

.price-display p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: #5a9b6a;
}

.terms-section {
    padding: 80px 0;
    background-color: white;
}

.terms-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.terms-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.terms-list li {
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    padding-left: 10px;
}

.terms-list li strong {
    color: #1a1a1a;
    font-weight: bold;
}

.back-to-fleet {
    text-align: center;
    margin-top: 40px;
}

.back-to-fleet a {
    color: #5a9b6a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.back-to-fleet a:hover {
    color: #4a8a5a;
    text-decoration: underline;
}

/* Terms Page Styles */
.terms-hero-section {
    background-image: url('img/5.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(2px);
}

.terms-hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.terms-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/5.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    z-index: -1;
}

.terms-hero-overlay h1 {
    color: white;
    font-size: 64px;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
}

.terms-content-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.terms-page-title {
    font-size: 48px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.terms-page-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.terms-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    background-color: white;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    background-color: #1a1a1a;
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background-color 0.3s;
    user-select: none;
}

.accordion-header:hover {
    background-color: #333;
}

.accordion-header.active {
    background-color: #333;
}

.accordion-number {
    font-size: 24px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.accordion-title {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
}

.accordion-header i {
    font-size: 14px;
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
    background-color: #f9f9f9;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 25px;
}

.accordion-content p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.accordion-content ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.terms-disclaimer {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 40px;
    font-style: italic;
}

/* FAQ Page Styles */
.faq-hero-section {
    background-image: url('img/5.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.faq-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/5.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.1);
}

.faq-hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.faq-question-mark {
    position: absolute;
    left: 10%;
    font-size: 300px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    font-family: Teachers, sans-serif;
    z-index: 0;
}

.faq-hero-overlay h1 {
    color: white;
    font-size: 96px;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 2;
}

.faq-content-section {
    padding: 80px 0;
    background-color: white;
}

.faq-main-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    transition: background-color 0.3s;
    user-select: none;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question.active {
    background-color: #f5f5f5;
}

.faq-number {
    font-size: 24px;
    font-weight: bold;
    color: #5a9b6a;
    min-width: 40px;
    text-align: center;
}

.faq-question-text {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
}

.faq-question i {
    font-size: 20px;
    color: #5a9b6a;
    transition: transform 0.3s;
    min-width: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
    background-color: #f9f9f9;
}

.faq-answer.active {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.faq-contact-text {
    text-align: center;
    margin-top: 60px;
    font-size: 16px;
    color: #666;
}

.faq-contact-text a {
    color: #5a9b6a;
    text-decoration: none;
    font-weight: 500;
}

.faq-contact-text a:hover {
    text-decoration: underline;
}

/* Booking Page Styles */
.booking-hero-section {
    background-image: url('img/4.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-hero-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-hero-overlay h1 {
    color: white;
    font-size: 64px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 3px;
}

.booking-form-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(135, 206, 250, 0.1), rgba(135, 206, 250, 0.2));
    background-image: url('img/4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f5f5f5;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.online-booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-field {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.field-number {
    font-size: 24px;
    font-weight: bold;
    color: #5a9b6a;
    min-width: 40px;
    padding-top: 5px;
}

.field-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.form-select,
.date-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    background-color: white;
    transition: border-color 0.3s;
}

.form-select:focus,
.date-input:focus {
    outline: none;
    border-color: #5a9b6a;
}

select optgroup {
    font-weight: bold;
    font-size: 14px;
    color: #666;
    padding: 5px 0;
}

select option {
    font-weight: normal;
    padding: 8px 12px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.date-time-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-input {
    flex: 1;
}

.time-select {
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
    cursor: pointer;
}

.time-select:focus {
    outline: none;
    border-color: #5a9b6a;
}

.time-separator {
    font-size: 18px;
    font-weight: bold;
    color: #666;
}

.same-location-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.same-location-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.same-location-option label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    margin: 0;
}

.booking-search-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-search-btn:hover {
    background-color: #333;
}

/* Contact Page Styles */
.contact-hero-section {
    background-color: #7fb3a8;
    padding: 100px 0;
    text-align: center;
}

.contact-hero-section h1 {
    color: white;
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 2px;
}

.contact-content-section {
    padding: 80px 0;
    background-color: white;
}

.contact-main-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
}

.contact-intro-text {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-intro-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.contact-section-title {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    color: #5a9b6a;
    margin-top: 3px;
    min-width: 24px;
    flex-shrink: 0;
}

.contact-info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.facebook-link {
    margin-top: 20px;
}

.facebook-icon-link {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 89, 152, 0.3);
}

.facebook-icon-link svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.facebook-icon-link:hover {
    background: linear-gradient(135deg, #2d4373 0%, #1e2f4f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.4);
}

.contact-form-column {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input-group input,
.form-input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    background-color: white;
    font-family: Teachers, sans-serif;
    transition: border-color 0.3s;
}

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

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

.send-message-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.send-message-btn:hover {
    background-color: #333;
}

.map-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.map-title {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

/* Privacy Policy Page Styles */
.gdpr-hero-section {
    background-color: #1a1a1a;
    padding: 100px 0;
    text-align: center;
}

.gdpr-hero-section h1 {
    color: white;
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.privacy-content-section {
    padding: 80px 0;
    background-color: white;
}

.privacy-main-title {
    font-size: 48px;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.privacy-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-section-intro {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.privacy-content > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h4 {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.privacy-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-section ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

.privacy-section a {
    color: #5a9b6a;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-section strong {
    color: #1a1a1a;
    font-weight: bold;
}

/* Cookie Policy Page Styles */
.cookie-hero-section {
    background-image: url('img/5.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(2px);
}

.cookie-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.cookie-hero-section h1 {
    color: white;
    font-size: 64px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.cookie-content-section {
    padding: 80px 0;
    background-color: white;
}

.cookie-main-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.cookie-intro {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.cookie-section {
    margin-bottom: 40px;
}

.cookie-section h4 {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cookie-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.cookie-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.cookie-section ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

.cookie-section a {
    color: #5a9b6a;
    text-decoration: none;
}

.cookie-section a:hover {
    text-decoration: underline;
}

.cookie-section strong {
    color: #1a1a1a;
    font-weight: bold;
}

/* Mobile Menu Styles */
@media (max-width: 968px) {
    .main-nav .container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .language-selector {
        margin-top: 10px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .car-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-overlay h1 {
        font-size: 42px;
    }
    
    .about-main-title {
        font-size: 32px;
    }
    
    .benefits-main-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-right-column {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-carousel {
        gap: 20px;
        padding: 0 15px;
    }
    
    .benefit-card {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        padding: 30px 20px;
    }
    
    .benefit-card i {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .benefit-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .benefit-card p {
        font-size: 13px;
    }
    
    .benefits-carousel {
        gap: 20px;
    }
    
    .benefit-card {
        min-width: calc(33.333% - 14px);
        flex: 0 0 calc(33.333% - 14px);
    }
    
    .benefits-hero-overlay h1 {
        font-size: 42px;
    }
    
    .benefits-main-title {
        font-size: 36px;
    }
    
    .car-details-grid {
        grid-template-columns: 1fr;
    }
    
    .car-features-icons {
        gap: 15px;
    }
    
    .fleet-hero-overlay h1 {
        font-size: 42px;
    }
    
    .fleet-intro-title {
        font-size: 32px;
    }
    
    .car-model-name {
        font-size: 36px;
    }
    
    .terms-title {
        font-size: 32px;
    }
    
    .terms-hero-overlay h1 {
        font-size: 42px;
    }
    
    .terms-page-title {
        font-size: 36px;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-title {
        font-size: 16px;
    }
    
    .accordion-number {
        font-size: 20px;
        min-width: 25px;
    }
    
    .faq-hero-overlay h1 {
        font-size: 64px;
    }
    
    .faq-question-mark {
        font-size: 150px;
        left: 5%;
    }
    
    .faq-main-title {
        font-size: 32px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-number {
        font-size: 20px;
        min-width: 30px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
    
    .booking-hero-overlay h1 {
        font-size: 42px;
    }
    
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .form-field {
        flex-direction: column;
        gap: 10px;
    }
    
    .field-number {
        min-width: auto;
    }
    
    .date-time-group {
        flex-wrap: wrap;
    }
    
    .date-input {
        width: 100%;
    }
    
    .contact-hero-section h1 {
        font-size: 42px;
    }
    
    .contact-main-title {
        font-size: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-column {
        padding: 30px 20px;
    }
    
    .map-title {
        font-size: 28px;
    }
    
    .gdpr-hero-section h1 {
        font-size: 42px;
    }
    
    .privacy-main-title {
        font-size: 36px;
    }
    
    .privacy-section-intro {
        font-size: 24px;
    }
    
    .privacy-section h4 {
        font-size: 20px;
    }
    
    .cookie-hero-section h1 {
        font-size: 42px;
    }
    
    .cookie-main-title {
        font-size: 36px;
    }
    
    .cookie-section h4 {
        font-size: 20px;
    }
    
    .split-hero-section {
        grid-template-columns: 1fr;
        min-height: 300px;
    }
    
    .main-nav .container {
        position: relative;
    }
    
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .split-hero-left,
    .split-hero-right {
        padding: 40px 20px;
    }
    
    .split-logo-title {
        font-size: 36px;
    }
    
    .split-hero-title {
        font-size: 42px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .search-form-container {
        padding: 20px;
    }
    
    .eu-banners {
        flex-direction: column;
    }
    
    .eu-banner {
        max-width: 100%;
    }
    
    .car-features-icons {
        gap: 10px;
    }
    
    .feature-icon-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .form-field {
        flex-direction: column;
        gap: 10px;
    }
    
    .field-number {
        min-width: auto;
    }
    
    .date-time-group {
        flex-wrap: wrap;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-column {
        padding: 30px 20px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .benefits-section {
        padding: 40px 0 60px;
    }
    
    .benefits-intro-text {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .benefits-carousel {
        gap: 15px;
        padding: 0 10px;
    }
    
    .benefit-card {
        min-width: calc(100% - 15px);
        flex: 0 0 calc(100% - 15px);
        padding: 30px 20px;
    }
    
    .benefit-card i {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .benefit-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .carousel-dots {
        margin-top: 25px;
        gap: 6px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .split-hero-title {
        font-size: 32px;
    }
    
    .split-logo-title {
        font-size: 28px;
    }
    
    .main-nav {
        padding: 10px 0;
    }
    
    .middle-header {
        padding: 15px 0;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .contact-info p {
        font-size: 12px;
    }
}

