
#hero-1 {
  text-align: center;
  padding: 100px 20px;
  background-color: #f8f9fa;
}
#hero-1 .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
#hero-1 .hero-subtitle {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 30px;
}
.btn.btn-primary {
  padding: 12px 30px;
  font-size: 18px;
}



#features-12 {
  padding: 60px 0;
  background-color: #f8f9fa;
  text-align: center;
}
#features-12 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-12 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-12 .feature-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
#features-12 .feature-item:hover {
  transform: scale(1.05);
}
#features-12 .feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#features-12 .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 162, 184, 0.7);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 20px;
  text-align: center;
}
#features-12 .feature-item:hover .feature-overlay {
  opacity: 1;
}
#features-12 .overlay-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-12 .overlay-description {
  font-size: 14px;
}



#about-us-21 {
  padding: 80px 15px;
  background-color: #222;
  color: #fff;
}
#about-us-21 .section-title,
#about-us-21 .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
}
#about-us-21 .features-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
#about-us-21 .unique-feature-card {
  background-color: #333;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 30px;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
#about-us-21 .unique-feature-card:hover {
  transform: translateY(-5px);
}
#about-us-21 .unique-feature-card h3 {
  color: #ffc107;
  margin-bottom: 15px;
}
#about-us-21 .unique-feature-card p {
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}
#about-us-21 .unique-feature-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: auto;
}
/*
#about-us-21 .unique-feature-card.top-left { ... }
#about-us-21 .unique-feature-card.center-right { ... }
#about-us-21 .unique-feature-card.bottom-left { ... }
#about-us-21 .unique-feature-card.top-right { ... }
*/
#about-us-21 .call-to-action-wrapper {
  text-align: center;
  margin-top: 60px;
}
#about-us-21 .call-to-action-wrapper a {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease-in-out;
}
#about-us-21 .call-to-action-wrapper a:hover {
  background-color: #0056b3;
}
/*
@media (max-width: 768px) {
  #about-us-21 .unique-feature-card {
    position: relative;
    width: 80%;
    margin: 20px auto;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: rotate(0) !important;
  }
}
*/



#our-services-21 {
  padding: 80px 0;
  background-color: #fff;
}
#our-services-21 .services-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#our-services-21 .services-section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
#our-services-21 .services-section-subtitle {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}
#our-services-21 .service-item-card {
  border: none;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
#our-services-21 .service-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}
#our-services-21 .service-icon {
  font-size: 2.8rem;
  color: #0d6efd;
  margin-bottom: 1.5rem;
  display: inline-block;
  line-height: 1;
}
#our-services-21 .service-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #212529;
  margin-bottom: 0.75rem;
}
#our-services-21 .service-description {
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#our-services-21 .service-link {
  font-size: 0.9rem;
  font-weight: 500;
}
#our-services-21 .service-link i {
  margin-left: 5px;
  transition: transform 0.2s ease;
}
#our-services-21 .service-link:hover i {
  transform: translateX(3px);
}



#why-choose-us-27 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #ffffff;
}
#why-choose-us-27 .section-title-container {
  margin-bottom: 40px;
}
#why-choose-us-27 .section-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a2b48;
  line-height: 1.3;
}
#why-choose-us-27 .section-main-subtitle {
  font-size: 1.15rem;
  color: #4a5568;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  margin-bottom: 30px;
}
#why-choose-us-27 .introduction-paragraph-text {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
#why-choose-us-27 .core-value-item {
  margin-bottom: 35px;
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #0d6efd;
}
#why-choose-us-27 .value-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#why-choose-us-27 .value-icon {
  font-size: 1.8rem;
  color: #0d6efd;
  margin-right: 15px;
  min-width: 30px;
}
#why-choose-us-27 .value-title-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
}
#why-choose-us-27 .value-description-text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.8;
  text-align: justify;
  padding-left: 45px;
}
#why-choose-us-27 .closing-statement-text {
  margin-top: 40px;
  text-align: center;
  font-size: 1.1rem;
  color: #343a40;
  font-weight: 500;
  font-style: italic;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  background-color: #e9f5ff;
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  #why-choose-us-27 .section-main-title {
    font-size: 2.2rem;
  }
  #why-choose-us-27 .section-main-subtitle {
    font-size: 1.05rem;
  }
  #why-choose-us-27 .introduction-paragraph-text {
    font-size: 1rem;
    text-align: left;
  }
  #why-choose-us-27 .value-title-text {
    font-size: 1.3rem;
  }
  #why-choose-us-27 .value-description-text {
    font-size: 0.95rem;
    padding-left: 0;
    text-align: left;
  }
  #why-choose-us-27 .core-value-item {
    padding: 20px;
  }
}



#counter-2 {
  text-align: center;
  background: #f8f9fa;
  padding: 80px 0;
}
#counter-2 .counter-content {
  max-width: 800px;
  margin: 0 auto;
}
#counter-2 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}
#counter-2 p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}
#counter-2 .counter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
#counter-2 .counter-item {
  position: relative;
  width: 150px;
  height: 150px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}
