
#hero-2 {
  background-size: cover;
  background-position: center;
  padding: 150px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}
#hero-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
#hero-2 .container {
  position: relative;
  z-index: 2;
}
#hero-2 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-2 .hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}



/* style.css for post-section-1 */
#post-section-1 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f9f9f9; /* A slightly different light background */
}

#post-section-1 .section-header {
    margin-bottom: 45px;
}

#post-section-1 .section-header .section-title {
    font-size: 2.2rem; /* Adjusted font size */
    font-weight: 700;
    color: #2c3e50; /* A deep blue/grey color */
    margin-bottom: 8px;
}

#post-section-1 .section-header .section-subtitle {
    font-size: 1rem;
    color: #7f8c8d; /* A softer grey for subtitle */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#post-section-1 .article-card {
    background-color: #ffffff;
    border: none; /* Removed border, relying on shadow */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* To ensure child elements like image respect border-radius */
}

#post-section-1 .article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

#post-section-1 .article-card-image-wrapper {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    overflow: hidden;
}

#post-section-1 .article-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

#post-section-1 .article-card:hover .article-card-image {
    transform: scale(1.07);
}

#post-section-1 .article-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#post-section-1 .article-categories {
    margin-bottom: 12px;
}

#post-section-1 .article-category-link {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 4px 10px;
    margin-right: 6px;
    margin-bottom: 6px; /* For wrapping badges */
    display: inline-block;
    background-color: #e74c3c; /* A distinct primary color */
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

#post-section-1 .article-category-link:hover {
    background-color: #c0392b; /* Darker shade on hover */
}

#post-section-1 .article-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e; /* Darker text color */
    margin-bottom: 10px;
    line-height: 1.4;
}

#post-section-1 .article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

#post-section-1 .article-title a:hover {
    color: #e74c3c; /* Primary color on hover */
}

#post-section-1 .article-meta {
    font-size: 0.85rem;
    color: #95a5a6; /* Lighter grey for meta */
    margin-bottom: 15px;
}

#post-section-1 .article-meta .meta-icon {
    margin-right: 6px;
    color: #bdc3c7; /* Icon color */
}

#post-section-1 .article-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button to the bottom */
}

#post-section-1 .article-readmore-btn {
    background-color: #3498db; /* A different accent color for button */
    border-color: #3498db;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    margin-top: auto; /* Stick to bottom */
    align-self: flex-start; /* Align button to the left */
}

#post-section-1 .article-readmore-btn .btn-icon {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

#post-section-1 .article-readmore-btn:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

#post-section-1 .article-readmore-btn:hover .btn-icon {
    transform: translateX(3px);
}

#post-section-1 .pagination-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #post-section-1 .article-card-image-wrapper {
        height: 200px;
    }
    #post-section-1 .article-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    #post-section-1 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #post-section-1 .section-header .section-title {
        font-size: 1.9rem;
    }
    #post-section-1 .article-card {
        margin-bottom: 30px; /* Add margin for stacked cards */
    }
    #post-section-1 .article-card-image-wrapper {
        height: 180px;
    }
}




/* Section padding & background */
#category-posts-16 {
  padding: 80px 0;
  background: #fdfdfd;
}

/* Two-column layout */
#category-posts-16 .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Left hero image (30%) */
#category-posts-16 .col-left {
  flex: 0 0 30%;
  max-width: 30%;
}
#category-posts-16 .col-left img {
  width: 100%;
  border-radius: .75rem;
  display: block;
}

/* Right list (70%) */
#category-posts-16 .col-right {
  flex: 0 0 70%;
  max-width: 70%;
}

/* Section header */
#category-posts-16 .section-header {
  margin-bottom: 1.5rem;
}
#category-posts-16 .section-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
#category-posts-16 .section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Post list */
#category-posts-16 .post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#category-posts-16 .post-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
  transition: background .3s ease;
}
#category-posts-16 .post-item:last-child {
  border-bottom: none;
}
#category-posts-16 .post-item:hover {
  background: #f8f9fa;
}
#category-posts-16 .post-meta {
  font-size: .875rem;
  color: #6c757d;
  margin-bottom: .5rem;
}
#category-posts-16 .post-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  text-decoration: none;
}
#category-posts-16 .post-title:hover {
  color: #4f46e5;
}
#category-posts-16 .post-excerpt {
  font-size: .95rem;
  color: #495057;
  margin: .5rem 0;
}

