body {
    font-family: 'montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
}
/* Basic heading container styling */
.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.animation-container {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  /* Ensure no animations can break outside the container */
  [data-aos] {
    transform-origin: center center;
    backface-visibility: hidden;
  }
/* Heading image styling */
.heading img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

/* Heading text styling */
.heading h1 {
    position: absolute;
    left: 50%;
    top: 400px;
    transform: translate(-50%, -50%) !important;
    font-size: 80px;
    text-transform: uppercase;
    font-weight: 500;
    color: #f4f4f4;
    opacity: 0.9;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
}

/* Media queries for responsive design */
@media screen and (max-width: 2400px) {
    .heading h1 {
        top: 400px;
    }
}

@media (max-width: 2000px) {
    .heading h1 {
        top: 400px;
    }
}

@media (max-width: 1600px) {
    .heading h1 {
        top: 350px;
    }
}

@media (max-width: 1400px) {
    .heading h1 {
        font-size: 70px;
       
    }
}

@media (max-width: 1200px) {
    .heading h1 {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .heading h1 {
        font-size: 50px;
        
    }
}

@media (max-width: 768px) {
    .heading h1 {
        font-size: 40px;
        
    }
}

@media (max-width: 576px) {
    .heading img {
        height: 400px;
    }
    .heading h1 {
        font-size: 30px;
        top:300px;
    }
}

@media (max-width: 375px) {
    .heading h1 {
        font-size: 24px;
       
    }
}
.howToGetTo .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.howToGetTo h1 {
    font-size: 48px;
    margin-bottom: 40px;
    margin-top: 200px;
    text-align: center;
}

.howToGetTo h2 {
    font-size: 24px;
    margin: 30px 0;
    text-transform: uppercase;
}

.transport-options {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.transport-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 25%;
    cursor: pointer;
    padding: 15px 0;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    
}

.transport-option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #393e42;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

.transport-option:hover::after {
    width: 70%;
    left: 15%;
    background-color: #393e42;
}

.transport-option.active::after {
    width: 80%;
    left: 10%;
    background-color: #000;
    height: 3px;
}

.transport-option:hover .transport-name {
    color: #000;
    transform: translateY(-2px);
}

.transport-option:hover .transport-icon svg {
    transform: translateY(-2px) scale(1.05);
    fill: #000;
}

.transport-name {
    text-transform: uppercase;
    font-weight: bold;
    color: #555;
    transition: transform 0.3s ease, color 0.3s ease;
}

.transport-icon svg {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, fill 0.3s ease;
    fill: #555;
}

.transport-option.active .transport-name {
    color: #000;
}

.transport-option.active .transport-icon svg {
    fill: #000;
}

.transport-content {
    display: none;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.transport-content.active {
    display: block;
}

.info-section {
    line-height: 1.6;
    margin-bottom: 20px;
}
.info-section p{
    font-size: 18px;
    
}
.info-section h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
}

.info-section li{
    margin-bottom: 10px;
    font-size: 16px;
    list-style:none;
    display: flex;
}
.mapAndInput{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}
.mapAndInput b{
    width: 30%;
}
.mapAndInput img{
    height: 100px;
    width: 100px;
}
.mapAndInput:last-of-type{
    gap: 25px;
    transition: all 0.3s ease; 
    font-style: normal; 
}
.mapAndInput:last-of-type:hover{
    transform: scale(1.1);
}
.mapAndInput:last-of-type a{
    width: 29%;
    
}
.info-section li svg{
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: #333 !important;
    flex-shrink: 0; 
}
#bus-content .useful-links{
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Два рівні стовпці */
    gap: 10px; /* Відстань між елементами */
    list-style-type: none;
    justify-items: center;
    margin:30px 0 30px 0;
}
#bus-content .useful-links li{
    transition: all 0.3s ease;  
   
}
#bus-content .useful-links a{
    width: fit-content;
  
   
}
#bus-content .useful-links li:hover{
    transform: scale(1.1);
}  

#bus-content .route-list svg{
    flex-shrink: 0; 
}
#bus-content .mapAndInput{
    margin-bottom: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#bus-content .mapAndInput p{
    width: 40%;
}
#bus-content .allTables{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 50px;
    gap:40px;
}
#bus-content .route-info svg{
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: #333;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
    margin-left: 10px;
    align-self: center; 
}
#bus-content .table-wrapper{
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 300px;
    width: 100%;
    
}
#bus-content .route-info h4{
    font-size: 18px;
}
#bus-content .route-info p{
    transition: all 0.3s ease;
}
#bus-content .route-info p:hover{
    transform: translateY(-3px);
}
#bus-content td{
    padding: 5px;
}
#train-content td{
    padding: 5px;
}


