body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: #3d413e8c;} /* Light grey background */
/*______________  Video Container Start ______________ */
#video-container {
    position: relative;
    width: 100%;
    max-width: 1150px;
    height: auto;
    overflow: hidden;
    top: 20px;
    padding: 5px;
    border: 2px solid #000;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;}
#video {
    width: 100%;
    height: auto;}
.video_title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.3);
    color: rgb(212, 202, 198);
    text-align: center;
    font-size: 5vw; /* Responsive font size */
    font-weight: bold;}
/*_____________  Links Container Start ______________ */
#links-container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    padding: 15x;
    background-color: #4d464d; /* container background */
    border: 2px solid #000;
    border-radius: 8px;
    max-width: 1150px;
    width: 100%;
    box-sizing: border-box;    }  
#links-container a {
    font-size: 2.5vw; /* Responsive font size */
    font-weight: bold;
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    background-color: rgba(177, 163, 163, 0.6);
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 10px;}
#links-container a:hover {
    background-color: #007bff;
    color: #fff;}
/*________ Responsive Font for video / Links _____________ */
@media (max-width: 1024px) {
    .video_title {
        font-size: 4.5vw;    }
    #links-container a {
        font-size: 2.5vw;    }}
@media (max-width: 768px) {
    .video_title {
        font-size: 2.0vw;    }
    #links-container a {
        font-size: 2.5vw;    }}
@media (max-width: 480px) {
    .video_title {
        font-size: 2.5vw;    }
    #links-container a {
        font-size: 3cqmin;    }}

        /*_________ Our Adventures Are Unbeatable Start ______________ */
.first-header { 
    position: relative;
    margin: 30px 0;
    font-size: 5.0vw;  /* Adjusted to viewport width */
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: rgb(86, 23, 56); /* Add your desired color here */
    margin-bottom: 60px;}      /* Padding below Heading */
.first-header .underline {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: black;}

/*____________ Why Choose Us Container? __________________*/
.comparison-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures it takes at least full viewport height */
    padding: 10px;
    box-sizing: border-box;
    width: 100%; }/* Ensure it takes full width of its parent */
.comparison-container {
    background-color: #a66565;  /* Main Background  */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 90%;
    max-width: 1100px;
    margin: auto; /* Helps center when max-width is applied */
    margin-top: 20px;
    margin-bottom: 80px;
    padding: -5px;
    position: relative;
    z-index: 1;
    border: 4px solid #264073; /* Border to catch attention */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.comparison-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #a7d9ff6d, #6699ff, #4a77d9);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(15px);}
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.0;}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;}
.comparison-table th,
.comparison-table td {
    padding: 10px 15px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #eee;
    font-size: 1.5em;
    line-height: 1.6;}