/* Read More button */
#category-posts-16 .btn-readmore {
  display: inline-flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  color: #4f46e5;
  text-decoration: none;
  transition: color .3s ease;
}
#category-posts-16 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-16 .btn-readmore:hover {
  color: #4338ca;
}
#category-posts-16 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-16 .pagination-wrapper,
#category-posts-16 .load-more-wrapper {
  text-align: right;
  margin-top: 1.5rem;
}




#overview-19 {
  background-color: #fff;
  overflow: hidden;
}
#overview-19 .overview-section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#overview-19 .section-intro {
  margin-bottom: 4rem;
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#overview-19 .section-intro .section-heading {
  margin-bottom: 0.5rem;
}
#overview-19 .section-intro .lead {
  color: #6c757d;
  margin-bottom: 0;
}
#overview-19 .process-steps-container {
  position: relative;
}
#overview-19 .process-step {
  position: relative;
  padding-bottom: 3rem;
  padding-left: 80px;
  margin-bottom: 1rem;
}
#overview-19 .process-step:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
#overview-19 .step-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--bs-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(var(--bs-primary-rgb), 0.3);
  z-index: 2;
}
#overview-19 .step-marker .step-number {
  font-size: 1.2rem;
}
#overview-19 .process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: -1.5rem;
  width: 2px;
  background-color: var(--connector-color, #adb5bd);
  z-index: 1;
}
#overview-19 .step-content h5 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
#overview-19 .step-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  #overview-19 .process-step {
    padding-left: 0;
    text-align: center;
  }
  #overview-19 .step-marker {
    position: relative;
    margin: 0 auto 1.5rem auto;
    left: auto;
    top: auto;
  }
  #overview-19 .process-step:not(:last-child)::before {
    display: none;
  }
  #overview-19 .step-content h5 {
    font-size: 1.15rem;
  }
  #overview-19 .overview-section-padding {
    padding-bottom: 2rem;
  }
}



#text-block-4 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
  color: var(--text-color, #343a40);
}
#text-block-4 .container {
  max-width: 960px;
}
#text-block-4 .section-title-optional {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#text-block-4 .text-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-color, #343a40);
  margin-bottom: 25px;
}
#text-block-4 .text-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color, #555e68);
  opacity: 0.95;
  margin-bottom: 1.5rem;
}
#text-block-4 .list-heading-optional {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color, #343a40);
  margin-top: 40px;
  margin-bottom: 25px;
}
#text-block-4 .icon-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
#text-block-4 .icon-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color, #495057);
}
#text-block-4 .icon-list-item i {
  font-size: 1.2rem;
  color: var(--icon-color, #17a2b8);
  margin-right: 12px;
  margin-top: 0.2em;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
#text-block-4 .icon-list-item span {
  flex-grow: 1;
}
@media (min-width: 768px) {
  #text-block-4 .icon-list.list-cols-2 {
    column-count: 2;
    column-gap: 30px;
  }
  #text-block-4 .icon-list.list-cols-2 .icon-list-item {
    break-inside: avoid;
  }
}
@media (max-width: 767.98px) {
  #text-block-4 {
    padding: 60px 0;
  }
  #text-block-4 .text-heading {
    font-size: 2rem;
  }
  #text-block-4 .text-paragraph,
  #text-block-4 .icon-list-item {
    font-size: 0.95rem;
  }
  #text-block-4 .list-heading-optional {
    font-size: 1.25rem;
  }
  #text-block-4 .icon-list.list-cols-2 {
    column-count: 1;
  }
}



#faq-10 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#faq-10 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-10 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-10 .faq-item {
  border-bottom: 1px solid #dee2e6;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}
#faq-10 .faq-item:last-child {
  border-bottom: none;
}
#faq-10 .faq-question {
  font-size: 18px;
  font-weight: bold;
  color: #17a2b8;
}
#faq-10 .faq-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #17a2b8;
  transition: transform 0.3s;
}
#faq-10 .faq-answer {
  display: none;
  font-size: 14px;
  color: #6c757d;
  margin-top: 10px;
}
#faq-10 .faq-item.active .faq-answer {
  display: block;
}
#faq-10 .faq-item.active .faq-icon {
  transform: translateY(-50%) rotate(180deg);
}