#train-content .useful-links{
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Два рівні стовпці */
    gap: 10px; /* Відстань між елементами */
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}
#train-content .useful-links a{
display: block;
}
#train-content .useful-links li svg{
    flex-shrink: 0; 
}

#train-content .useful-links li{
    transition: all 0.3s ease;  
}
#train-content .useful-links li:hover{
    transform: scale(1.1);
}  

#train-content .route-list li svg{
    flex-shrink: 0; 
}
#train-content .mapAndInput{
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#train-content .mapAndInput p{
    width: 40%;
}
#train-content .allTables{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 40px;
}
#train-content .route-info svg{
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: #333;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
    margin-left: 10px;
    align-self: center; 
}
#train-content .table-wrapper{
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 300px;
}
#train-content .route-info h4{
    font-size: 18px;
}
#train-content .route-info p{
    transition: all 0.3s ease;
}
#train-content .route-info p:hover{
    transform: translateY(-3px);
}
#social-content ul img{
    width: 70px;
    height: 70px;
    margin-right: 10px;
}
#social-content .TextAndIcons li:nth-of-type(2) img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}
#social-content li{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#social-content ul span{
    width: 50%;
    font-size: 17px;
}
#social-content ul{
    margin-bottom: 40px;
}


.info-section a{
    font-weight: bold;
    
}
.info-section h4{
    text-align: center;
    font-weight: 600;
}
.textVideo p{
    width: 70%;
}
.textVideo {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
}

table{
    max-width: 800px !important;
    margin-bottom: 0 !important;
}
table tr{
    font-size: 20px;
}
table td, tr{
    border:2px solid rgba(0, 0, 0, 0.736);
    vertical-align: middle;
}
table thead svg{
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: #333;
    vertical-align: middle;
    display: inline-block;
}
.howToGetTo .mt-4{
    display: flex;
    gap: 20px;
    flex-direction: row-reverse;
}
.howToGetTo .mt-4 img{
    width: 40%;
    height: 30%;
}

.smallInfo svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    min-width: 24px;
}

.textInfo h4 {
    margin: 0 0 5px 0;
}

.textInfo p {
    margin: 0;
    color: #666;
}
.orderLiving h1 {
    font-size: 48px;
    margin-bottom: 40px;
    margin-top: 80px;
    font-weight: bold;
    text-align: center;
}
.orderExcursion h1 {
    font-size: 48px;
    margin-bottom: 40px;
    margin-top: 80px;
    font-weight: bold;
    text-align: center;
}

.parallax {
    position: relative;
    height: 500px; /* Adjust the height as needed */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient overlay */
.bg-gradient-light-violet-light-orange {
    background: linear-gradient(to top, rgba(255, 174, 75, 0.76), rgba(170, 120, 220, 0.5));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.opacity-extra-medium-2 {
    opacity: 0.7;
}

/* Typography styles */
.alt-font {
    font-family: 'Georgia', serif;
}

.text-white {
    color: white;
}

.font-weight-600 {
    font-weight: 600;
}

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

.last-paragraph-no-margin p:last-child {
    margin-bottom: 0;
}
 .orderLiving h1{
    font-family: 'montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 75px;
}.orderExcursion h1{
    font-family: 'montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 75px;
}
.position-relative {
    position: relative;
}
.excursion {
    background: white;
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.432);
    overflow: hidden;
    text-align: center;
    width: 380px;
    
    transition: transform 0.3s ease-in-out;
}

.excursion .image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.variantsToOrder h1{
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}
.excursion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  
    transition: filter 0.3s ease;
    filter: brightness(0.7);
}

.excursion small {
    top: 120px;
    font-size: 15px;
}

.excursion .Text {
    bottom: 80px;
    font-size: 25px;
    padding: 8px 12px;
    font-weight: 600;
    border:2px solid #f4f4f4;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.threeVariants{
    display: flex;
    justify-content: space-around;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 10px;
    
}
.excursion small,
.excursion .Text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-transform: uppercase;
    text-align: center;
    padding: 5px 10px;
    z-index: 2;
    
}