.comparison-table th {
    background-color: #e0f2ff; /* Light blue for headers */
    color: #2c537d; /* Darker blue text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid #ccc;}
.comparison-table tr:last-child td {
    border-bottom: none;}
.comparison-table td:first-child {
    background-color: #a1aaad; /* Very light blue for our side */
    color: #004085; /* Dark blue text for our side */
    font-weight: 500;}
.comparison-table td:last-child {
    background-color: #82a5b0; /* Light red for their side */
    color: #721c24; }/* Dark red text for their side */

.comparison-table strong {
    color: #0056b3; }/* Stronger blue for key points */
/* Specific styling for the price difference */
.price-us {
    font-size: 1.2em;
    color: #28a745; /* Green for good price */
    font-weight: 700;}
.price-them {
    font-size: 1.2em;
    color: #dc3545; /* Red for bad price */
    font-weight: 700;
    text-decoration: line-through; }/* Strikethrough for higher price */
@media (max-width: 768px) {
    .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td, .comparison-table th {
        display: block;    }

    .comparison-table thead {
        display: none;    }
    .comparison-table tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        overflow: hidden;    }
    .comparison-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;    }
    .comparison-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: 600;
        text-align: left;
        color: #555;    }
    .comparison-table td:first-child::before {
        color: #004085;    }
    .comparison-table td:last-child::before {
        color: #721c24;  }}

/*_________________ My Story Start ________ */
.first-paragraph-header { 
    position: relative;
    margin: -15px 0;
    font-size: 5.0vw;  /* Adjusted to viewport width */
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: rgb(86, 23, 56); /* Add your desired color here */
    margin-bottom: 60px;}      /* Padding below Heading */
.first-paragraph-header .underline {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: black;}

p { margin: 0; }          /* Remove default margins from paragraphs */
.first-paragraph-text {          
    width: 90%;           /* Adjust the width */
    display: flex;
    height: auto;         /* Adjust the height     */
    margin: auto;       /* Center the container            */
    margin-top:5px;       /* Center the container            */
    background: rgba(162, 158, 162, 0.0);
    border: 2px solid rgba(162, 158, 162, 0.0);
    text-indent: 30px; /* Indents the first word */
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    line-height: 1.2;
    color: #333333;}
 @media (max-width: 600px) {
.first-paragraph-text {
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    text-indent: 15px; }}

.second-paragraph-text{
    width: 90%;           /* Adjust the width */
    display: flex;
    height: auto;         /* Adjust the height     */
    margin: auto;       /* Center the container            */
    margin-top:10px;       /* Center the container            */
    background: rgba(162, 158, 162, 0.0);
    border: 2px solid rgba(162, 158, 162, 0.0);
    text-indent: 30px; /* Indents the first word */
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    line-height: 1.2;
    color: #333333;}
@media (max-width: 600px) {
.second-paragraph-text {
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    text-indent: 15px; }}

.third-paragraph-text{
    width: 90%;           /* Adjust the width */
    display: flex;
    height: auto;         /* Adjust the height     */
    margin: auto;       /* Center the container            */
    margin-top:10px;       /* Center the container            */
    background: rgba(162, 158, 162, 0.0);
    border: 2px solid rgba(162, 158, 162, 0.0);
    text-indent: 30px; /* Indents the first word */
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    line-height: 1.2;
    color: #333333;}
@media (max-width: 600px) {
.third-paragraph-text {
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    text-indent: 15px; }}

/* ____ Frequently Asked Questions Start _____ */
.FAQ-paragraph-header {        
    position: relative;
    margin: 30px 0;
    font-size: 5.0vw;  /* Adjusted to viewport width */
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: rgb(86, 23, 56); /* Add your desired color here */
    margin-bottom: 60px;}      /* Padding below Heading */
.FAQ-paragraph-header .underline {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: black;}
.FAQ-paragraph-text{
    width: 90%;           /* Adjust the width */
    display: flex;
    height: auto;         /* Adjust the height     */
    margin: auto;       /* Center the container            */
    margin-top:-10px;       /* Center the container            */
    margin-bottom: 10px;  /* Padding below the container */
    background: rgba(162, 158, 162, 0.0);
    border: 2px solid rgba(162, 158, 162, 0.0);
    text-indent: 30px; /* Indents the first word */
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    line-height: 1.2;
    color: #333333;}
@media (max-width: 600px) {
.FAQ-paragraph-text {
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    text-indent: 15px; }}
/* _______ Frequently Asked Questions End _________ */

/* ______________ How Many People Per Tour Start  _____ 70 _________ */
.large-container70 {
  display: flex;       /* Enable Flexbox for layout */
  align-items: flex-start; /* Align items to the top */
  background-color: lightblue;
  padding: 20px;
  font-size: 1.2em;   /* Initial large font size */
  width: 90%;         /* Initial large width */
  box-sizing: border-box; /* padding and border */
  border-radius: 15px; /* Add rounded corners */
  margin: 20px auto;} /* Center the container */
.small-container70 {
  width: 400px;         /* Initial small width */
  height: 450px;       /* Initial small height */
  margin-right: 20px;  /* Add some spacing between the image and text */
  margin-left: -60px; /* Add some spacing between the image and text */
  overflow: hidden;     /* Clip the image to the container size */
  flex-shrink: 0;          /* Prevent the small container from shrinking */
  border-radius: 10px;} /* Add rounded corners */
.small-container70 img {
  width: 100%;
  height: 100%;
  display: block; /* Remove any extra space below the image */
  object-fit: cover; /* Ensure the image covers the entire container */
  border-radius: 10px;} /* Add rounded corners to the image */
.text-container70 {
  flex-grow: 1; /* Allow the text container to take up remaining space */
  display: flex; /* Enable Flexbox for vertical stacking of text */
  flex-direction: column;
  align-items: center;} /* Center items horizontally */
.large-container-title70 {
  font-weight: bold;
  margin-bottom: 10px; /* Add some space below the title */
  font-size: 1.5em; /* Increase the font size of the title */
  text-align: center; }/* Ensure text is centered within the title div */
/* Media query for smaller screens */
@media (max-width: 768px) {
  .large-container70 {
    font-size: 1em; /* Reduce font size */
    width: 95%; /* Increase width on smaller screens */
    padding: 15px;
    border-radius: 10px; }/* Adjust rounded corners for smaller screens */
  .small-container70 {
    width: 70px; /* Reduce square size */
    height: 70px; /* Reduce square size */
    margin-right: 15px; /* Adjust spacing */
    margin-left: -20px; /* Adjust spacing */
    border-radius: 8px; }/* Adjust rounded corners for smaller screens */
  .small-container70 img {
    border-radius: 8px; }/* Adjust rounded corners for smaller screens */
  .text-container70 {
    align-items: center; }/* Center items horizontally */
  .large-container-title70 {
    font-size: 1.5em; /* Adjust title size for smaller screens */
  }  }
/* Media query for even smaller screens */
@media (max-width: 480px) {
  .large-container70 {
    font-size: 0.8em; /* Further reduce font size */
    padding: 10px;
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container70 {
    width: 50px; /* Reduce square size */
    height: 50px; /* Reduce square size */
    margin-right: 10px; /* Adjust spacing */
    margin-left: -15px; /* Adjust spacing */
    border-radius: 5px;} /* Adjust rounded corners for even smaller screens */
  .small-container70 img {
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .text-container70 {
    align-items: center; }/* Center items horizontally */
  .large-container-title70 {
    font-size: 1.2em; /* Adjust title size for even smaller screens */
  }  }
/* ______________ Can You Arrange Travel Visas Start _______71_______ */
.large-container71 {
  display: flex; /* Enable Flexbox for layout */
  align-items: flex-start; /* Align items to the top */
  background-color: lightblue;
  padding: 20px;
  font-size: 1.2em; /* Initial large font size */
  width: 90%; /* Initial large width */
  /* Remove the fixed height */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  border-radius: 15px; /* Add rounded corners */
  margin: 20px auto;} /* Center the container horizontally with some top/bottom margin */
.small-container71 {
  width: 400px; /* Initial small width */
  height: 450px; /* Initial small height */
  margin-right: 20px; /* Add some spacing between the image and text */
  margin-left: -60px; /* Add some spacing between the image and text */
  overflow: hidden; /* Clip the image to the container size */
  flex-shrink: 0; /* Prevent the small container from shrinking */
  border-radius: 10px; }/* Add rounded corners */
.small-container71 img {
  width: 100%;
  height: 100%;
  display: block; /* Remove any extra space below the image */
  object-fit: cover; /* Ensure the image covers the entire container */
  border-radius: 10px; }/* Add rounded corners to the image */
.text-container71 {
  flex-grow: 1; /* Allow the text container to take up remaining space */
  display: flex; /* Enable Flexbox for vertical stacking of text */
  flex-direction: column;
  align-items: center; }/* Center items horizontally */
.large-container-title71 {
  font-weight: bold;
  margin-bottom: 10px; /* Add some space below the title */
  font-size: 1.5em; /* Increase the font size of the title */
  text-align: center; }/* Ensure text is centered within the title div */
/* Media query for smaller screens */
@media (max-width: 768px) {
  .large-container71 {
    font-size: 1em; /* Reduce font size */
    width: 95%; /* Increase width on smaller screens */
    padding: 15px;
    border-radius: 10px;} /* Adjust rounded corners for smaller screens */
  .small-container71 {
    width: 70px; /* Reduce square size */
    height: 70px; /* Reduce square size */
    margin-right: 15px; /* Adjust spacing */
    margin-left: -20px; /* Adjust spacing */
    border-radius: 8px; }/* Adjust rounded corners for smaller screens */
  .small-container71 img {
    border-radius: 8px; }/* Adjust rounded corners for smaller screens */
  .text-container7 {
    align-items: center; }/* Center items horizontally */
  .large-container-title71 {
    font-size: 1.5em; /* Adjust title size for smaller screens */
  }  }
/* Media query for even smaller screens */
@media (max-width: 480px) {
  .large-container71 {
    font-size: 0.8em; /* Further reduce font size */
    padding: 10px;
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container71 {
    width: 50px; /* Reduce square size */
    height: 50px; /* Reduce square size */
    margin-right: 10px; /* Adjust spacing */
    margin-left: -15px; /* Adjust spacing */
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container71 img {
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .text-container71 {
    align-items: center; }/* Center items horizontally */
  .large-container-title71 {
    font-size: 1.2em; /* Adjust title size for even smaller screens */
  }  }
/* ______________ Who Are My Travelling Companion? Start _____ 72 _______ */
.large-container72 {
  display: flex; /* Enable Flexbox for layout */
  align-items: flex-start; /* Align items to the top */
  background-color: lightblue;
  padding: 20px;
  font-size: 1.2em; /* Initial large font size */
  width: 90%; /* Initial large width */
  /* Remove the fixed height */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  border-radius: 15px; /* Add rounded corners */
  margin: 20px auto;} /* Center the container horizontally with some top/bottom margin */
.small-container72 {
  width: 400px; /* Initial small width */
  height: 450px; /* Initial small height */
  margin-right: 20px; /* Add some spacing between the image and text */
  margin-left: -60px; /* Add some spacing between the image and text */
  overflow: hidden; /* Clip the image to the container size */
  flex-shrink: 0; /* Prevent the small container from shrinking */
  border-radius: 10px;} /* Add rounded corners */
.small-container72 img {
  width: 100%;
  height: 100%;
  display: block; /* Remove any extra space below the image */
  object-fit: cover; /* Ensure the image covers the entire container */
  border-radius: 10px;} /* Add rounded corners to the image */
.text-container72 {
  flex-grow: 1; /* Allow the text container to take up remaining space */
  display: flex; /* Enable Flexbox for vertical stacking of text */
  flex-direction: column;
  align-items: center; }/* Center items horizontally */
.large-container-title72 {
  font-weight: bold;
  margin-bottom: 10px; /* Add some space below the title */
  font-size: 1.5em; /* Increase the font size of the title */
  text-align: center; }/* Ensure text is centered within the title div */
/* Media query for smaller screens */
@media (max-width: 768px) {
  .large-container72 {
    font-size: 1em; /* Reduce font size */
    width: 95%; /* Increase width on smaller screens */
    padding: 15px;
    border-radius: 10px; }/* Adjust rounded corners for smaller screens */
  .small-container72 {
    width: 70px; /* Reduce square size */
    height: 70px; /* Reduce square size */
    margin-right: 15px; /* Adjust spacing */
    margin-left: -20px; /* Adjust spacing */
    border-radius: 8px;} /* Adjust rounded corners for smaller screens */
  .small-container72 img {
    border-radius: 8px;} /* Adjust rounded corners for smaller screens */
  .text-container72 {
    align-items: center; }/* Center items horizontally */
  .large-container-title72 {
    font-size: 1.5em; /* Adjust title size for smaller screens */
  }  }
/* Media query for even smaller screens */
@media (max-width: 480px) {
  .large-container72 {
    font-size: 0.8em; /* Further reduce font size */
    padding: 10px;
    border-radius: 5px;} /* Adjust rounded corners for even smaller screens */
  .small-container72 {
    width: 50px; /* Reduce square size */
    height: 50px; /* Reduce square size */
    margin-right: 10px; /* Adjust spacing */
    margin-left: -15px; /* Adjust spacing */
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container72 img {
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .text-container72 {
    align-items: center; }/* Center items horizontally */
  .large-container-title72 {
    font-size: 1.2em; /* Adjust title size for even smaller screens */
  }  }

/* _____ What Does The Tour Package Include Start _____73______ */
.large-container73 {
  display: flex; /* Enable Flexbox for layout */
  align-items: flex-start; /* Align items to the top */
  background-color: lightblue;
  padding: 20px;
  font-size: 1.2em; /* Initial large font size */
  width: 90%; /* Initial large width */
  /* Remove the fixed height */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  border-radius: 15px; /* Add rounded corners */
  margin: 20px auto; }/* Center the container horizontally with some top/bottom margin */
.small-container73 {
  width: 400px; /* Initial small width */
  height: 450px; /* Initial small height */
  margin-right: 20px; /* Add some spacing between the image and text */
  margin-left: -60px; /* Add some spacing between the image and text */
  overflow: hidden; /* Clip the image to the container size */
  flex-shrink: 0; /* Prevent the small container from shrinking */
  border-radius: 10px;} /* Add rounded corners */
.small-container73 img {
  width: 100%;
  height: 100%;
  display: block; /* Remove any extra space below the image */
  object-fit: cover; /* Ensure the image covers the entire container */
  border-radius: 10px;} /* Add rounded corners to the image */
.text-container73 {
  flex-grow: 1; /* Allow the text container to take up remaining space */
  display: flex; /* Enable Flexbox for vertical stacking of text */
  flex-direction: column;
  align-items: center; }/* Center items horizontally */
.large-container-title73 {
  font-weight: bold;
  margin-bottom: 10px; /* Add some space below the title */
  font-size: 1.5em; /* Increase the font size of the title */
  text-align: center; }/* Ensure text is centered within the title div */
/* Media query for smaller screens */
@media (max-width: 768px) {
  .large-container73 {
    font-size: 1em; /* Reduce font size */
    width: 95%; /* Increase width on smaller screens */
    padding: 15px;
    border-radius: 10px; }/* Adjust rounded corners for smaller screens */
  .small-container73 {
    width: 70px; /* Reduce square size */
    height: 70px; /* Reduce square size */
    margin-right: 15px; /* Adjust spacing */
    margin-left: -20px; /* Adjust spacing */
    border-radius: 8px; }/* Adjust rounded corners for smaller screens */
  .small-container73 img {
    border-radius: 8px;} /* Adjust rounded corners for smaller screens */
  .text-container73 {
    align-items: center; }/* Center items horizontally */
  .large-container-title73 {
    font-size: 1.5em; /* Adjust title size for smaller screens */
  }  }
/* Media query for even smaller screens */
@media (max-width: 480px) {
  .large-container73 {
    font-size: 0.8em; /* Further reduce font size */
    padding: 10px;
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container73 {
    width: 50px; /* Reduce square size */
    height: 50px; /* Reduce square size */
    margin-right: 10px; /* Adjust spacing */
    margin-left: -15px; /* Adjust spacing */
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container73 img {
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .text-container73 {
    align-items: center; }/* Center items horizontally */
  .large-container-title73 {
    font-size: 1.2em; /* Adjust title size for even smaller screens */
  }  }
/*______________ Is Alcohol Included Start _____________74_________ */
.large-container74 {
  display: flex; /* Enable Flexbox for layout */
  align-items: flex-start; /* Align items to the top */
  background-color: lightblue;
  padding: 20px;
  font-size: 1.2em; /* Initial large font size */
  width: 90%; /* Initial large width */
  /* Remove the fixed height */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  border-radius: 15px; /* Add rounded corners */
  margin: 20px auto; }/* Center the container horizontally with some top/bottom margin */
.small-container74 {
  width: 400px; /* Initial small width */
  height: 450px; /* Initial small height */
  margin-right: 20px; /* Add some spacing between the image and text */
  margin-left: -60px; /* Add some spacing between the image and text */
  overflow: hidden; /* Clip the image to the container size */
  flex-shrink: 0; /* Prevent the small container from shrinking */
  border-radius: 10px;} /* Add rounded corners */
.small-container74 img {
  width: 100%;
  height: 100%;
  display: block; /* Remove any extra space below the image */
  object-fit: cover; /* Ensure the image covers the entire container */
  border-radius: 10px;} /* Add rounded corners to the image */
.text-container74 {
  flex-grow: 1; /* Allow the text container to take up remaining space */
  display: flex; /* Enable Flexbox for vertical stacking of text */
  flex-direction: column;
  align-items: center; }/* Center items horizontally */
.large-container-title74 {
  font-weight: bold;
  margin-bottom: 10px; /* Add some space below the title */
  font-size: 1.5em; /* Increase the font size of the title */
  text-align: center; }/* Ensure text is centered within the title div */
/* Media query for smaller screens */
@media (max-width: 768px) {
  .large-container74 {
    font-size: 1em; /* Reduce font size */
    width: 95%; /* Increase width on smaller screens */
    padding: 15px;
    border-radius: 10px; }/* Adjust rounded corners for smaller screens */
  .small-container74 {
    width: 70px; /* Reduce square size */
    height: 70px; /* Reduce square size */
    margin-right: 15px; /* Adjust spacing */
    margin-left: -20px; /* Adjust spacing */
    border-radius: 8px; }/* Adjust rounded corners for smaller screens */
  .small-container74 img {
    border-radius: 8px;} /* Adjust rounded corners for smaller screens */
  .text-container74 {
    align-items: center; }/* Center items horizontally */
  .large-container-title74 {
    font-size: 1.5em; /* Adjust title size for smaller screens */
  }  }
/* Media query for even smaller screens */
@media (max-width: 480px) {
  .large-container74 {
    font-size: 0.8em; /* Further reduce font size */
    padding: 10px;
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container74 {
    width: 50px; /* Reduce square size */
    height: 50px; /* Reduce square size */
    margin-right: 10px; /* Adjust spacing */
    margin-left: -15px; /* Adjust spacing */
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container74 img {
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .text-container74 {
    align-items: center; }/* Center items horizontally */
  .large-container-title74 {
    font-size: 1.2em; /* Adjust title size for even smaller screens */
  }  }
/*______________ What Isn't included Start _____________75_________ */
.large-container75 {
  display: flex; /* Enable Flexbox for layout */
  align-items: flex-start; /* Align items to the top */
  background-color: lightblue;
  padding: 20px;
  font-size: 1.2em; /* Initial large font size */
  width: 90%; /* Initial large width */
  /* Remove the fixed height */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  border-radius: 15px; /* Add rounded corners */
  margin: 20px auto; }/* Center the container horizontally with some top/bottom margin */
.small-container75 {
  width: 400px; /* Initial small width */
  height: 450px; /* Initial small height */
  margin-right: 20px; /* Add some spacing between the image and text */
  margin-left: -60px; /* Add some spacing between the image and text */
  overflow: hidden; /* Clip the image to the container size */
  flex-shrink: 0; /* Prevent the small container from shrinking */
  border-radius: 10px;} /* Add rounded corners */
.small-container75 img {
  width: 100%;
  height: 100%;
  display: block; /* Remove any extra space below the image */
  object-fit: cover; /* Ensure the image covers the entire container */
  border-radius: 10px;} /* Add rounded corners to the image */
.text-container75 {
  flex-grow: 1; /* Allow the text container to take up remaining space */
  display: flex; /* Enable Flexbox for vertical stacking of text */
  flex-direction: column;
  align-items: center; }/* Center items horizontally */
.large-container-title75 {
  font-weight: bold;
  margin-bottom: 10px; /* Add some space below the title */
  font-size: 1.5em; /* Increase the font size of the title */
  text-align: center; }/* Ensure text is centered within the title div */
/* Media query for smaller screens */
@media (max-width: 768px) {
  .large-container75 {
    font-size: 1em; /* Reduce font size */
    width: 95%; /* Increase width on smaller screens */
    padding: 15px;
    border-radius: 10px; }/* Adjust rounded corners for smaller screens */
  .small-container75 {
    width: 70px; /* Reduce square size */
    height: 70px; /* Reduce square size */
    margin-right: 15px; /* Adjust spacing */
    margin-left: -20px; /* Adjust spacing */
    border-radius: 8px; }/* Adjust rounded corners for smaller screens */
  .small-container75 img {
    border-radius: 8px;} /* Adjust rounded corners for smaller screens */
  .text-container75 {
    align-items: center; }/* Center items horizontally */
  .large-container-title75 {
    font-size: 1.5em; /* Adjust title size for smaller screens */
  }  }
/* Media query for even smaller screens */
@media (max-width: 480px) {
  .large-container75 {
    font-size: 0.8em; /* Further reduce font size */
    padding: 10px;
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container75 {
    width: 50px; /* Reduce square size */
    height: 50px; /* Reduce square size */
    margin-right: 10px; /* Adjust spacing */
    margin-left: -15px; /* Adjust spacing */
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container75 img {
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .text-container75 {
    align-items: center; }/* Center items horizontally */
  .large-container-title75 {
    font-size: 1.2em; /* Adjust title size for even smaller screens */
  }  }
/*______________ What Clothes Should I Bring Start _____76_________ */
.large-container76 {
  display: flex; /* Enable Flexbox for layout */
  align-items: flex-start; /* Align items to the top */
  background-color: lightblue;
  padding: 20px;
  font-size: 1.2em; /* Initial large font size */
  width: 90%; /* Initial large width */
  /* Remove the fixed height */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  border-radius: 15px; /* Add rounded corners */
  margin: 20px auto; }/* Center the container horizontally with some top/bottom margin */
.small-container76 {
  width: 400px; /* Initial small width */
  height: 450px; /* Initial small height */
  margin-right: 20px; /* Add some spacing between the image and text */
  margin-left: -60px; /* Add some spacing between the image and text */
  overflow: hidden; /* Clip the image to the container size */
  flex-shrink: 0; /* Prevent the small container from shrinking */
  border-radius: 10px;} /* Add rounded corners */
.small-container76 img {
  width: 100%;
  height: 100%;
  display: block; /* Remove any extra space below the image */
  object-fit: cover; /* Ensure the image covers the entire container */
  border-radius: 10px;} /* Add rounded corners to the image */
.text-container76 {
  flex-grow: 1; /* Allow the text container to take up remaining space */
  display: flex; /* Enable Flexbox for vertical stacking of text */
  flex-direction: column;
  align-items: center; }/* Center items horizontally */
.large-container-title76 {
  font-weight: bold;
  margin-bottom: 10px; /* Add some space below the title */
  font-size: 1.5em; /* Increase the font size of the title */
  text-align: center; }/* Ensure text is centered within the title div */
/* Media query for smaller screens */
@media (max-width: 768px) {
  .large-container76 {
    font-size: 1em; /* Reduce font size */
    width: 95%; /* Increase width on smaller screens */
    padding: 15px;
    border-radius: 10px; }/* Adjust rounded corners for smaller screens */
  .small-container76 {
    width: 70px; /* Reduce square size */
    height: 70px; /* Reduce square size */
    margin-right: 15px; /* Adjust spacing */
    margin-left: -20px; /* Adjust spacing */
    border-radius: 8px; }/* Adjust rounded corners for smaller screens */
  .small-container76 img {
    border-radius: 8px;} /* Adjust rounded corners for smaller screens */
  .text-container76 {
    align-items: center; }/* Center items horizontally */
  .large-container-title76 {
    font-size: 1.5em; /* Adjust title size for smaller screens */
  }  }
/* Media query for even smaller screens */
@media (max-width: 480px) {
  .large-container76 {
    font-size: 0.8em; /* Further reduce font size */
    padding: 10px;
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container76 {
    width: 50px; /* Reduce square size */
    height: 50px; /* Reduce square size */
    margin-right: 10px; /* Adjust spacing */
    margin-left: -15px; /* Adjust spacing */
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container76 img {
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .text-container76 {
    align-items: center; }/* Center items horizontally */
  .large-container-title76 {
    font-size: 1.2em; /* Adjust title size for even smaller screens */
  }  }
/*______________ What Are The Accomations Start ________77_________ */
.large-container77 {
  display: flex;           /* Enable Flexbox for layout */
  align-items: flex-start; /* Align items to the top */
  background-color: lightblue;
  padding: 20px;
  font-size: 1.2em;       /* Initial large font size */
  width: 90%;          /* Initial large width */
  /* Remove the fixed height */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  border-radius: 15px; /* Add rounded corners */
  margin: 20px auto; }/* Center the container horizontally with some top/bottom margin */
.small-container77 {
  width: 400px; /* Initial small width */
  height: 450px; /* Initial small height */
  margin-right: 20px; /* Add some spacing between the image and text */
  margin-left: -60px; /* Add some spacing between the image and text */
  overflow: hidden; /* Clip the image to the container size */
  flex-shrink: 0; /* Prevent the small container from shrinking */
  border-radius: 10px;} /* Add rounded corners */
.small-container77 img {
  width: 100%;
  height: 100%;
  display: block; /* Remove any extra space below the image */
  object-fit: cover; /* Ensure the image covers the entire container */
  border-radius: 10px;} /* Add rounded corners to the image */
.text-container77 {
  flex-grow: 1; /* Allow the text container to take up remaining space */
  display: flex; /* Enable Flexbox for vertical stacking of text */
  flex-direction: column;
  align-items: center; }/* Center items horizontally */
.large-container-title77 {
  font-weight: bold;
  margin-bottom: 10px; /* Add some space below the title */
  font-size: 1.5em; /* Increase the font size of the title */
  text-align: center; }/* Ensure text is centered within the title div */
/* Media query for smaller screens */
@media (max-width: 768px) {
  .large-container77 {
    font-size: 1em; /* Reduce font size */
    width: 95%; /* Increase width on smaller screens */
    padding: 15px;
    border-radius: 10px; }/* Adjust rounded corners for smaller screens */
  .small-container77 {
    width: 70px; /* Reduce square size */
    height: 70px; /* Reduce square size */
    margin-right: 15px; /* Adjust spacing */
    margin-left: -20px; /* Adjust spacing */
    border-radius: 8px; }/* Adjust rounded corners for smaller screens */
  .small-container77 img {
    border-radius: 8px;} /* Adjust rounded corners for smaller screens */
  .text-container77 {
    align-items: center; }/* Center items horizontally */
  .large-container-title77 {
    font-size: 1.5em; /* Adjust title size for smaller screens */
  }  }
/* Media query for even smaller screens */
@media (max-width: 480px) {
  .large-container77 {
    font-size: 0.8em; /* Further reduce font size */
    padding: 10px;
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container77 {
    width: 50px; /* Reduce square size */
    height: 50px; /* Reduce square size */
    margin-right: 10px; /* Adjust spacing */
    margin-left: -15px; /* Adjust spacing */
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .small-container77 img {
    border-radius: 5px; }/* Adjust rounded corners for even smaller screens */
  .text-container77 {
    align-items: center; }/* Center items horizontally */
  .large-container-title77 {
    font-size: 1.2em; /* Adjust title size for even smaller screens */
  }  }

/*__________ Styles for the main blue container _______________*/
.blue-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    height: 90%;
    background-color: #8b8494e5;
    border-radius: 25px;
    padding: 5px;
    border: 6px solid #8b8494e5;
    box-sizing: border-box;
    border-radius: 5px;
    margin-bottom: 20px;}
.blue-container h2 {
    font-size: 2.2em; /* Increased font size for the title */
    margin-bottom: 5px; /* Reduced space below the title */
    color: #0a0a11; /* Ensures title color is white */
    text-align: center; }/* Centers the title text */
.blue-container p {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
    max-width: 90%;}
#links-container-bottom {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;}
#links-container-bottom a {
    background-color: #b5b3cefc;
    font-size: 1.3em; /* Increased font size for link text */
    color: rgb(2, 1, 1); /* links text */
    text-decoration: none; /* Remove underline from links */
    padding: 10px 15px;
    border: 1px solid rgb(9, 8, 8); /* White border for links */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effects */
    margin: 5px;} 
#links-container-bottom a:hover {/* Space between links */
    background-color: #8d8d97; /* White background on hover */
    color: #0056b3; /* Changed hover text color to match the new button background */
    border-color: #0056b3;} 
.social-icon {/* Changed hover border color to match */
    font-size: 2em; /* Makes the icon larger */
    color: #3b5998; /* Facebook blue color */
    padding: 5px; /* Adds some space around the icon */
    border: none; /* Removes the border inherited from other links */
    background-color: transparent; }/* Ensures no background color */
.social-icon:hover {
    color: #2a498b; /* Darker blue on hover */
    transform: scale(1.1); /* Slightly enlarges the icon on hover */
    transition: transform 0.3s ease; }/* Smooth transition for the scale effect */