#counter-2 .counter-item svg {
  transform: rotate(-90deg);
}
#counter-2 .counter-circle {
  fill: none;
  stroke-width: 10;
  stroke: #007bff;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.5s ease-in-out;
}
#counter-2 .counter-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
}
#counter-2 .counter-item i {
  font-size: 2rem;
  color: #007bff;
  display: block;
  margin-top: 10px;
}



/* style.css for post-section-2 */
#post-section-2 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffffff; /* Clean white background */
}

#post-section-2 .section-header {
    margin-bottom: 45px;
    text-align: center;
}

#post-section-2 .section-header .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

#post-section-2 .section-header .section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

#post-section-2 .post-list-item {
    background-color: #f8f9fa; /* Light background for each item */
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 20px; /* Inner padding for the item */
    overflow: hidden; /* To contain floated elements or for box-shadow */
    transition: box-shadow 0.3s ease-in-out;
}

#post-section-2 .post-list-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#post-section-2 .post-item-image-wrapper {
    border-radius: 6px;
    overflow: hidden;
    max-height: 300px; /* Control image height */
}

#post-section-2 .post-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#post-section-2 .post-list-item:hover .post-item-image {
    transform: scale(1.05);
}

#post-section-2 .post-item-content {
    padding-left: 25px; /* Space between image and content on larger screens */
    padding-right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content if row height allows */
    height: 100%; /* Ensure content area takes full height of its column */
}

/* For alternating layout, content padding adjustment might be needed if image is on the right */
#post-section-2 .post-list-item .order-md-last + .col-md-7 .post-item-content,
#post-section-2 .post-list-item .order-lg-last + .col-lg-7 .post-item-content {
    padding-left: 25px;
    padding-right: 0;
}
#post-section-2 .post-list-item .order-md-first + .col-md-7 .post-item-content,
#post-section-2 .post-list-item .order-lg-first + .col-lg-7 .post-item-content {
    padding-right: 25px;
    padding-left: 0;
}


#post-section-2 .post-item-categories {
    margin-bottom: 10px;
}

#post-section-2 .post-item-category-badge {
    font-size: 0.75rem;
    padding: 0.35em 0.7em;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    background-color: #5c6bc0; /* Indigo accent for categories */
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

#post-section-2 .post-item-category-badge:hover {
    background-color: #3f51b5; /* Darker indigo */
}

#post-section-2 .post-item-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

#post-section-2 .post-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

#post-section-2 .post-item-title a:hover {
    color: #5c6bc0; /* Category color on hover */
}

#post-section-2 .post-item-meta {
    font-size: 0.88rem;
    color: #888;
    margin-bottom: 15px;
}

#post-section-2 .post-item-meta .meta-icon {
    margin-right: 5px;
    color: #aaa;
}

#post-section-2 .post-item-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

#post-section-2 .post-item-readmore-btn {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    align-self: flex-start; /* Align button to the left of its container */
}

#post-section-2 .post-item-readmore-btn .btn-icon {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

#post-section-2 .post-item-readmore-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

#post-section-2 .post-item-readmore-btn:hover .btn-icon {
    transform: translateX(4px);
}

#post-section-2 .pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments for alternating layout */
@media (max-width: 767.98px) {
    #post-section-2 .post-item-content {
        padding-left: 15px; /* Standard padding on mobile */
        padding-right: 15px;
        padding-top: 20px; /* Add space above content when image stacks on top */
    }
    #post-section-2 .post-list-item .order-md-last + .col-md-7 .post-item-content,
    #post-section-2 .post-list-item .order-md-first + .col-md-7 .post-item-content,
    #post-section-2 .post-list-item .order-lg-last + .col-lg-7 .post-item-content,
    #post-section-2 .post-list-item .order-lg-first + .col-lg-7 .post-item-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    #post-section-2 .post-item-title {
        font-size: 1.4rem;
    }
    #post-section-2 .post-item-image-wrapper {
        max-height: 250px; /* Adjust image height for stacked layout */
    }
}




#testimonials-11 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#testimonials-11 .container {
  max-width: 960px;
}
#testimonials-11 .section-header {
  margin-bottom: 40px;
}
#testimonials-11 .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #343a40;
}
#testimonials-11 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#testimonials-11 .testimonial-item {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#testimonials-11 .testimonial-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px auto;
  border: 3px solid #dee2e6;
}
#testimonials-11 .testimonial-content blockquote {
  font-style: italic;
  color: #495057;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
  flex-grow: 1;
}
#testimonials-11 .testimonial-content blockquote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  color: #adb5bd;
  margin-right: 8px;
}
#testimonials-11 .testimonial-content blockquote::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  color: #adb5bd;
  margin-left: 8px;
}
#testimonials-11 .client-info .client-name {
  font-weight: 600;
  color: #343a40;
  display: block;
  margin-bottom: 2px;
}
#testimonials-11 .client-info .client-position {
  font-size: 0.9rem;
  color: #6c757d;
}
#testimonials-11 .rating {
  margin-top: 10px;
  color: #ffc107;
}
#testimonials-11 .rating .fa-star.empty {
  color: #e0e0e0;
}
#testimonials-11 .carousel-indicators button {
  background-color: #adb5bd;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
}
#testimonials-11 .carousel-indicators .active {
  background-color: #0d6efd;
}
#testimonials-11 .carousel-control-prev,
#testimonials-11 .carousel-control-next {
  width: 5%;
}
#testimonials-11 .carousel-control-prev-icon,
#testimonials-11 .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 15px;
  background-size: 50% 50%;
  width: 40px;
  height: 40px;
}
#testimonials-11 .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
#testimonials-11 .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
@media (max-width: 767.98px) {
  #testimonials-11 {
    padding: 40px 0;
  }
  #testimonials-11 .section-header h2 {
    font-size: 1.8rem;
  }
  #testimonials-11 .section-header p {
    font-size: 1rem;
  }
  #testimonials-11 .testimonial-item {
    padding: 20px;
    min-height: 320px;
  }
  #testimonials-11 .testimonial-content blockquote {
    font-size: 1rem;
  }
  #testimonials-11 .carousel-control-prev-icon,
  #testimonials-11 .carousel-control-next-icon {
    padding: 10px;
    width: 35px;
    height: 35px;
  }
}