.threeVariants {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}
.excursion-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}
.excursion-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    padding: 80px;
   
}
.excursion-image, .excursion-text {
    flex: 1;
    padding: 10px;
}
.excursion-image {
    position: relative;
    align-self: center;
    object-fit: contain;
}
.excursion-image img {
    width: 600px;
    height: auto;
}
.excursion-caption {
    position: absolute;
    height: auto;
    min-height: 120px;
    width: 340px;
    bottom: -10px;
    left: -30px;
    background: #8b5e3b;
    color: white;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    z-index: 2;
}
.excursion-text {
    margin-left: 70px;
    width: 500px;
    max-height: 100vh;
    background-color: #f4f4f4;
    padding: 50px;
    
}
.excursion-text h1 {
    font-size: 25px;
   font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}
.excursion-text ul {
    list-style: none;
    padding: 0;
    font-size: 20px;
    line-height: 1.6;
}

.excursion-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
    
}
.nutrition {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #6b473b;
   
}

.nutrition-content {
    display: flex;
    max-width: 1600px;
    align-items: center;
    gap: 40px;
}

.nutrition-image {
    flex: 1;
}

.nutrition-image img {
    width: 100%;
    height: auto;
   
}

.nutrition-text {
    flex: 1;
}

.nutrition-text h1 {
    font-size: 50px;
    color:#f4f4f4;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}



.nutrition-info p {
    font-size: 18px;
    line-height: 1.6;
    color:#f4f4f4;
}

/* Стилі для секції nutrition */
.nutrition {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #6b473b;
    
}

.nutrition-content {
    display: flex;
    max-width: 100%;
    width: 100%;
    align-items: center;
    gap: 40px;
}

.nutrition-image {
    flex: 1;
    max-width: 50%;
}

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

.nutrition-text {
    flex: 1;
    padding: 20px;
    max-width: 50%;
}

.nutrition-text h1 {
    font-size: 42px;
    color: #f4f4f4;
    margin-bottom: 20px;
    font-weight: 700;
}

.nutrition-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #f4f4f4;
}
.nutrition-options{
    justify-content: space-around;
}
.nutrition-choose{
    display: flex;
    justify-content: center;
}

