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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to right, #1b1b19, #2a4e46);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}



/* Header - merges with background */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 15px 0;
    width: 100%;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 20px;
    width: 100%;
    max-width: none;
    position: relative;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 101;
    padding: 5px;
    box-sizing: border-box;
    background: transparent;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 2px 0;
    opacity: 1;
    pointer-events: none;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #1b1b19, #2a4e46);
    z-index: 103;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.mobile-menu-close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 5px;
    box-sizing: border-box;
}

.mobile-menu-close span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu-content a {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    position: relative;
}

.mobile-menu-content a:hover {
    color: #ffffff;
    transform: scale(1.1);
}



.logo h1 {
    font-size: 48px;
    font-weight: 400;
    background: linear-gradient(to right, #1b1b19, #2a4e46);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0;
}

.logo-image {
    height: 300px;
    width: auto;
    margin: 0;
    display: block;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.nav {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 25px;
    align-items: flex-end;
}

.social-icons img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
    cursor: pointer;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Medium screens - increase logo size and align properly */
@media (min-width: 769px) and (max-width: 999px) {
    .header {
        top: 50px;
    }
    
    .hero {
        padding: 110px 0 60px 0;
    }
    
    .logo-image {
        height: 200px !important;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .social-icons {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
}

/* Medium-large screens - same as large screens */
@media (min-width: 1000px) and (max-width: 1199px) {
    .header {
        top: 50px;
    }
    
    .hero {
        padding: 110px 0 60px 0;
    }
    
    .logo-image {
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .social-icons {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
}

/* Medium-large screens 1000px-1049px */
@media (min-width: 1000px) and (max-width: 1049px) {
    .header {
        top: 50px;
    }
    
    .hero {
        padding: 110px 0 60px 0;
    }
    
    .logo-image {
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .social-icons {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .instagram-disclaimer {
        font-size: 17px;
        margin-top: 20px;
    }
    
    
    .consent-text {
        font-size: 16px !important;
    }
    
    .privacy-text {
        font-size: 16px !important;
    }
}

/* Medium-large screens 1050px-1599px */
@media (min-width: 1050px) and (max-width: 1599px) {
    .header {
        top: 50px;
    }
    
    .hero {
        padding: 110px 0 60px 0;
    }
    
    .logo-image {
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .social-icons {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .instagram-disclaimer {
        font-size: 17px;
        margin-top: 20px;
    }
    
    /* About page specific footer spacing for 1050px-1599px */
    body.about-page footer {
        margin-top: -250px;
    }
    
    /* Contacts page specific footer spacing for 1050px-1599px */
    body.contacts-page footer {
        margin-top: -100px !important;
    }
    
    .consent-text {
        font-size: 16px !important;
    }
    
    .privacy-text {
        font-size: 16px !important;
    }
}

/* Large screens only - move header elements up */
@media (min-width: 1600px) {
    .asterisk {
        width: 30px !important;
        height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
        top: 0px;
        right: -15px;
    }
    
    .instagram-disclaimer {
        font-size: 20px !important;
        margin-top: 60px;
    }
    
    footer {
        padding: 40px 0;
        margin-top: 100px;
    }
    
    /* About page specific footer spacing for 1600px+ */
    body.about-page footer {
        margin-top: -20px !important;
    }
    
    /* Contacts page specific footer spacing for 1600px+ */
    body.contacts-page footer {
        margin-top: -100px !important;
    }
    
    .booking-form {
        padding: 0px 40px 30px 40px;
    }
    
    .header {
        top: 50px;
    }
    
    .hero {
        padding: 120px 0 60px 0;
    }
    
    .logo-image {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .social-icons {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .logo-image {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .social-icons {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
}

/* Hero Section - mountain left, text center, car right */
  .hero {
      padding: 100px 0 60px 0;
      position: relative;
      overflow: visible;
      width: 100%;
      max-width: 100vw;
      min-height: 500px;
      z-index: 1;
  }

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    gap: 20px;
    min-height: 350px;
}

  .mountain-image {
      flex: 0 0 auto;
      order: 1;
      margin-left: 10px;
      transition: transform 0.1s ease-out;
      position: relative;
      z-index: 10;
  }

.mountain-image img {
    width: 550px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
}

.hero-text {
    flex: 1;
    text-align: center;
    order: 2;
    margin: 0 20px;
    min-width: 400px;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    line-height: 1.1;
}

.hero-text h3 {
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    line-height: 1.1;
}


.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    line-height: 1.3;
    text-align: center;
    color: #ffffff;
}

  .car-image {
      flex: 0 0 auto;
      order: 3;
      margin-right: 10px;
      transition: transform 0.1s ease-out;
      position: relative;
      z-index: 10;
  }

.car-image img {
    width: 550px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
}

/* Scroll animations - smooth continuous movement */
.mountain-image {
    transition: transform 0.1s ease-out;
}

.car-image {
    transition: transform 0.1s ease-out;
}

/* Mobile Circle Button (hidden by default, only visible on small screens) */
.mobile-circle-btn {
    display: none;
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(to right, #1b1b19, #2a4e46);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 20;
    margin: 20px auto;
}

.mobile-circle-btn span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    padding: 0 10px;
}

.mobile-circle-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
}

.mobile-circle-btn:active {
    transform: scale(0.95);
}





/* Cars Section */
.cars-section {
    padding: 20px 20px 80px 20px;
    width: 100%;
    margin-top: -60px;
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

     .cars-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       grid-template-rows: auto auto auto;
       gap: 20px;
       justify-items: center;
       padding: 0 20px;
       max-width: 1200px;
       margin: 0 auto;
   }

   .car-card {
       background-color: rgba(255, 255, 255, 0.1);
       border-radius: 20px;
       padding: 20px;
       width: 550px;
       box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       cursor: pointer;
   }

   .car-card:nth-child(3) {
       grid-column: 1 / -1;
       justify-self: center;
   }

   .car-card:nth-child(4) {
       grid-column: 1 / -1;
       justify-self: center;
   }

.car-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.car-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Green Trend Section */
.green-trend {
    padding: 0px 20px 20px 20px;
    width: 100%;
}

.green-trend-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.green-trend-left {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease-out, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.green-trend-left:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.green-trend-left h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.green-trend-left > p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.btn-book {
    background: linear-gradient(to right, #1b1b19, #2a4e46);
    color: #FFFFFF;
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}

.btn-book:hover {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
}

.landscape-images {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.landscape-images img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
}

.green-trend-right h3:first-of-type {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.green-trend-right h3:not(:first-of-type) {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.advantage-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.advantage-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.advantage-box p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    margin: 0;
}

.green-trend-right > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

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

.checkmark {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-item h4 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.benefit-item p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* Booking Form - no rectangle background */
.booking-form {
    padding: 0px 20px 40px 20px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.booking-form h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.booking-form > p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

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

.booking-form input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 15px 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.booking-form input::placeholder {
    color: #ffffff;
}

/* Consent Section */
.consent-section {
    margin: 10px 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.consent-checkbox input[type="checkbox"] {
    display: none;
}

.consent-checkbox input[type="checkbox"].error + .checkbox-custom {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2) !important;
    background-color: #ffe6e6 !important;
}

.consent-checkbox.error .checkbox-custom {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2) !important;
    background-color: #ffe6e6 !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.consent-checkbox input[type="checkbox"]:focus + .checkbox-custom {
    border-color: #4a7c59;
    box-shadow: 0 0 0 2px rgba(74, 124, 89, 0.2);
}

.checkbox-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    margin-left: 30px;
    display: none;
    font-weight: 500;
    background-color: #ffe6e6;
    padding: 5px 8px;
    border-radius: 4px;
    border-left: 3px solid #ff6b6b;
}

.checkbox-error.show {
    display: block;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    background: white;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    border-color: #2d5016;
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.consent-text {
    color: #ffffff;
    font-size: 14px;
}

.privacy-row {
    display: block;
    max-width: 100%;
}

.privacy-row-small {
    display: none;
}

.checkbox-spacer {
    display: none;
}

.privacy-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    margin-left: 0px;
    white-space: nowrap;
}

/* Green gradient links */
.green-link {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.green-link:hover {
    background: linear-gradient(135deg, #4a7c59, #2d5016);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
}

.btn-submit {
    background: linear-gradient(to right, #1b1b19, #2a4e46);
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    width: 180px;
    height: 48px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
    font-family: 'Inter', sans-serif;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

  .btn-submit:hover {
      transform: scale(1.05);
      filter: brightness(1.1) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
  }
  
  /* About Page Styles */
  .about-content {
      padding: 150px 0 80px 0;
      width: 100%;
  }
  
  /* About page footer spacing */
  .about-content + .green-trend {
      margin-bottom: 100px;
  }

  /* Mission Content Styles */
  .mission-text {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      margin-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
  }

  .mission-text:hover {
      transform: scale(1.05);
      box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
  }

  .mission-text p {
      font-size: 20px;
      font-weight: 400;
      color: #ffffff;
      text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      margin: 0;
      line-height: 1.5;
      text-align: center;
  }

  .company-directions {
      margin-top: -130px;
  }

  .direction-item {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin-bottom: -30px;
      gap: 15px;
  }

  .direction-item p {
      font-size: 24px;
      font-weight: 400;
      color: #ffffff;
      text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      margin: 0;
      line-height: 0.9;
      text-align: center;
  }

  .direction-image {
      height: 60px;
      width: auto;
      object-fit: contain;
      flex-shrink: 0;
      margin: 0;
      padding: 0;
      border: none;
      display: block;
  }
  
  .about-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
  }
  
  .about-title {
      font-size: 64px;
      font-weight: 400;
      margin-bottom: 60px;
      text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      color: #ffffff;
  }
  
  .goals-section {
      display: flex;
      flex-direction: column;
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
  }
  
  .goal-card {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
  }
  
  .goal-card:hover {
      transform: scale(1.02);
      box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
  }
  
  .goal-card p {
      font-size: 24px;
      font-weight: 400;
      line-height: 1.5;
      text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      color: #ffffff;
      margin: 0;
      text-align: left;
  }
  
  .logo a {
      text-decoration: none;
      color: inherit;
  }
  
     /* Conditions Page Styles */
   .conditions-content {
       padding: 150px 0 80px 0;
       width: 100%;
       min-height: 70vh;
   }
   
   .conditions-container {
       max-width: 1000px;
       margin: 0 auto;
       padding: 0 20px;
   }
   
   .conditions-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 1px;
    margin-top: 30px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}
   
   .conditions-title:first-child {
       margin-top: 0;
   }
   
   .conditions-text {
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 0 20px 0;
    line-height: 1.5;
}
   
   .contact-phone {
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 0 10px 0;
    line-height: 1.2;
}
   
   .contact-email {
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 0 20px 0;
    line-height: 1.2;
}
  
  
  
  /* Responsive Design */
 @media (min-width: 1600px) {
     /* Large screen layout - 3 car cards in first row, 1 in second row */
     .cars-grid {
         grid-template-columns: 1fr 1fr 1fr;
         grid-template-rows: auto auto;
         gap: 20px;
         justify-items: center;
         padding: 0 20px;
         max-width: 1800px;
         margin: 0 auto;
     }
     
     .car-card:nth-child(3) {
         grid-column: auto;
         justify-self: center;
     }
     
     .car-card:nth-child(4) {
         grid-column: 2;
         justify-self: center;
     }
     
    
    /* Reduce car animation movement for large screens */
    .car-image {
        transition: transform 0.1s ease-out;
    }
    
    /* Proportionally increase green trend section */
    .green-trend-content {
        grid-template-columns: 500px 1fr;
        gap: 100px;
        max-width: 1800px;
    }
    
    .green-trend-left {
        padding: 40px;
    }
    
    .green-trend-left h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .green-trend-left > p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .btn-book {
        font-size: 18px;
        padding: 15px 30px;
        margin-bottom: 30px;
    }
    
    .landscape-images img {
        width: 180px;
        height: 120px;
    }
    
    .landscape-images {
        gap: 20px;
    }
    
    .green-trend-right h3:first-of-type {
        font-size: 48px !important;
        margin-bottom: 40px;
    }
    
    .green-trend-right h3:not(:first-of-type) {
        font-size: 32px !important;
        margin-bottom: 40px;
    }
    
    .advantage-box {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .advantage-box p {
        font-size: 24px;
    }
    
    .benefit-item {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .checkmark {
        width: 70px;
        height: 70px;
        margin-top: 8px;
    }
    
    .benefit-item h4 {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .benefit-item p {
        font-size: 24px;
    }
    
    /* Proportionally increase booking form section */
    .booking-form {
        max-width: 800px;
        padding: 0px 40px 40px 40px;
    }
    
    .booking-form h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .booking-form > p {
        font-size: 24px;
        margin-bottom: 50px;
    }
    
    .booking-form form {
        gap: 30px;
    }
    
    .booking-form input {
        padding: 25px 30px;
        font-size: 20px;
        border-radius: 25px;
    }
    
    /* Consent section responsive styles for large screens */
    .consent-section {
        margin: 0px 0 0px 0;
        gap: 10px;
    }
    
    .consent-checkbox {
        font-size: 18px;
        gap: 15px;
    }
    
    .checkbox-custom {
        width: 22px;
        height: 22px;
        margin-top: 3px;
    }
    
    .consent-text {
        font-size: 20px;
    }
    
    .checkbox-spacer {
        display: none;
    }
    
    .privacy-text {
        font-size: 20px;
        color: #ffffff;
        margin-left: -0px;
        white-space: nowrap;
    }
    
    .btn-submit {
        width: 250px;
        height: 65px;
        font-size: 24px;
        border-radius: 25px;
    }
    
    /* About page large screen adjustments */
    .about-title {
        font-size: 80px;
        margin-bottom: 80px;
    }
    
    .goals-section {
        max-width: 1400px;
        gap: 50px;
    }
    
    .goal-card {
        padding: 60px;
    }
    
    .goal-card p {
        font-size: 28px;
    }
    
    /* Contacts page large screen adjustments */
    .contacts-title {
        font-size: 80px;
        margin-bottom: 100px;
    }
    
    .contacts-info {
        gap: 80px;
    }
    
         .contact-text {
         font-size: 56px;
     }
     
     /* Large images for large screens */
     .direction-image {
         height: 300px;
         margin: 0;
         padding: 0;
         border: none;
         display: block;
     }
     
     /* Reduce gaps between direction items on large screens */
     .direction-item {
         margin-bottom: -210px;
     }
     
     /* Large screen proportional margin for company directions */
     .company-directions {
         margin-top: -130px;
     }
 }

 /* Medium Screen Layout - 2 cards above, 2 cards below */
 @media (max-width: 1599px) and (min-width: 1200px) {
     .cars-grid {
         grid-template-columns: 1fr 1fr;
         grid-template-rows: auto auto;
         gap: 20px;
         justify-items: center;
         padding: 0 20px;
         max-width: 1200px;
         margin: 0 auto;
     }
     
     .car-card:nth-child(3) {
         grid-column: 1;
         justify-self: center;
     }
     
     .car-card:nth-child(4) {
         grid-column: 2;
         justify-self: center;
     }
     
 }

 @media (max-width: 1400px) {
    /* Adjust hero section for medium to large screens */
    .hero-content {
        padding: 0 20px;
        gap: 10px;
        max-width: 100%;
        overflow: hidden;
    }
    
    
    /* Move cars section closer to hero on smaller screens */
    .cars-section {
        margin-top: -100px;
    }
    
    /* Increase distance between 1st and 2nd car cards on smaller devices */
    .cars-grid {
        gap: 30px 60px; /* row gap 30px, column gap 60px */
    }
    
    .mountain-image {
        margin-left: 0;
        flex-shrink: 1;
    }
    
    .mountain-image img {
        width: min(400px, 30vw);
        max-width: 100%;
    }
    
    .car-image {
        margin-right: 0;
        flex-shrink: 1;
    }
    
    .car-image img {
        width: min(400px, 30vw);
        max-width: 100%;
    }
    
    .hero-text {
        min-width: 0;
        flex: 1;
        margin: 0 15px;
        max-width: 600px;
    }
    
    .hero-text h1 {
        font-size: min(48px, 4vw);
    }
    
    .hero-text h2 {
        font-size: min(28px, 2.5vw);
    }
    
    .hero-subtitle {
        font-size: min(20px, 1.8vw);
        max-width: 100%;
        font-weight: 400;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    /* More aggressive adjustments for smaller screens */
    .hero-content {
        padding: 0 15px;
        gap: 5px;
    }
    
    .mountain-image img {
        width: min(300px, 25vw);
    }
    
    .car-image img {
        width: min(300px, 25vw);
    }
    
    .hero-text {
        margin: 0 10px;
    }
    
    .hero-text h1 {
        font-size: min(36px, 3.5vw);
    }
    
    .hero-text h2 {
        font-size: min(22px, 2vw);
    }
    
    .hero-subtitle {
        font-size: min(16px, 1.5vw);
        font-weight: 400;
        text-align: center;
        line-height: 1.4;
    }
    
    /* Proportional scaling for section titles */
    .section-title {
        font-size: 36px;
    }
    
         /* Medium screen image sizing */
     .direction-image {
         height: 120px;
     }
     
     /* Medium screen proportional gaps */
     .direction-item {
         margin-bottom: -50px;
     }
     
     /* Medium screen proportional margin for company directions */
     .company-directions {
         margin-top: -60px;
     }
}


@media (max-width: 768px) {
    .header {
        top: -65px;
    }
    
    .hero {
        padding: 120px 0 60px 0;
    }
    
    /* Reorder car cards for small screens */
    .car-card:nth-child(1) {
        order: 4; /* car-card-1.png becomes 4th */
    }
    
    .car-card:nth-child(2) {
        order: 2; /* car-card-2.webp stays 2nd */
    }
    
    .car-card:nth-child(3) {
        order: 1; /* car-card-3.webp becomes 1st */
    }
    
    .car-card:nth-child(4) {
        order: 3; /* car-card-4.png becomes 3rd */
    }
    
    /* Mobile Menu Button - Show on small screens */
    .mobile-menu-btn {
        display: flex !important;
        z-index: 102;
    }
    
    /* Hide navigation text on small screens */
    .nav {
        display: none;
    }
    
    /* Show mobile circle button on small screens */
    .mobile-circle-btn {
        display: flex !important;
    }
    
    .header-content {
        flex-direction: row;
        gap: 0;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .logo h1 {
        font-size: 32px;
    }
    
    .logo {
        margin-left: -30px;
    }
    
    .logo-image {
        height: 200px;
    }
    
    .social-icons {
        gap: 15px;
        margin-right: 50px;
    }
    
    .social-icons img {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu-btn {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
        cursor: pointer;
        z-index: 102;
        width: 40px;
        height: 30px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .car-image,
    .mountain-image,
    .hero-text {
        order: unset;
    }
    
    .hero-text {
        margin: 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text h2 {
        font-size: 20px;
    }
    
    .hero-text h3 {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        font-weight: 400;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .car-image img,
    .mountain-image img {
        width: 250px;
    }
    
    /* Fix mountain position to be same as car on small screens */
    .mountain-image {
        order: 1;
        position: relative;
        transform: translateY(-20px);
    }
    
    .car-image {
        order: 3;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .car-image img {
        width: 120px;
        height: auto;
    }
    
    .cars-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }
    
    .car-card {
        width: 100%;
        max-width: 350px;
        padding: 15px;
    }
    
    .car-card:nth-child(3) {
        grid-column: 1;
    }
    
    .car-card:nth-child(4) {
        grid-column: 1;
    }
    
    .green-trend-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
        position: relative;
        min-height: 400px;
        overflow: visible;
        z-index: 10;
    }
    
    .green-trend-right {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        min-height: 400px;
    }
    
    .green-trend-left h2 {
        font-size: 20px;
        font-weight: 400;
        text-align: center;
    }
    
    .green-trend-left > p {
        font-size: 14px;
        text-align: center;
    }
    
    .btn-book {
        font-size: 14px;
        padding: 10px 20px;
        font-weight: 400;
        margin: 0 auto 20px auto;
        display: block;
        width: fit-content;
    }
    
    .landscape-images {
        justify-content: center;
        gap: 15px;
    }
    
    .landscape-images img {
        width: 100px;
        height: 65px;
    }
    
    .green-trend-right h3:first-of-type {
        font-size: 24px !important;
        text-align: center;
    }
    
    .green-trend-right h3:not(:first-of-type) {
        font-size: 18px !important;
        text-align: center;
    }
    
    /* Override the not(:first-of-type) rule for the last h3 (trends text) */
    .green-trend-right h3:not(:first-of-type):last-of-type:not(.directions-heading) {
        text-align: right !important;
    }
    
    .advantage-box {
        padding: 15px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .advantage-box p {
        font-size: 14px;
        text-align: center;
    }
    
    /* Mobile Circle Button positioning on small screens */
    .mobile-circle-btn {
        position: absolute;
        left: -20px; /* Adjusted to be visible on screen */
        top: 30%; /* Moved higher */
        transform: translateY(-50%);
        margin: 0;
        z-index: 9999; /* Highest z-index */
        width: 100px;
        height: 100px;
        display: flex !important;
        background: linear-gradient(to right, #1b1b19, #2a4e46);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        overflow: visible;
        pointer-events: auto; /* Ensure clickable */
        transition: none; /* Remove transition to prevent conflicts with JavaScript animation */
    }
    
    .mobile-circle-btn span {
        font-size: 12px;
        color: white;
        font-weight: 600;
        text-align: center;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    /* Move only trends text to the right on small screens */
    .green-trend-right h3:last-of-type:not(.directions-heading) {
        text-align: right !important;
        align-self: flex-end !important;
        padding-right: 0;
        margin-right: 0;
        margin-left: auto;
        width: 100%;
        padding-left: 80px;
    }
    
    .benefit-item {
        display: flex;
        flex-direction: column;
        text-align: right;
        gap: 15px;
        margin-bottom: 25px;
        padding-right: 0;
        margin-right: 0;
        margin-left: auto;
        width: 100%;
        align-items: flex-end;
        padding-left: 80px;
        position: relative;
    }
    
    .benefit-item h4 {
        font-size: 18px;
        margin-bottom: 8px;
        text-align: right;
        order: 2;
    }
    
    .benefit-item p {
        font-size: 14px;
        text-align: right;
        order: 3;
    }
    
    .checkmark {
        width: 30px;
        height: 30px;
        position: absolute;
        right: 0;
        top: -33px;
        order: 1;
    }
    
    .booking-form {
        padding: 0px 20px 30px 20px;
    }
    
    .booking-form h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .booking-form > p {
        font-size: 16px;
        text-align: center;
    }
    
    .booking-form form {
        gap: 20px;
    }
    
    .booking-form input {
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 20px;
    }
    
    /* Consent section responsive styles for small screens */
    .consent-section {
        margin: 8px 0 8px 0;
        gap: 6px;
        position: relative;
    }
    
    .consent-checkbox {
        font-size: 13px;
        gap: 10px;
    }
    
    .checkbox-custom {
        width: 16px;
        height: 16px;
        margin-top: 1px;
    }
    
    .consent-text {
        font-size: 13px;
    }
    
    .privacy-row {
        max-width: 90%;
    }
    
    .checkbox-spacer {
        display: none;
    }
    
    .privacy-row {
        display: none;
    }
    
    .privacy-row-small {
        display: block;
        margin-top: -5px;
        text-align: center;
    }
    
    .privacy-text-small {
        font-size: 13px;
        color: #ffffff;
        margin: 0 auto;
        max-width: 280px;
        word-wrap: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        text-align: center;
        display: block;
    }
    
    .privacy-text-small .green-link {
        text-align: center;
        display: inline;
    }
    
    .btn-submit {
        width: 100%;
        max-width: 250px;
        height: 50px;
        font-size: 18px;
        border-radius: 20px;
        margin: 0 auto;
        display: block;
    }
    
    /* About page responsive */
    .about-title {
        font-size: 28px;
        text-align: center;
    }
    
    .goal-card {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .goal-card p {
        font-size: 14px;
        text-align: center;
    }
    
    /* Green trend section mobile optimization - same as SILKWAY1 */
    .green-trend-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
        position: relative;
        min-height: 400px;
        overflow: visible;
        z-index: 10;
    }
    
    .green-trend-right {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        min-height: 400px;
    }
    
    .green-trend-left h2 {
        font-size: 20px;
        font-weight: 400;
        text-align: center;
    }
    
    .green-trend-left > p {
        font-size: 14px;
        text-align: center;
    }
    
    .btn-book {
        font-size: 14px;
        padding: 10px 20px;
        font-weight: 400;
        margin: 0 auto 20px auto;
        display: block;
        width: fit-content;
    }
    
    .landscape-images {
        justify-content: center;
        gap: 15px;
    }
    
    .landscape-images img {
        width: 100px;
        height: 65px;
    }
    
    /* Mission text mobile optimization */
    .mission-text {
        padding: 15px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .mission-text p {
        font-size: 14px;
        text-align: center;
    }
    
    /* Company directions mobile optimization - fix overlapping text */
    .company-directions {
        margin-top: 20px; /* Remove negative margin to prevent overlap */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        align-self: center !important;
    }
    
    .direction-item {
        display: flex;
        flex-direction: column;
        text-align: center !important;
        margin: 0 auto 25px auto !important;
        gap: 0px !important; /* Remove gap between text and image */
        align-items: center !important;
        justify-content: flex-start; /* Align to top instead of center */
        width: 100%;
        max-width: 300px;
    }
    
    /* Move 2nd and 3rd direction items up to reduce visual gaps */
    .direction-item:nth-child(2) {
        margin-top: -80px !important; /* Move second item up more aggressively */
        margin-bottom: 25px;
    }
    
    .direction-item:nth-child(3) {
        margin-top: -80px !important; /* Move third item up more aggressively */
        margin-bottom: 25px;
    }
    
    .direction-item p {
        font-size: 18px;
        font-weight: 400;
        color: #ffffff;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        margin: 0;
        text-align: center !important;
        line-height: 1.2;
    }
    
    .direction-image {
        height: 220px; /* Increased from 80px to 120px for better visibility */
        width: auto;
        object-fit: contain;
        flex-shrink: 0;
        margin: -60px auto 0 auto !important; /* Move images up aggressively to compensate for built-in invisible frames */
        display: block !important;
        padding: 0 !important; /* Remove any invisible padding */
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background: transparent !important;
        vertical-align: top !important; /* Remove default image spacing */
        line-height: 0 !important; /* Remove line height spacing */
    }
    
    /* Mobile Circle Button positioning for about page */
    .mobile-circle-btn {
        position: absolute;
        left: -20px;
        top: 30%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 9999;
        width: 100px;
        height: 100px;
        display: flex !important;
        background: linear-gradient(to right, #1b1b19, #2a4e46);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        overflow: visible;
        pointer-events: auto;
        transition: none;
    }
    
    .mobile-circle-btn span {
        font-size: 12px;
        color: white;
        font-weight: 600;
        text-align: center;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    /* Mission heading - only center the text on mobile */
    .green-trend-right h3:nth-child(5) {
        text-align: center !important;
    }
    
    /* Even more specific - target the h3 that comes after mobile-circle-btn */
    .green-trend-right .mobile-circle-btn + h3 {
        text-align: center !important;
    }
    
    /* Target mission heading with class - override flex alignment */
    .green-trend-right .mission-heading {
        text-align: center !important;
        align-self: center !important;
        width: 100% !important;
    }
    
    /* Target advantages heading with class - override flex alignment */
    .green-trend-right .advantages-heading {
        text-align: center !important;
        align-self: center !important;
        width: 100% !important;
    }
    
    /* Target directions heading with class - override flex alignment and last-of-type rules */
    .green-trend-right .directions-heading {
        text-align: center !important;
        align-self: center !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Even more specific override for directions heading to ensure it overrides last-of-type rules */
    .green-trend-right h3.directions-heading {
        text-align: center !important;
        align-self: center !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Maximum specificity override for directions heading */
    .green-trend-right h3.directions-heading:last-of-type {
        text-align: center !important;
        align-self: center !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Contacts page responsive */
    .contacts-title {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .contacts-info {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-text {
        font-size: 20px;
        text-align: center;
    }
    
    /* Hide social icons on small screens */
    .social-icons {
        display: none !important;
    }
    
    /* Mobile App Icons (visible on small screens) */
    .mobile-app-icons {
        display: block !important;
        margin-top: 40px;
        text-align: center;
    }
    
    .mobile-app-icons h2 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 30px;
        color: #ffffff;
    }
    
    .app-icons-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .app-icon {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        color: #ffffff;
        padding: 15px;
        border-radius: 15px;
        background-color: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        min-width: 200px;
    }
    
    .app-icon:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    .app-icon img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    
    .app-icon span {
        font-size: 16px;
        font-weight: 500;
    }
    
    /* Optimize contacts page text for small screens */
    .conditions-content {
        padding: 100px 15px 60px 15px;
    }
    
    .conditions-container {
        padding: 0 15px;
    }
    
    .conditions-title {
        font-size: 28px;
        margin-bottom: 15px;
        margin-top: 20px;
        text-align: center;
    }
    
    .conditions-title:first-child {
        margin-top: 0;
    }
    
    .conditions-text {
        font-size: 18px;
        margin: 0 0 15px 0;
        text-align: center;
        line-height: 1.4;
    }
    
    /* Center the position of the first conditions text (rental conditions) */
    .conditions-text:first-of-type {
        text-align: left;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 70%;
        width: fit-content;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 20px;
        margin: 0 0 15px 0;
        text-align: center;
        line-height: 1.3;
    }
}

/* Very small screens (up to 394px) - must come after 768px rule */
@media (max-width: 394px) and (min-width: 380px) {
    .consent-section {
        margin: 8px 0 8px 0;
        gap: 6px;
        position: relative;
    }
    
    .consent-checkbox {
        font-size: 13px;
        gap: 8px !important;
        align-items: flex-start;
    }
    
    .checkbox-custom {
        width: 16px;
        height: 16px;
        margin-top: 1px;
        flex-shrink: 0;
    }
    
    .consent-text {
        font-size: 13px;
        line-height: 1.3;
        flex: 1;
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
        white-space: nowrap !important;
    }
    
    .privacy-text {
        font-size: 13px;
        color: #ffffff;
        margin-left: 0px;
        max-width: 280px;
        word-wrap: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .privacy-text .green-link {
        text-align: left;
        display: inline;
    }
    
    .privacy-row-small {
        display: block;
        margin-top: -5px;
        text-align: center;
    }
    
    .privacy-text-small {
        font-size: 13px;
        color: #ffffff;
        margin: 0 auto;
        max-width: 280px;
        word-wrap: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        text-align: center;
        display: block;
    }
    
    .privacy-text-small .green-link {
        text-align: center;
        display: inline;
    }
}

/* Small screens (up to 388px) - consistent positioning for all small screens */
@media (max-width: 388px) and (min-width: 380px) {
    .consent-checkbox {
        gap: 8px !important;
        align-items: flex-start !important;
    }
    
    .consent-text {
        display: block !important;
        margin-left: 4px !important;
        padding-left: 0 !important;
        text-indent: 0 !important;
        transform: none !important;
        margin-left: calc(18px + 8px) !important;
        text-indent: calc(-18px - 8px) !important;
        white-space: nowrap !important;
    }
}

/* Very small screens (up to 379px) - override any other rules */
@media (max-width: 379px) {
    .consent-checkbox {
        gap: 5px !important;
        align-items: flex-start !important;
    }
    
    .consent-text {
        display: block !important;
        margin-left: 27px !important;
        text-indent: calc(-18px - 5px) !important;
        padding-left: 0 !important;
        transform: none !important;
        font-size: 12px !important;
        margin-top: 1px !important;
    }
}

/* Instagram asterisk and disclaimer - only for screens 769px and above */
.instagram-container {
    position: relative;
}

.asterisk {
    position: absolute;
    top: 0px;
    right: -20px;
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    z-index: 10;
}

footer {
    padding: 20px 0;
    margin-top: -20px;
}

.instagram-disclaimer {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
    display: none;
}

/* Show asterisk and disclaimer only on screens 769px and above */
@media (min-width: 769px) {
    .asterisk {
        display: block;
    }
    
    .instagram-disclaimer {
        display: block;
    }
    
    footer {
        padding: 30px 0;
        margin-top: -30px;
    }
    
    /* About page specific footer spacing for medium screens */
    body.about-page footer {
        margin-top: -170px;
    }
    
}

    /* Instagram text positioning for 769px-999px range only */
    @media (min-width: 769px) and (max-width: 999px) {
        /* About page specific footer spacing for 769px-999px range */
        body.about-page footer {
            margin-top: -120px !important;
        }
        
        /* Contacts page specific footer spacing for 769px-999px range */
        body.contacts-page footer {
            margin-top: -70px !important;
        }
    }

/* Hide asterisk and disclaimer on small screens */
@media (max-width: 768px) {
    .asterisk {
        display: none;
    }
    
    .instagram-disclaimer {
        display: none;
    }
    
    /* Reduce footer height on about page for small screens */
    body.about-page footer {
        padding: 0px 0 !important;
        margin-top: -150px !important;
    }
    
    /* Show asterisk and disclaimer only on contacts page for small screens */
    body.contacts-page .asterisk {
        display: block !important;
        width: 12px !important;
        height: 12px !important;
        max-width: 12px !important;
        max-height: 12px !important;
        top: 4px;
        right: -15px;
    }
    
    body.contacts-page .instagram-disclaimer {
        display: block !important;
        font-size: 12px;
        color: #ffffff;
        text-align: center;
        margin-top: -30px;
    }
}

/* Reviews Page Styles */
.reviews-page {
    background: linear-gradient(to right, #1b1b19, #2a4e46);
    min-height: 100vh;
}

/* Hide fullscreen overlay on larger screens */
@media (min-width: 769px) {
    .fullscreen-overlay {
        display: none !important;
    }
}

/* Fullscreen Image Viewer for Small Screens */
@media (max-width: 768px) {
    .fullscreen-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 9999;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }

    .fullscreen-overlay.active {
        display: flex;
    }

    .fullscreen-image {
        max-width: 90%;
        max-height: 70%;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        cursor: pointer;
    }

    /* Larger size for landscape images (1.jpg and 8.JPG) */
    .fullscreen-image[src*="1.jpg"],
    .fullscreen-image[src*="8.JPG"] {
        max-width: 105%;
        max-height: 95%;
    }

    /* Larger size for vertical/portrait images (2.jpg, 3.JPG, 5.jpg, 6.JPG, 7.JPG, 9.JPG) */
    .fullscreen-image[src*="2.jpg"],
    .fullscreen-image[src*="3.JPG"],
    .fullscreen-image[src*="5.jpg"],
    .fullscreen-image[src*="6.JPG"],
    .fullscreen-image[src*="7.JPG"],
    .fullscreen-image[src*="9.JPG"] {
        max-width: 100%;
        max-height: 90%;
    }

    .fullscreen-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(to right, #1b1b19, #2a4e46);
        border: none;
        color: white;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
    }

    .fullscreen-close:hover {
        background: linear-gradient(to right, #1b1b19, #2a4e46);
        transform: scale(1.05);
        filter: brightness(1.1) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
    }

    .fullscreen-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;
        padding: 20px;
        box-sizing: border-box;
        gap: 30px;
    }

    .fullscreen-nav-buttons {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .fullscreen-nav-btn {
        background: linear-gradient(to right, #1b1b19, #2a4e46);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        position: relative;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
        flex-shrink: 0;
    }

    .fullscreen-nav-btn:hover {
        background: linear-gradient(to right, #1b1b19, #2a4e46);
        transform: scale(1.05);
        filter: brightness(1.1) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
    }

    /* Make gallery images clickable on small screens */
    .gallery-image {
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .gallery-image:hover {
        transform: scale(1.02);
        filter: brightness(1.05);
    }
}


.reviews-page .nav a {
    font-size: 24px !important;
}



.reviews-section {
    padding: 120px 0 80px 0;
    text-align: center;
}

.reviews-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.review-button {
    display: block;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.review-button:hover {
    transform: none;
    box-shadow: none;
}

.review-button-content {
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    color: #ffffff;
    padding: 25px 35px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 350px;
}

.review-button:hover .review-button-content {
    background-color: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.review-button-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-button-text {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
}

/* Photo Gallery Styles */
.photo-gallery {
    margin-top: 60px;
    text-align: center;
}


.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.gallery-slider {
    flex: 1;
    max-width: 1000px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center 70%;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-nav-btn {
    background: linear-gradient(to right, #1b1b19, #2a4e46);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
}

.gallery-nav-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(to right, #1b1b19, #2a4e46);
    transform: scale(1.2);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.dot:hover {
    background: linear-gradient(to right, #1b1b19, #2a4e46);
    transform: scale(1.1);
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Responsive styles for reviews page */
@media (max-width: 768px) {
    .reviews-section {
        padding: 100px 20px 60px 20px;
    }
    
    .reviews-section::before {
        content: "Отзывы";
        display: block;
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .reviews-buttons {
        max-width: 100%;
        gap: 15px;
    }
    
    .review-button-content {
        padding: 12px 20px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        min-width: 180px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .review-button-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
    }
    
    .review-button-text {
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
    }
    
    .review-button:hover .review-button-content {
        background-color: rgba(255, 255, 255, 0.05);
        transform: scale(1.05);
    }
    
    /* Photo gallery responsive for small screens */
    .photo-gallery {
        margin-top: 40px;
    }
    
    .gallery-container {
        max-width: 100%;
        gap: 12px;
    }
    
    .gallery-slider {
        max-width: 100%;
    }
    
    .gallery-image {
        height: 300px;
        object-fit: cover;
        object-position: center 70%;
    }
    
    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .gallery-dots {
        margin-top: 15px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Extra small screens - proportional scaling like large screens */
@media (max-width: 600px) {
    body.reviews-page .container {
        padding: 0 10px;
    }
    
    .reviews-section {
        padding: 80px 15px 50px 15px;
    }
    
    .reviews-section::before {
        font-size: 32px;
        margin-bottom: 35px;
    }
    
    .reviews-buttons {
        max-width: 100%;
        gap: 15px;
    }
    
    .review-button-content {
        padding: 12px 20px;
        border-radius: 12px;
        min-width: 180px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .review-button-icon {
        width: 35px;
        height: 35px;
    }
    
    .review-button-text {
        font-size: 14px;
    }
    
    .photo-gallery {
        margin-top: 30px;
        max-width: 100%;
        width: 100%;
    }
    
    .gallery-container {
        max-width: 100%;
        gap: 10px;
    }
    
    .gallery-slider {
        max-width: 100%;
    }
    
    .gallery-image {
        height: 250px;
        object-fit: cover;
        object-position: center 70%;
    }
    
    .gallery-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .gallery-dots {
        margin-top: 12px;
        gap: 5px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
}

/* Very small screens - increase all elements */
@media (min-width: 350px) and (max-width: 399px) {
    body.reviews-page .container {
        padding: 0 0px;
    }

    /* Fix header for reviews page in 350px-400px range */
    body.reviews-page .header .container {
        padding: 0 20px;
    }
    
    .reviews-section {
        padding: 90px 15px 60px 15px;
    }
    
    .reviews-section::before {
        font-size: 30px;
        margin-bottom: 35px;
    }
    
    .reviews-buttons {
        max-width: 100%;
        gap: 15px;
    }
    
    .review-button-content {
        padding: 12px 20px;
        border-radius: 12px;
        min-width: 180px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .review-button-icon {
        width: 35px;
        height: 35px;
    }
    
    .review-button-text {
        font-size: 14px;
    }
    
    .photo-gallery {
        margin-top: 40px;
        max-width: 100%;
        width: 100%;
    }
    
    .gallery-container {
        max-width: 100%;
        gap: 12px;
    }
    
    .gallery-slider {
        max-width: 100%;
        width: 100%;
    }
    
    .gallery-image {
        height: 200px;
        width: 100%;
        object-fit: cover;
        object-position: center 70%;
    }
    
    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .gallery-dots {
        margin-top: 15px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Extra small screens - further proportional scaling */
@media (max-width: 349px) {
    body.reviews-page .container {
        padding: 0 5px;
    }
    
    .reviews-section {
        padding: 70px 10px 40px 10px;
    }
    
    .reviews-section::before {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .reviews-buttons {
        max-width: 100%;
        gap: 10px;
    }
    
    .review-button-content {
        padding: 8px 15px;
        border-radius: 8px;
        min-width: 140px;
        max-width: 240px;
        margin: 0 auto;
    }
    
    .review-button-icon {
        width: 25px;
        height: 25px;
    }
    
    .review-button-text {
        font-size: 11px;
    }
    
    .photo-gallery {
        margin-top: 25px;
        max-width: 100%;
        width: 100%;
    }
    
    .gallery-container {
        max-width: 100%;
        gap: 8px;
    }
    
    .gallery-slider {
        max-width: 100%;
    }
    
    .gallery-image {
        height: 200px;
        object-fit: cover;
        object-position: center 70%;
    }
    
    .gallery-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .gallery-dots {
        margin-top: 12px;
        gap: 5px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
}

@media (min-width: 769px) and (max-width: 999px) {
    body.reviews-page .reviews-section {
        padding: 140px 40px 70px 40px;
    }
    
    .reviews-buttons {
        max-width: 500px;
        gap: 25px;
    }
    
    .review-button-content {
        padding: 20px 30px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        min-width: 300px;
    }
    
    .review-button-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    
    .review-button-text {
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
    }
    
    .review-button:hover .review-button-content {
        background-color: rgba(255, 255, 255, 0.05);
        transform: scale(1.05);
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
    body.reviews-page .reviews-section {
        padding: 140px 60px 80px 60px;
    }
    
    .reviews-buttons {
        max-width: 550px;
        gap: 28px;
    }
    
    .review-button-content {
        padding: 22px 32px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 19px;
        min-width: 320px;
    }
    
    .review-button-icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
    }
    
    .review-button-text {
        font-size: 22px;
        font-weight: 500;
        color: #ffffff;
    }
    
    .review-button:hover .review-button-content {
        background-color: rgba(255, 255, 255, 0.05);
        transform: scale(1.05);
    }
}

@media (min-width: 1200px) {
    .reviews-section {
        padding: 140px 80px 100px 80px;
    }
    
    .reviews-buttons {
        max-width: 600px;
        gap: 30px;
    }
    
    .review-button-content {
        padding: 25px 35px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        min-width: 350px;
    }
    
    .review-button-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }
    
    .review-button-text {
        font-size: 24px;
        font-weight: 500;
        color: #ffffff;
    }
    
    .review-button:hover .review-button-content {
        background-color: rgba(255, 255, 255, 0.05);
        transform: scale(1.05);
    }
}

/* Reviews page specific footer spacing */
@media (min-width: 769px) {
    body.reviews-page footer {
        margin-top: -50px !important;
    }
}

@media (min-width: 1000px) {
    body.reviews-page footer {
        margin-top: -80px !important;
    }
}

@media (min-width: 1200px) {
    body.reviews-page footer {
        margin-top: -100px !important;
    }
}

@media (min-width: 1600px) {
    body.reviews-page footer {
        margin-top: -80px !important;
    }
}

/* Proportional scaling for reviews page on screens 1200px and less */
@media (max-width: 1200px) and (min-width: 769px) {
    .reviews-section {
        padding: 100px 40px 60px 40px;
    }
    
    .reviews-buttons {
        max-width: 500px;
        gap: 25px;
    }
    
    .review-button-content {
        padding: 20px 30px;
        border-radius: 18px;
        min-width: 300px;
    }
    
    .review-button-icon {
        width: 50px;
        height: 50px;
    }
    
    .review-button-text {
        font-size: 20px;
    }
    
    .photo-gallery {
        margin-top: 50px;
    }
    
    .gallery-container {
        max-width: 900px;
        gap: 25px;
    }
    
    .gallery-slider {
        max-width: 800px;
    }
    
    .gallery-image {
        height: 500px;
    }
    
    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .gallery-dots {
        margin-top: 25px;
        gap: 8px;
    }
    
    .dot {
        width: 11px;
        height: 11px;
    }
}

@media (max-width: 999px) and (min-width: 769px) {
    .reviews-section {
        padding: 90px 30px 50px 30px;
    }
    
    .reviews-buttons {
        max-width: 450px;
        gap: 20px;
    }
    
    .review-button-content {
        padding: 18px 25px;
        border-radius: 16px;
        min-width: 280px;
    }
    
    .review-button-icon {
        width: 45px;
        height: 45px;
    }
    
    .review-button-text {
        font-size: 18px;
    }
    
    .photo-gallery {
        margin-top: 40px;
    }
    
    .gallery-container {
        max-width: 800px;
        gap: 20px;
    }
    
    .gallery-slider {
        max-width: 700px;
    }
    
    .gallery-image {
        height: 450px;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .gallery-dots {
        margin-top: 20px;
        gap: 7px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Mobile App Icons (hidden by default, shown only on small screens) */
.mobile-app-icons {
    display: none;
}

/* Range 769px to 999px: optimize logo and social icons */
@media (min-width: 769px) and (max-width: 999px) {
    .asterisk {
        width: 15px !important;
        height: 15px !important;
        max-width: 15px !important;
        max-height: 15px !important;
        top: 0px;
        right: -15px;
    }
    
    .instagram-disclaimer {
        font-size: 14px;
        margin-top: 20px;
    }
    
    .logo h1 {
        font-size: 28px;
        font-weight: 400;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .social-icons {
        gap: 20px;
        margin-right: 0px;
    }
    
    .social-icons img {
        width: 40px;
        height: 40px;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    /* Hide mobile app icons on larger screens */
    .mobile-app-icons {
        display: none !important;
    }
    
    /* Consent section responsive styles for medium screens */
    .consent-section {
        margin: 10px 0 10px 0;
        gap: 8px;
    }
    
    .consent-checkbox {
        font-size: 14px;
        gap: 11px;
    }
    
    .checkbox-custom {
        width: 17px;
        height: 17px;
    }
    
    .consent-text {
        font-size: 14px;
    }
    
    .checkbox-spacer {
        display: none;
    }
    
    .privacy-text {
        font-size: 14px;
        color: #ffffff;
        margin-left: 0px;
        white-space: nowrap;
    }
    
    /* Optimize contacts page text for medium screens */
    .conditions-content {
        padding: 120px 20px 60px 20px;
    }
    
    .conditions-title {
        font-size: 32px;
        margin-bottom: 15px;
        margin-top: 25px;
    }
    
    .conditions-text {
        font-size: 22px;
        margin: 0 0 15px 0;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 28px;
        margin: 0 0 15px 0;
    }
    
    
}


/* Range 1600px to 1799px: optimize car cards - 3 above, 1 under, bigger cards */
@media (min-width: 1600px) and (max-width: 1799px) {
    .car-card {
        width: 100%;
        max-width: 550px;
        padding: 25px;
    }
    
    .cars-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px;
        justify-items: center;
        padding: 0 30px;
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .car-card:nth-child(1),
    .car-card:nth-child(2),
    .car-card:nth-child(3) {
        grid-row: 1;
        justify-self: center;
    }
    
    .car-card:nth-child(1) {
        grid-column: 1;
    }
    
    .car-card:nth-child(2) {
        grid-column: 2;
    }
    
    .car-card:nth-child(3) {
        grid-column: 3;
    }
    
    .car-card:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
    }
    
    /* Optimize contacts page text for very large screens */
    .conditions-content {
        padding: 140px 30px 80px 30px;
    }
    
    .conditions-title {
        font-size: 44px;
        margin-bottom: 15px;
        margin-top: 25px;
    }
    
    .conditions-text {
        font-size: 28px;
        margin: 0 0 15px 0;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 36px;
        margin: 0 0 15px 0;
    }
}

/* Range 1401px to 1595px: optimize hero section to prevent car overflow */
@media (min-width: 1401px) and (max-width: 1599px) {
    .hero-content {
        padding: 0 20px;
        gap: 15px;
        max-width: 100%;
    }
    
    .mountain-image img {
        width: 400px;
        height: auto;
    }
    
    .car-image img {
        width: 400px;
        height: auto;
    }
    
    .hero-text {
        margin: 0 20px;
        min-width: 0;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        max-width: 500px;
    }
}

/* Range 769px to 1235px: optimize car cards to prevent overflow */
@media (min-width: 769px) and (max-width: 1235px) {
    .car-card {
        width: 100%;
        max-width: 450px;
        padding: 18px;
    }
    
    .cars-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
        justify-items: center;
        padding: 0 15px;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .car-card:nth-child(3) {
        grid-column: 1;
        justify-self: center;
    }
    
    .car-card:nth-child(4) {
        grid-column: 2;
        justify-self: center;
    }
}

/* Range 1000px to 1049px: use small screen styling */
@media (min-width: 1000px) and (max-width: 1049px) {
    .asterisk {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
        top: 0px;
        right: -20px;
    }
    
    .instagram-disclaimer {
        font-size: 15px;
        margin-top: 20px;
    }
    
    /* About page specific footer spacing for 1000px-1049px */
    body.about-page footer {
        margin-top: -240px !important;
        padding: -50px 0 !important; /* Reduce footer height significantly */
    }
    
    /* Contacts page specific footer spacing for 1000px-1049px */
    body.contacts-page footer {
        margin-top: -100px !important;
    }
    
    
    
    /* Optimize contacts page text for large screens */
    .conditions-content {
        padding: 130px 20px 70px 20px;
    }
    
    .conditions-title {
        font-size: 40px;
        margin-bottom: 15px;
        margin-top: 25px;
    }
    
    .conditions-text {
        font-size: 26px;
        margin: 0 0 15px 0;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 32px;
        margin: 0 0 15px 0;
    }
    .company-directions {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        align-self: center !important;
    }
    
    .direction-item {
        display: flex;
        flex-direction: column;
        text-align: center !important;
        margin: 0 auto 25px auto !important;
        gap: 0px !important;
        align-items: center !important;
        justify-content: flex-start;
        width: 100%;
        max-width: 300px;
    }
    
    /* Move 2nd and 3rd direction items up to reduce visual gaps */
    .direction-item:nth-child(2) {
        margin-top: -80px !important;
        margin-bottom: 25px;
    }
    
    .direction-item:nth-child(3) {
        margin-top: -80px !important;
        margin-bottom: 25px;
    }
    
    .direction-item p {
        font-size: 18px;
        font-weight: 400;
        color: #ffffff;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        margin: 0;
        text-align: center !important;
        line-height: 1.2;
    }
    
    .direction-image {
        height: 220px;
        width: auto;
        object-fit: contain;
        flex-shrink: 0;
        margin: -60px auto 0 auto !important;
        display: block !important;
        padding: 0 !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background: transparent !important;
        vertical-align: top !important;
        line-height: 0 !important;
    }
}

/* Medium screens: same layout as large screens but proportionally reduced */
@media (min-width: 1050px) and (max-width: 1599px) {
    .asterisk {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
        top: 0px;
        right: -20px;
    }
    
    .instagram-disclaimer {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .company-directions {
        margin-top: -60px; /* Proportional reduction from large screen -130px */
    }
    
    /* Optimize contacts page text for medium-large screens */
    .conditions-content {
        padding: 135px 25px 75px 25px;
    }
    
    .conditions-title {
        font-size: 42px;
        margin-bottom: 15px;
        margin-top: 25px;
    }
    
    .conditions-text {
        font-size: 27px;
        margin: 0 0 15px 0;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 34px;
        margin: 0 0 15px 0;
    }
    
    .direction-item {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: -20px; /* Proportional reduction from large screen -30px */
        gap: 12px; /* Proportional reduction from large screen 15px */
    }
    
    /* Move up only second and third service items */
    .direction-item:nth-child(2) {
        margin-top: -70px !important; /* Move second item up */
    }
    
    .direction-item:nth-child(3) {
        margin-top: -70px !important; /* Move third item up */
    }
    
    .direction-item p {
        font-size: 20px; /* Proportional reduction from large screen 24px */
        font-weight: 400;
        color: #ffffff;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        margin: 0;
        line-height: 0.9;
        text-align: center;
    }
    
    .direction-image {
        height: 150px; /* Increased for better visibility on medium screens */
        width: auto;
        object-fit: contain;
        flex-shrink: 0;
        margin: 0; /* Normal margin like large screens */
    }
}