#game-section-9 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#game-section-9 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#game-section-9 .split-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
#game-section-9 .left-column,
#game-section-9 .right-column {
  flex: 1;
}
#game-section-9 .left-column p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
#game-section-9 .review-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
#game-section-9 .review-item p {
  font-size: 1rem;
  font-style: italic;
  color: #555;
}
#game-section-9 .review-item .author {
  font-size: 0.95rem;
  color: #777;
  margin-top: 10px;
  text-align: right;
}
@media (max-width: 768px) {
  #game-section-9 .split-container {
    flex-direction: column;
  }
}



#faq-12 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#faq-12 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #212529;
}
#faq-12 .faq-category-title {
  font-weight: 600;
  font-size: 1.4rem;
  color: #343a40;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
}
#faq-12 .accordion-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  border-radius: 6px !important;
  overflow: hidden;
}
#faq-12 .accordion-button {
  font-weight: 500;
  color: #495057;
  background-color: #fff;
  padding: 1rem 1.25rem;
  border: none;
  box-shadow: none !important;
  text-align: left;
}
#faq-12 .accordion-button:not(.collapsed) {
  color: #0b5ed7;
  background-color: #f0f7ff;
}
#faq-12 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease-in-out;
  filter: brightness(0.6);
}
#faq-12 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b5ed7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
  filter: none;
}
#faq-12 .accordion-body {
  padding: 1.25rem 1.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
  border-top: 1px solid #eee;
}
#faq-12 .accordion-body p:last-child {
  margin-bottom: 0;
}



#call-to-action-16 {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  color: #ffffff;
}
#call-to-action-16.has-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  z-index: 1;
}
#call-to-action-16 .container {
  position: relative;
  z-index: 2;
}
#call-to-action-16:not(.has-bg-image) {
}
#call-to-action-16:not(.has-bg-image) .cta-subtext {
}
#call-to-action-16 .cta-headline {
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
#call-to-action-16 .cta-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}
#call-to-action-16 .cta-buttons .btn {
  margin: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-width: 2px;
}
#call-to-action-16 .cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
#call-to-action-16 .cta-buttons .btn i {
  margin-right: 8px;
}
@media (max-width: 991.98px) {
  #call-to-action-16 .cta-content,
  #call-to-action-16 .cta-buttons {
    text-align: center;
  }
  #call-to-action-16 .cta-headline {
    font-size: 1.8rem;
  }
  #call-to-action-16 .cta-subtext {
    font-size: 1rem;
  }
  #call-to-action-16 .cta-buttons {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  #call-to-action-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #call-to-action-16 .cta-buttons .btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}



#offers-17 {
  padding: 80px 0;
  background-color: #fff;
}
#offers-17 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#offers-17 .offer-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#offers-17 .offer-title {
  font-weight: 700;
  font-size: 1.9rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}
#offers-17 .offer-description {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#offers-17 .offer-how-to-claim {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 2rem;
  font-style: italic;
}
#offers-17 .btn-offer-cta {
  padding: 0.8rem 2rem;
  font-weight: 600;
  align-self: flex-start;
}
#offers-17 .offer-gallery-col {
  padding-left: 2rem;
}
#offers-17 .gallery-title {
  font-weight: 600;
  font-size: 1rem;
  color: #343a40;
  margin-bottom: 1rem;
}
#offers-17 .gallery-grid .game-thumbnail {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#offers-17 .gallery-grid .game-thumbnail:hover {
  transform: scale(1.05);
}
#offers-17 .gallery-grid .game-thumbnail img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  width: 100%;
}
#offers-17 .gallery-grid .game-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 8px;
  font-size: 0.75rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991.98px) {
  #offers-17 .offer-details-col {
    margin-bottom: 3rem;
    text-align: center;
  }
  #offers-17 .btn-offer-cta {
    align-self: center;
  }
  #offers-17 .offer-gallery-col {
    padding-left: 0;
  }
  #offers-17 .gallery-grid {
    justify-content: center;
  }
}