/* Reports Section */
/* Main container styling */
/* Main container styling */
.reports {
    margin-left: auto;
    margin-right: auto;
    max-width: 1600px;
    position: relative;
    padding: 20px;
    overflow: hidden; /* Prevent any overflow issues */
  }
  
  /* Image styling with responsive adjustments */
  .report-img img {
    width: 70%;
    height: auto;
    margin-bottom: 50px;
    margin-left: 150px;
    max-height: 700px;
    object-fit: cover;
  }
  
  /* Content area - container and text items */
  .report-content-area {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-top: -200px;
    flex-wrap: wrap;
  }
  
  /* Container styling */
  .report-container {
    background-color: #f8f5f0;
    width: 450px;
    padding: 30px;
    flex-shrink: 0;
    height: auto;
    z-index: 2;
    height: 350px; /* Ensure it's above other elements */
  }
  
  .report-container img {
    height: 60px;
    width: 60px;
  }
  
  .report-element {
    background-color: #f4f4f4;
    height: auto;
    min-height: 300px;
    color: #232323;
    text-align: start;
    padding: 40px 20px;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.307);
  }
  
  .report-element h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .report-element p {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
  }
  
  /* Text items styling */
  .report-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-grow: 1;
    margin-top: 200px;
    width: calc(100% - 480px); /* Account for container width + gap */
  }
  
  .report-item {
    display: flex;
    align-items: center;
    padding: 20px;
   
  }
  #nearby-content .report-content-area{
    height: 450px;
  }
  #nearbyl-content .report-content-area{
    height: 450px;
  }
  .report-item a {
    text-decoration: underline;
    color: #0097b2;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  
  .report-item a:hover {
    color: #007a8c;
  }
  .report-element a {
    text-decoration: underline;
    color: #0097b2;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  
  .report-element a:hover {
    color: #007a8c;
  }
  
  .report-item img {
    height: 90px;
    width: 90px;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .report-item span {
    font-size: 16px;
    line-height: 1.6;
  }
  /* Quote Section Styling */
.textInside {
    display: flex;
   
    padding: 50px 0 50px 0;
    height: 190px;
    align-items: center;
    text-align: justify;
    flex-direction: row-reverse;
    gap: 15%;
   
  }
  .text-heading h1{
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  /* Quote container */
  .text-overlay {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
.text-overlay {
    position: relative;
    padding-left: 20px;
}

.text-overlay::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 4px;
    height: 100%;
    background: #98634a;
}
  
  /* Text container and clear fix */
  .text {
    display: inline-block;
    width: 100%;
    position: relative;
    top:20px;
  }
  
  .text::after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Drop cap styling */
  .text h1 {
    float: left;
    padding-right: 10px;
    font-size: 80px;
    margin-bottom: 0;
    padding-bottom: 10px;
    color: #98634a;
    line-height: 0.8;
  }
  
  /* Main quote text */
  .text h4 {
    font-weight: 300;
    padding-top: 25px;
    width: calc(100% - 70px);
  }
  
  /* Quote attribution */
  .text h5 {
    clear: both;
    font-weight: 500;
    font-style: italic;
    text-align: right;
    width: 90%;
  }
  /* About Pictograms Section */
.about-pictograms {
    margin-bottom: 100px;
  }
  
  .about-pictograms .light-cream-bg {
    background-color: #f8f5f0;
  }
  
  .about-pictograms h1, 
  .about-pictograms h2, 
  .about-pictograms h3, 
  .about-pictograms h4, 
  .about-pictograms h5, 
  .about-pictograms h6 {
    margin-bottom: 20px;
  }
  
  .about-pictograms h4.section-title {
    margin-bottom: 3rem;
    font-weight: 600;
  }
  
  .about-pictograms h3.vision-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #ca923a;
    text-align: center;
  }
  
  .about-pictograms h3.vision-subtitle {
    font-size: 20px;
    line-height: var(--bs-body-line-height);
  }
  
  .about-pictograms h3.vision-subtitle b {
    font-weight: 600;
  }
  
  .about-pictograms .description-text {
    font-size: 18px;
    color: #232323;
    line-height: 30px;
    display: block;
    width: 90%;
    margin-bottom: 20px;
  }
  
  .about-pictograms .quote-text {
    color: white;
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 20px;
  }
  
  .about-pictograms .margin-bottom-large {
    margin-bottom: 3rem;
  }
  
  .about-pictograms .margin-bottom-medium {
    margin-bottom: 20px;
  }
  
  .about-pictograms .padding-sides {
    padding-left: 1.5rem;
    padding-right: 1rem;
  }
  
  .about-pictograms .background-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
  }
  
  .about-pictograms .main-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
  }
  
  .about-pictograms .quote-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: start;
  }
  
  .about-pictograms .quote-icon {
    width: 50px;
    height: 50px;
    align-self: start;
  }
  
  .about-pictograms .text-panel {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-pictograms .text-panel-inner {
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  /* Quote title used in about-pictograms */
  .quote-title {
    font-size: 30px;
    font-weight: 600;
    color: #f4f4f4;
    text-align: center;
  }
  .iconAndImg img{
    height: 80px;
    width: 80px;
    margin-right: 5px;
  }
  .iconAndImg{
    display: flex;
    align-items: center;
  }
  .about-pictograms .two-elements{
    gap: 100px;
  }
  
  /* Media queries for about-pictograms */
  @media (max-width: 1200px) {
    .about-pictograms .xl-padding-vertical {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
    
    .about-pictograms .xl-padding-sides {
      padding-left: 3rem;
      padding-right: 3rem;
    }
    
    .about-pictograms .description-text {
      width: 80%;
    }
  }
  
  @media (max-width: 992px) {
    .about-pictograms .lg-padding-all {
      padding: 5rem;
    }
    
    .about-pictograms .lg-padding-sides {
      padding-left: 6rem;
      padding-right: 6rem;
    }
    .iconAndImg{
        flex-direction: column;
        margin-top:20px;
    }
    .iconAndImg img{
        margin-right: 0;
        margin-bottom: 10px;
    }
    .about-pictograms .two-elements {
        gap: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .about-pictograms .md-padding-sides {
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .about-pictograms .text-panel-inner {
      text-align: justify;
      padding-left: .5rem;
      padding-right: .5rem;
    }
    
    .about-pictograms .md-padding-sides {
      padding-left: 1.2rem;
      padding-right: 1.2rem;
    }
    
    .about-pictograms .sm-height-700 {
      height: 700px;
    }
    
    .about-pictograms .sm-padding-sides {
      padding-left: 5rem;
      padding-right: 5rem;
    }
    
    .about-pictograms .xs-height-300 {
      height: 300px;
    }
    
    .about-pictograms h4.section-title,
    .about-pictograms .description-text {
      width: 100%;
      margin-bottom: 15px;
    }
    
    .about-pictograms .description-text {
      margin-bottom: 30px;
    }
    
    .about-pictograms .background-cover {
      width: 100%;
    }
    
    .about-pictograms .quote-text {
      text-align: start;
    }
  }
  
  @media (max-width: 375px) {
    .about-pictograms .background-cover {
      width: 100%;
      height: 250px !important;
    }
    
    .about-pictograms .main-image {
      height: 450px !important;
    }
  }
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .text-overlay {
      width: 70%;
    }
  }
  
  @media (max-width: 992px) {
    .text h1 {
      font-size: 70px;
    }
    
    .text h5 {
      font-size: 17px;
    }
  }
  
  @media (max-width: 768px) {
    .text-overlay {
      margin-top: 40px;
      width: 80%;
    }
    
    .text h1 {
      font-size: 55px;
    }
    
    .text h4 {
      font-size: 17px;
    }
    
    .text h5 {
      font-size: 14px;
    }
  }
  
  @media (max-width: 576px) {
    .textInside {
      margin: 30px 0 30px 0;
    }
    
    .text-overlay {
      width: 90%;
    }
    
    .text h1 {
      font-size: 50px;
    }
    
    .text h4 {
      width: auto;
      font-size: 14px;
    }
    
    
    .text h5 {
      font-size: 12px;
    }
  }
  
  @media (max-width: 375px) {
    .text h1 {
      font-size: 40px;
    }
    
    .text h4 {
      font-size: 13px;
    }
  }
  /* Large Desktops (1400px and up) */
  @media (min-width: 1400px) {
    .report-img img {
      width: 65%;
      margin-left: 200px;
    }
    
    
    
    .report-text {
      margin-top: 250px;
    }
  }
  
  /* Desktops (1200px to 1399px) */
  @media (max-width: 1399px) and (min-width: 1200px) {
    .report-content-area {
      margin-top: -180px;
    }
    
    .report-text {
      margin-top: 180px;
    }
  }
  
  /* Small Desktops and Large Tablets (992px to 1199px) */
  @media (max-width: 1199px) {
    .report-img img {
      width: 75%;
      margin-left: 100px;
    }
    
    .report-content-area {
      margin-top: -150px;
      gap: 25px;
      height: 450px;
    }
    
    .report-container {
      width: 400px;
    }
    
    .report-text {
      margin-top: 150px;
      width: calc(100% - 425px);
    }
    
    .report-element h3 {
      font-size: 26px;
    }
    
    .report-element p {
      font-size: 16px;
    }
    
  }
  
  /* Tablets (768px to 991px) */
  @media (max-width: 991px) {
    .report-img img {
      width: 80%;
      margin-left: 50px;
    }
    
    .report-content-area {
     height: auto;
      margin-top: -100px;
      gap: 20px;
    }
    
    .report-container {
      width: 90%;
      max-width: 500px;
      margin: 0 auto;
    }
    
    .report-text {
      margin-top: 20px;
      width: 100%;
    }
    
    .report-item {
      width: 90%;
      margin: 0 auto;
    }
  }
  
  /* Large Mobile (576px to 767px) */
  @media (max-width: 767px) {
    .report-img img {
      width: 90%;
      margin-left: 5%;
      margin-bottom: 30px;
    }
    
    .report-content-area {
      margin-top: -50px;
    }
    
    .report-container {
      width: 95%;
      padding: 25px;
    }
    
    .report-element {
      padding: 30px 15px;
    }
    
    .report-element h3 {
      font-size: 24px;
    }
    
    .report-text {
      gap: 20px;
    }
    
    .report-item {
      width: 95%;
      padding: 15px;
    }
    
    .report-item img {
      height: 70px;
      width: 70px;
      margin-right: 15px;
    }
  }
  
  /* Medium Mobile (480px to 575px) */
  @media (max-width: 575px) {
    .reports {
      padding: 0px;
    }
    .report-element p{
        text-align: center !important;
    }
    .nutrition-options{
        justify-content: space-between !important;
    }
    
    .report-img img {
      width: 100%;
      margin-left: 0;
      margin-bottom: 20px;
    }
    
    .report-content-area {
      margin-top: 0;
      gap: 0px;
    }
    
    .report-container {
      width: 100%;
      padding: 20px;
    }
    
    .report-element {
      padding: 20px 15px;
      min-height: 250px;
    }
    
    .report-element h3 {
      font-size: 22px;
      margin-bottom: 15px;
    }
    
    .report-element p {
      font-size: 15px;
    }
    
    .report-text {
      gap: 15px;
    }
    
    .report-item {
      align-items: center;
      width: 100%;
      padding: 15px 0px;
    }
    
    .report-item img {
      height: 60px;
      width: 60px;
      margin-right: 12px;
    }
    
    .report-item span {
      font-size: 14px;
      line-height: 1.4;
    }
    .report-container img{
        width: 50px;
        height: 50px;
    } 
  }
  
  /* Small Mobile (320px to 479px) */
  @media (max-width: 479px) {
    .report-container {
      padding: 15px;
    }
    
    .report-element {
      padding: 15px 10px;
      min-height: 220px;
    }
    
    .report-element h3 {
      font-size: 20px;
      margin-bottom: 10px;
    }
    
    .report-element p {
      font-size: 14px;
      line-height: 1.4;
    }
    
    .report-item {
      flex-direction: column;
      text-align: center;
    }
    
    .report-item img {
      height: 50px;
      width: 50px;
      margin-right: 0;
      margin-bottom: 10px;
    }
    
    .report-item span {
      font-size: 14px;
    }
  }
  
  /* Extra Small Mobile (below 320px) */
  @media (max-width: 319px) {
    .report-element h3 {
      font-size: 18px;
    }
    
    .report-element p {
      font-size: 13px;
    }
    
    .report-item span {
      font-size: 13px;
    }
  }
/* Адаптивність для планшетів */
@media (max-width: 992px) {
    .nutrition-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .nutrition-image, 
    .nutrition-text {
        max-width: 90%;
    }
    
    .nutrition-text h1 {
        font-size: 36px;
        text-align: center;
    }
    
    .nutrition-info p {
        text-align: center;
    }
}

/* Адаптивність для мобільних телефонів */
@media (max-width: 576px) {
    
    .nutrition-image, 
    .nutrition-text {
        max-width: 100%;
    }
    
    .nutrition-text h1 {
        font-size: 28px;
    }
    
    .nutrition-info p {
        font-size: 16px;
        text-align: center;
    }
}

/* Забезпечення плавної зміни розмірів */
@media (max-width: 768px) and (min-width: 577px) {
    .nutrition-text h1 {
        font-size: 32px;
    }
}

/* Адаптивність для різних екранів */
@media (max-width: 1200px) {
    .howToGetTo .container {
        max-width: 95%;
    }
   .orderLiving h1{
        font-size: 42px;
    }
    .orderExcursion h1{
        font-size: 42px;
    }
    .excursion {
        max-width: 280px;
    }
    .mapAndInput:last-of-type a{
        width: 40%;
        
    }
    .mapAndInput b{
        width: 40%;
    }
    .excursion-content{
        padding: 20px;
    }
    .excursion-text{
        margin-left: 20px;
    }
    .excursion-container{
        margin-bottom:100px;
    }
    .variantsToOrder{
        margin-bottom: 100px;
    }
}

@media (max-width: 992px) {
    .howToGetTo h1 {
        font-size: 42px;
        margin-top: 150px;
    }
    
    .howToGetTo h2 {
        font-size: 22px;
    }
    
    .info-section {
        font-size: 15px;
    }
     .orderLiving h1{
        font-size: 36px;
    }
    .orderExcursion h1{
        font-size: 36px;
    }
    .threeVariants {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .excursion {
        max-width: 260px;
        margin: 10px;
    }
    .mapAndInput:last-of-type a{
        width: 70%;
        
    }
    .mapAndInput b{
        width: 70%;
    }
    .mapAndInput img{
        height: 80px;
        width: 80px;
    }
    .textVideo p{
        width: 80%;
    }
    .howToGetTo .mt-4{
        display: flex;
        gap: 20px;
        flex-direction: column;
    }
    .howToGetTo .mt-4 img{
        width: 100%;
        height: 30%;
        margin-bottom: 20px;
    }
    #train-content .useful-links{
        grid-template-columns: repeat(2, 1fr); 
    }
    #train-content .allTables {
        gap: 20px;
    }
    #bus-content .useful-links{
        grid-template-columns: repeat(2, 1fr); 
    }
    #bus-content .allTables {
        gap: 20px;
    }
    .excursion-caption {
        width: 300px;
        min-height: 100px;
        font-size: 18px;
        bottom: -15px;
        left: -20px;
    }
    
    .excursion-image {
        margin-bottom: 50px;
    }
    .excursion-content{
        flex-direction: column;
    }.excursion-container{
        margin-bottom:150px;
    }
}

@media (max-width: 768px) {
    .howToGetTo h1 {
        font-size: 36px;
        margin-top: 120px;
    }
    
    .howToGetTo h2 {
        font-size: 20px;
    }
    
    .transport-options {
        display: flex;
        justify-content: center;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .transport-options::-webkit-scrollbar {
        display: none;
    }
    
    .transport-option {
        flex: 0 0 auto;
        width: auto;
        min-width: 150px;
        margin-right: 20px;
    }
    
    .transport-option:last-child {
        margin-right: 10px;
    }
    
    .transport-option::after {
        left: 50%;
        width: 0;
        transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }
    
    .transport-option:hover::after,
    .transport-option.active::after {
        width: 90%;
        left: 5%;
    }
    
    .transport-option:hover .transport-name,
    .transport-option.active .transport-name {
        transform: translateY(-2px);
    }
    
    .transport-option:hover .transport-icon svg,
    .transport-option.active .transport-icon svg {
        transform: translateY(-2px) scale(1.1);
    }
    
    .transport-content {
        padding: 15px;
    }
    
    .orderLiving h1{
        font-size: 32px;
    }
    .orderExcursion h1{
        font-size: 32px;
    }
    .threeVariants {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .excursion {
        max-width: 350px;
        margin: 0;
    }

    .mapAndInput:last-of-type a{
        width: 85%;
        
    }
    .mapAndInput b{
        width: 85%;
    }
    .mapAndInput img{
        height: 70px;
        width: 70px;
    }
    .textVideo p{
        width: 90%;
    }
    thead th:nth-child(2) svg {
        margin-right: 0;
    }
    .excursion-content {
        flex-direction: column;
    }
    
    
    .excursion-text {
        width: 450px;
        height: 400px;
        padding: 30px;
        margin-left: 0;
        margin-top: 40px;
    }
    
    .excursion-caption {
        width: 280px;
        min-height: 90px;
        font-size: 16px;
        padding: 12px;
        bottom: -15px;
        left: 0;
    }
    .excursion-image img{
        width: 450px;
    }

    .excursion-text {
        padding: 30px;
        margin-top: 50px;
    }
    
    .excursion-text h1 {
        font-size: 28px;
        margin-bottom: 25px;
        width: 100%;
        text-align: center;
    }
    
    
    
    .excursion-text ul {
        font-size: 16px;
    }
    
    .excursion-info {
        gap: 20px;
        align-items: center;
    }
    
    .excursion-text li {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .howToGetTo h1 {
        font-size: 30px;
        margin-top: 100px;
        margin-bottom: 30px;
    }
    
    .howToGetTo h2 {
        font-size: 18px;
        margin: 20px 0;
    }
    
    .howToGetTo .container {
        padding: 15px;
    }
    
    .transport-option {
        min-width: 130px;
    }
    
    .transport-name {
        font-size: 14px;
    }
    
    .transport-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .transport-content {
        padding: 5px;
        margin-top: 15px;
    }
    
    .info-section h3 {
        font-size: 20px;
    }
    .info-section h4 {
        font-size: 17px;
    }.info-section p {
        text-align: justify;
    }
    
    .textInfo h4 {
        font-size: 15px;
    }
    
    .textInfo p {
        font-size: 14px;
    }
    .orderLiving h1{
        font-size: 28px;
    }
    .orderExcursion h1{
        font-size: 28px;
    }
    .excursion {
        max-width: 90%;
    }

    .mapAndInput:last-of-type a{
        width: 100%;
        
    }
    .mapAndInput b{
        width: 100%;
    }
    .mapAndInput img{
        height: 60px;
        width: 60px;
    }
    .textVideo p{
        width: 100%;
    }
    .howToGetTo .mt-4{
        padding: 0;
    }
    .excursion-caption {
        width: 250px;
        min-height: 80px;
        font-size: 15px;
        bottom: -15px;
        left: 40%;
        transform: translateX(-50%);
    }
    
    .excursion-image {
        margin-bottom: 40px;
    }

    #social-content ul img{
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }
    #social-content li{
        flex-direction: column;
    }
    #social-content .TextAndIcons li:nth-of-type(2) img {
        width: 70px;
        height: 70px;
    }
    
    #social-content ul span{
        width: 100%;
        font-size: 15px;
    }
    #train-content .mapAndInput {
        flex-direction: column;
    }
    #bus-content .mapAndInput {
        flex-direction: column;
    }

    .excursion-content {
        padding: 0;
    }
    .excursion-text {
        width: 100%;
        padding: 30px;
        margin-left: 0;
        margin-top: 40px;
    }
    
    .excursion-caption {
        width: 180px;
        min-height: 90px;
        font-size: 13px;
        padding: 12px;
        bottom: -15px;
        left: 120px;
    }
    .excursion-image img{
        width: 90%;
        padding-left: 50px;
    }
    .excursion-text {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .excursion-text h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .excursion-text ul {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .excursion-info {
        gap: 15px;
    }
    
    .excursion-text li {
        margin-bottom: 10px;
    }
    /* Фіксування проблеми з transport-option на малих екранах */
    .transport-options {
        padding-left: 10px;
        padding-right: 10px;
        justify-content: flex-start; /* Змінюємо з center на flex-start */
        gap: 15px; /* Додаємо фіксований відступ між елементами */
    }
    
    .transport-option {
        min-width: 120px;
        flex-shrink: 0;
        margin-right: 10px !important; /* Додаємо !important для уникнення конфліктів */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .transport-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 24px;
        min-height: 24px;
    }
    
    .transport-icon svg {
        width: 24px !important;
        height: 24px !important;
        display: block !important;
        visibility: visible !important;
    }
}

@media (max-width: 375px) {
    .howToGetTo h1 {
        font-size: 28px;
    }
   
    thead th{
        font-size: 14px;
    }
    .transport-option {
        min-width: 110px;
        padding: 10px 0;
    }
    
    .transport-name {
        font-size: 12px;
    }
    .howToGetTo .container {
        max-width: 100%;
    }
   
    .howToGetTo td, tr{
        font-size: 15px;
    }
    .excursion {
        max-width: 100%;
    }
    .info-section li svg{
        margin-right: 5px;
    }
    #bus-content .useful-links{
        grid-template-columns: repeat(1, 1fr); 
    }
    #bus-content .allTables {
        gap: 10px;
    }
    .info-section ul{
        padding-left: 0 !important;
    }
    #bus-content .mapAndInput p{
        width: 100%;
    }
    #train-content .mapAndInput p{
        width: 100%;
    }
    
    #train-content .useful-links{
        grid-template-columns: repeat(1, 1fr); 
    }
    #train-content .allTables {
        gap: 10px;
    }
    .excursion-text {
        padding: 20px 15px;
    }
    
    .excursion-text h1 {
        font-size: 22px;
    }
    
    .excursion-text ul {
        font-size: 14px;
    }
    
    .excursion-info {
        gap: 10px;
    }
    .excursion-container {
        margin-bottom: -50px;
    }
    .threeVariants{
        margin-bottom: -100px;
    }
    .transport-options {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .transport-option {
        min-width: 105px; /* Трохи зменшуємо для найменших екранів */
    }
    
    /* Переконуємося, що іконки видно */
    .transport-option:first-child {
        margin-left: 5px;
    }
}

