.h1-tag {
  margin-bottom: 15px !important;
}
/* Global */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
}

p {
  line-height: 1.6;
  color: #555;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e90ff, #0a74da);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
}

.btn {
  background: #fff;
  color: #1e90ff;
}

.btn:hover {
  background: #f1f1f1;
}

.btn-primary {
  background: #1e90ff;
  color: #fff;
}

.btn-primary:hover {
  background: #0a74da;
}

/* Two-Column Section */
.two-column {
  padding: 60px 20px;
  background: #f9f9f9;
}

.two-column .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.two-column .image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.two-column .content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1e90ff;
}

.two-column .content p {
  font-size: 18px;
}

/* Features Section */
.features {
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.feature-box {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background:#f8f8f8;
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-box .icon {
  font-size: 40px;
  color: #1e90ff;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.top_panel_title_wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 2.05rem;
    padding: 10.1rem 0 7.6rem;
    background-size: cover;
}


.card-box {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .card-box img {
    width: 100%;
    /*height: 220px;          /* same height for all images */
    object-fit: cover;      /* crops images nicely */
    display: block;
  }

  .card-box h3 {
    margin: 15px 0;
    font-size: 20px;
    font-weight: 600;
    color: #272727; /* Dodger blue - brand color */
  }

  .card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

/* About Us Section */
.about-section {
  padding: 80px 20px 40px;
  background: #f9f9f9;
}
.about-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.about-text {
  flex: 1;
  min-width: 300px;
}
.about-text h2 {
  /*font-size: 32px;*/
  margin-bottom: 20px;
  /*color: #1e90ff;*/
  position: relative;
}
.about-text h2::after {
/*  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: ;
  margin-top: 10px;
  border-radius: 2px;*/
}
.about-text p {
  /*font-size: 16px;*/
  /*color: #444;*/
  line-height: 2;
}
.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.why-choose {
  background: white;
  padding: 80px 20px;
}
.why-choose .container {
  max-width: 1200px;
  margin: auto;
}
.why-choose h2 {
  text-align: center;
  /*font-size: 32px;*/
  /*color: #1e90ff;*/
  margin-bottom: 15px;
  position: relative;
}
.why-choose h2::after {
/*  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #1e90ff;
  margin: 10px auto 0;
  border-radius: 2px;*/
}
.why-choose .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.reason-card {
  background: #f1f1f1;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}
.reason-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}
.reason-card p {
  /*font-size: 15px;*/
  /*color: #555;*/
  line-height: 1.6;
}
.how-to-book {
  background: #272727;
  padding: 80px 20px;
}
.how-to-book .container {
  max-width: 1000px;
  margin: auto;
}
.how-to-book h2 {
  text-align: center;
  /*font-size: 32px;*/
  color: white;
  margin-bottom: 15px;
  position: relative;
}
.how-to-book h2::after {
  /*content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #1e90ff;
  margin: 10px auto 0;
  border-radius: 2px;*/
}
.how-to-book .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: white;
  line-height: 1.6;
}
.steps {
  display: grid;
  gap: 25px;
}
.step {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.step-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: #ffa700;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.step p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.final-message {
  margin-top: 20px;
  background: #272727;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.final-message p {
  color: white;
}
.menu_mobile .menu_mobile_nav_area li > a {
      width: 15em;
}

.sc_promo.sc_promo_size_normal .sc_promo_text_inner {
    padding: 4em 2em 4em 2em;
}
.footer_wrap .widget_title {
  margin-bottom: 15px;
}












h1 {
  font-size: 28px !important;
  line-height: 35px !important;
}
h2 {
  font-size: 23px !important;
  line-height: 30px !important;
  margin-bottom: 8px !important;
}

p {
  margin-bottom: 12px !important;
}
.sc_promo_descr {
  margin-top: 10px !important;
}

.features h2 {
  font-size: 30px !important;
  line-height: 40px !important;
  margin-top: 10px !important;
}
#mobile-section h2 {
  font-size: 30px !important;
  line-height: 40px !important;
  margin-top: 10px !important;
}
section.features h2 {
  margin-bottom: 25px !important;
}


.custom-sec-title,
.custom-sec-title-black {
  text-align: center; 
  font-size: 30px !important; 
  line-height: 40px !important;
  font-weight: 700; 
  color: white !important; 
  margin-bottom: 40px !important;
  margin-top: 10px !important;
}
.custom-sec-title-black {
  color: #343332 !important;
}
.custom-margin-bottom {
  margin-bottom: 100px !important;
}
.padding-bottom:  {
  padding-bottom: 100px;
}





section.features {
  padding-top: 100px;
  padding-bottom: 100px;
}

#testimonials p {
  color:  white;
}



.post_featured {
  margin-bottom: 20px !important;
}
.post_layout_excerpt .post_title {
    margin-bottom: 20px;
}


.site_footer_wrap {
    margin-top: 0px !important;
}
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content {
    width: 770px !important;
}
.sidebar[class*="scheme_"] aside {
    padding: 0 2rem;
}
.sidebar_inner ul li {
  line-height: 30px;
}
.sidebar_inner ul li a {
  font-size: 16px;
}
#general-info-page {
  padding-bottom: 100px;
}
#general-info-page h1 {
  margin-bottom: 10px;
}

.pages-listing-wrapper .pages-listing {
  width: 33%;
  float:left;
}
.pages-listing-wrapper .pages-listing h3 {
  margin-bottom: 10px;
}
.top-panel-top {
  background: #272727 !important;
  color: white !important;

}

.top-panel-top a {
  color: white !important;
  font-size: 14px;
}











@media (min-width: 1263px) and (max-width: 1439px) {
    .content_wrap, .content_container {
        width: 95%;
    }
}











@media (max-width: 991px) {
  .footer_wrap .widget_title {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .sc_promo.sc_promo_size_normal .sc_promo_text_inner {
      padding-top: 50px;
      padding-bottom: 50px;
      padding-left: 10px;
      padding-right: 10px;
  }
  .content_wrap, .content_container {
        width: 95%;
    }
.pages-listing-wrapper .pages-listing {
  width: 100%;
  float:left;
}
.card-box {
  width: 100%;
  max-width: 100%;
}
.footer_wrap .widget_contacts {
  /*padding-left: 0px;*/
}
.footer_wrap_inner {
  padding: 1em 0 2.9em;
}

.footer_wrap .widget_title {
    font-size: 1.4em;
  }
  .footer_wrap_inner .columns_wrap {
    display: block !important;
  }
  .footer_wrap_inner aside {
    display: block;
    width: 50% !important;
  }

}








@media (max-width: 500px) {
    .content_wrap, .content_container {
        width: 95%;
    }

    .footer_wrap_inner aside {
        display: block;
        width: 100% !important;
    }
    h1 {
      font-size: 22px !important;
      line-height: 28px !important;
  }
  .features h2,
  .custom-sec-title, .custom-sec-title-black {
      font-size: 24px !important;
      line-height: 32px !important;
  }
  .about-section {
    padding: 20px 20px 40px;
  }
  section.features {
    padding-top: 50px;
    padding-bottom: 50px;
  }

    .sc_price_title {
        font-size: 1.7em;
    }

  .sc_promo_image, .sc_promo_image_wrap {
    
      background-position: top;
  }
}