#call-to-action-14 {
  padding: 80px 0;
  background-color: #343a40;
  color: #fff;
}
#call-to-action-14 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#call-to-action-14 .col {
  flex: 1;
  padding: 30px;
  text-align: center;
}
#call-to-action-14 .left-col,
#call-to-action-14 .right-col {
  max-width: 30%;
}
#call-to-action-14 .center-col {
  max-width: 35%;
}
#call-to-action-14 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
#call-to-action-14 p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
#call-to-action-14 .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
#call-to-action-14 .left-col .btn,
#call-to-action-14 .right-col .btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
#call-to-action-14 .left-col .btn:hover,
#call-to-action-14 .right-col .btn:hover {
  background-color: #fff;
  color: #343a40;
}
#call-to-action-14 .center-col .btn {
  background-color: #ffc107;
  color: #343a40;
}
#call-to-action-14 .center-col .btn:hover {
  background-color: #e0a800;
}
@media (max-width: 992px) {
  #call-to-action-14 .left-col,
  #call-to-action-14 .right-col {
    max-width: 45%;
  }
  #call-to-action-14 .center-col {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  #call-to-action-14 .col {
    max-width: 100%;
    margin-bottom: 30px;
  }
}



#offers-18 {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#offers-18 .offer-glass-card {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 550px;
  width: 100%;
  color: #fff;
}
#offers-18 .offer-glass-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
#offers-18 .offer-glass-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
#offers-18 .offer-glass-code {
  margin-bottom: 2rem;
  min-height: 40px;
}
#offers-18 .offer-glass-code strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  opacity: 0.8;
}
#offers-18 .offer-glass-code span {
  font-weight: 700;
  color: #ffc107;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 5px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  display: inline-block;
}
#offers-18 .btn-glass-cta {
  padding: 0.8rem 2rem;
  font-weight: 600;
  background-color: #ffc107;
  border: none;
  color: #333;
  border-radius: 50rem;
}
#offers-18 .btn-glass-cta:hover {
  background-color: #ffca2c;
}
@media (max-width: 767.98px) {
  #offers-18 {
    padding: 100px 0;
    min-height: 450px;
  }
  #offers-18 .offer-glass-card {
    padding: 2rem;
  }
  #offers-18 .offer-glass-title {
    font-size: 1.8rem;
  }
}



#content-block-20 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#content-block-20 .quote-wrapper {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem;
  border-left: 5px solid var(--cb20-text-color, #0d6efd);
}
#content-block-20 .quote-wrapper.show-large-quotes::before,
#content-block-20 .quote-wrapper.show-large-quotes::after {
  font-family: "Times New Roman", Times, serif;
  font-size: 6rem;
  font-weight: bold;
  color: var(--cb20-large-quote-color, rgba(0, 0, 0, 0.08));
  position: absolute;
  z-index: 1;
  line-height: 1;
}
#content-block-20 .quote-wrapper.show-large-quotes::before {
  content: "\201C";
  top: 0rem;
  left: -1rem;
}
#content-block-20 .quote-wrapper.show-large-quotes::after {
  content: "\201D";
  bottom: -1rem;
  right: -1rem;
}
#content-block-20 .blockquote {
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
#content-block-20 .blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cb20-text-color, #343a40);
  margin-bottom: 0;
}
#content-block-20 .blockquote-footer {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--cb20-text-color, #343a40);
  opacity: 0.8;
  text-align: right;
  position: relative;
  z-index: 2;
}
#content-block-20 .blockquote-footer::before {
  content: "— ";
}
#content-block-20 .blockquote-footer cite {
  font-style: normal;
}
@media (max-width: 767.98px) {
  #content-block-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #content-block-20 .blockquote p {
    font-size: 1.25rem;
  }
  #content-block-20 .quote-wrapper.show-large-quotes::before,
  #content-block-20 .quote-wrapper.show-large-quotes::after {
    font-size: 4rem;
  }
  #content-block-20 .quote-wrapper.show-large-quotes::before {
    left: -0.5rem;
  }
  #content-block-20 .quote-wrapper.show-large-quotes::after {
    right: -0.5rem;
    bottom: -0.5rem;
  }
}