@media (min-width: 1400px) {
    .howToGetTo .container {
        max-width: 1350px;
    }
    
    .howToGetTo h1 {
        font-size: 54px;
    }
    
}
/* Основні стилі для textInside */
.textInside {
    display: flex;
    padding: 50px 0 50px 0;
    min-height: 190px;
    height: auto;
    align-items: center;
    text-align: justify;
    flex-direction: row-reverse;
    gap: 15%;
    margin: 60px 0;
    width: 100%;
}

/* Покращення стилів для вертикальної лінії */
.text-overlay {
    position: relative;
    padding-left: 20px;
}

.text-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #98634a;
}

/* Адаптивні медіа-запити */
@media (max-width: 992px) {
    .textInside {
        gap: 8%;
        padding: 40px 0;
    }
    
    .text-heading h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .textInside {
        flex-direction: column-reverse;
        gap: 30px;
        height: auto;
        padding: 40px 20px;
    }
    
    .text-overlay {
        width: 90% !important;
        margin-top: 20px;
    }
    
    .text-heading h1 {
        font-size: 36px;
        text-align: center;
    }
    
    
}

@media (max-width: 576px) {
    .textInside {
        margin: 30px 0;
        padding: 30px 15px;
    }
    
    .text-overlay {
        width: 100% !important;
    }
    
    .text-heading h1 {
        font-size: 30px;
        
    }
    
    .text h1 {
        font-size: 50px !important;
    }
    
    .text h4 {
        font-size: 14px !important;
        width: calc(100% - 50px) !important;
    }
    
    .text h5 {
        width: 100% !important;
        text-align: right !important;
        font-size: 12px !important;
    }
    
    .text-overlay::after {
        width: 3px;
    }
}

@media (max-width: 375px) {
    .textInside {
        padding: 20px 10px;
    }
    
    .text-heading h1 {
        font-size: 26px;
    }
    
    .text h1 {
        font-size: 40px !important;
        padding-right: 5px !important;
    }
    
    .text h4 {
        font-size: 13px !important;
        padding-top: 15px !important;
    }
    
    .text::after {
        display: block;
        margin-top: 10px;
    }
}

