* {
   margin: 0;
    padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
    color: #333;
  background: #fff;
}

a {
    text-decoration: none;
   color: inherit;
   transition: color .3s ease;
}

img {
    max-width: 100%;
   height: auto;
}

.mh-top-bar {
    background: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
   top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.mh-nav-container {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
   display: flex;
  justify-content: space-between;
   align-items: center;
}

.mh-brand-area a {
  display: block;
}

.mh-logo-img {
  max-height: 64px;
  filter: brightness(0) invert(1);
}

.mh-burger-icon {
    display: none;
   flex-direction: column;
    cursor: pointer;
}

.mh-burger-icon span {
   width: 25px;
   height: 3px;
    background: #fff;
   margin: 3px 0;
   transition: .3s;
}

.mh-menu-list {
    display: flex;
   list-style: none;
   gap: 2rem;
}

.mh-menu-list a {
  color: #fff;
   font-weight: 500;
    padding: .5rem 1rem;
    border-radius: 4px;
  transition: background .3s ease;
}

.mh-menu-list a:hover {
  background: rgba(255, 255, 255, .1);
}@media (max-width: 768px) {
    .mh-burger-icon {
        display: flex
    }

    .mh-menu-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 1rem;
        display: none;
        gap: 0
    }

    .mh-menu-list.mh-active {
        display: flex
    }

    .mh-menu-list li {
        width: 100%
    }

    .mh-menu-list a {
        display: block;
        padding: 1rem
    }
}.vh-banner-zone {
   padding: 0;
}

.vh-fluid-wrap {
    padding: 0;
}

.vh-row-layout {
    display: flex;
}

.vh-row-layout.justify-end {
    justify-content: flex-end;
}

.vh-col-main {
   width: 83.33%;
}

.vh-hero-display {
  position: relative;
    width: 100%;
    display: flex;
   align-items: center;
    justify-content: center;
   background-size: cover;
   background-position: center center;
}

.vh-inner-wrap {
   width: 100%;
	 max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vh-row-center {
  display: flex;
}

.vh-row-center.justify-center {
  justify-content: center;
}

.vh-row-center.align-start {
   align-items: flex-start;
}

.vh-col-content {
   width: 83.33%;
}

.vh-text-block {
    text-align: left;
  padding: 4em 0;
}

.vh-text-block h1 {
    font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.vh-text-block h1 span a {
    color: #dc2626;
    text-decoration: none;
  border-bottom: 2px solid #dc2626;
}

.vh-text-block h1 span a:hover {
   color: #b91c1c;
}@media (max-width: 767.98px) {
    .vh-hero-display {
        height: 500px !important
    }

    .vh-text-block h1 {
        font-size: 2rem
    }

    .vh-col-main {
        width: 100%
    }

    .vh-col-content {
        width: 100%
    }
}.fm-services-area {
    padding: 80px 0;
}

.fm-services-area.border-base {
  border-bottom: 1px solid #e0e0e0;
}

.fm-wrap-container {
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.fm-grid-row {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fm-item-col {
    margin-bottom: 0;
}

.fm-media-element {
    display: flex;
   align-items: flex-start;
}

.fm-icon-space {
   flex-shrink: 0;
    margin-right: 1.5rem;
}

.fm-svg-holder {
    color: #dc2626;
}

.fm-svg-holder img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(96%) saturate(4847%) hue-rotate(354deg) brightness(91%) contrast(91%);
}

.fm-body-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
  margin-bottom: 15px;
    color: #1a1a1a;
}

.fm-body-content {
  color: #666;
    line-height: 1.8;
}@media (max-width: 767px) {
    .fm-services-area {
        padding: 60px 0
    }
}.ab-main-zone {
   padding: 2.5em 0;
}@media (min-width: 768px) {
    .ab-main-zone {
        padding: 5em 0
    }
}.ab-wrap-box {
    max-width: 1200px;
   margin: 0 auto;
   padding  :      0 20px;
}

.ab-flex-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  align-items: start;
}

.ab-segment {
   margin-bottom: 0;
}

.ab-title-sm

{
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.ab-segment p {
    margin-bottom: 1.5rem;
   color: #666;
}

.ab-cta-btn {
  display: inline-block;
  padding: 15px 40px;
    background: #dc2626;
    color: #fff;
    border-radius: 4px;
  font-weight: 600;
    transition: background .3s ease;
  border: 1px solid #dc2626;
}

.ab-cta-btn:hover {
  background: #000;
        border-color: #000;
  color: #fff;
}

.ab-img-responsive {
    width: 100%;
  border-radius: 4px;
}

.ab-progress-container {
   position: relative;
    margin-bottom: 1.5rem;
}

.ab-stat-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: .5rem;
    color: #1a1a1a;
}

.ab-percent-val {
    font-weight: 600;
}

.ab-track-bar {
   background: #e9ecef;
   overflow: visible;
  border-radius: 0;
  height: 7px;
}

.ab-fill-bar {
    background: #dc2626;
    height: 100%;
    position: relative;
    overflow: visible;
}

.ab-fill-bar:after {
  content: "";
  position: absolute;
  top: -1.5px;
  right: 0;
  width: 10px;
    height: 10px;
  background: #dc2626;
    border-radius: 50%;
}@media (max-width: 992px) {
    .ab-flex-layout {
        grid-template-columns:1fr
    }
}.cd-blog-display {
  background: #f5f5f5;
  padding-bottom: 160px;
}

.cd-blog-display.spad {
   padding-top   :     100px;
  padding-bottom: 100px;
}

.cd-container-wrap {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cd-row-block {
    margin-bottom: 2rem;
}

.cd-col-full {
  width: 100%;
}

.cd-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.cd-section-header h2 {
   font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
   margin-bottom: 10px;
}

.cd-section-header p {
  font-size: 18px;
   color: #666;
    margin-bottom: 0;
}

.cd-row-block {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.cd-col-item {
    margin-bottom: 40px;
}

.cd-card-item {
  height: 255px;
    position: relative;
    margin-bottom: 40px;
    border-radius   :       2px;
  box-shadow: 0 0 30px rgba(79, 84, 139, .15);
   overflow: hidden;
    background-size: cover;
   background-position: top center;
}

.cd-card-item.set-bg {
    background-repeat: no-repeat;
}

.cd-badge-label {
    font-size: 14px;

	    color: #fff;

	   display: inline-block;

	    padding: 5px 18px;

	    border-radius: 2px;

	    position: absolute;

	    left: 30px;

	     top: 30px;
}

.cd-badge-label.bg-gradient {
  background-image: linear-gradient(120deg, #dc2626 0%, #991b1b 100%);
}

.cd-card-content {
  position: absolute;
    left: 0;
	 bottom: 26px;
  width: 100%;
  padding: 0 30px;
}

.cd-card-content h5 {
  margin-bottom: 5px;
}

.cd-card-content h5 a {
   display: block;
  color: #fff;
    font-weight: 600;
  line-height: 30px;
}

.cd-card-content span {
    font-size: 14px;
    color: #fff;
   display: flex;
    align-items: center;
   gap: 5px;
}

.cd-card-content span img {
  filter: brightness(0) invert(1);
}

.tx-container-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.tx-row-wrap {
    display: block;
}

.tx-col-single {
  width: 100%;
}

.tx-article-wrapper {
    margin-bottom: 120px;
}

.tx-post-top {
    text-align: center;
}

.tx-date-stamp {
    font-size: 11px;
    letter-spacing: .08rem;
  text-transform: uppercase;
   color: #afafaf;
}

.tx-main-title {
    margin-top: 30px;
  font-size: 48px;
}

.tx-main-title a {
   color: #2f2f2f;
}

.tx-tag-group {
   margin-top: 24px;
}

.tx-tag-group a {
   margin-right:        5px;
  font-size: 12px;
    color: #afafaf;
}

.tx-hero-img {
    margin-top: 55px;
}

.tx-hero-img img {
   display: block;
    width: 100%;
}

.tx-text-area {
    margin-top: 68px;
}

.tx-text-area p {
  margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.85rem;
    color: #afafaf;
}

.tx-bottom-cta {
   text-align: center;
}

.tx-btn-more {
   display: inline-block;
  padding: 20px 50px;
  font-size: 14px;
  color: #fff;
   line-height     :  1;
   background: #2f2f2f;
   text-decoration: none;
}@media screen and (min-width: 768px) {
    .tx-main-title {
        font-size: 72px
    }
}.fq-query-area {
    padding: 80px 0;
}

.fq-container-box {
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

.fq-row-intro {
    display: flex;
    margin-bottom: 3rem;
}

.fq-row-intro.justify-center {
  justify-content: center;
}

.fq-col-center {
   max-width: 800px;
    width: 100%;
}

.fq-section-heading {
   font-size: 3rem;
   margin-bottom: 1rem;
}

.fq-lead-text {
    font-size: 1.125rem;
  color: #666;
}

.fq-row-accord {
  display: flex;
  justify-content: center;
}

.fq-col-box {
  max-width: 800px;
  width: 100%;
}

.fq-accordion-wrap {
   border: 1px solid #efefef;
    border-radius: 4px;
}

.fq-accord-block {
  border-bottom: 1px solid #efefef;
}

.fq-accord-block:last-child {
    border-bottom: none;
}

.fq-btn-toggle {
   padding: 20px;
    display: block;
   text-align: left;
    position: relative;
  background: #f9f9f9;
  color: #000;
    font-weight: 700;
   cursor: pointer;
  transition: background .3s ease;
  border-bottom: 1px solid #efefef;
}

.fq-btn-toggle:hover {
    text-decoration: none;
  background: #f0f0f0;
}

.fq-btn-toggle.collapsed {
	background: #fff;
}

.fq-icon-mark {
    position: absolute;
  right: 20px;
    top: 50%;
  transform: translateY(-50%);
   transition: .3s all ease;
   width: 20px;
   height: 20px;
}

.fq-icon-mark:before {
  content: "−";
   font-size: 24px;
  display: block;
}

.fq-btn-toggle.collapsed .fq-icon-mark:before {
  content: "+";
}

.fq-collapse-area {
    max-height: 0;
    overflow: hidden;
   transition: max-height .3s ease;
}

.fq-collapse-area.show {
    max-height: 500px;
}

.fq-body-content {
   padding: 20px;
  background: #fff;
}

.fq-body-content p {
    color: #666;
  line-height: 1.8;
}

.ft-bottom-zone {
    padding: 4em 0;
    background: #1a1a1a;
   color: #999;
}@media (min-width: 768px) {
    .ft-bottom-zone {
        padding: 8em 0
    }
}.ft-container-main {
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.ft-row-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
  margin-bottom: 3rem;
}

.ft-col-segment {
  margin-bottom: 0;
}

.ft-row-nested {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
}

.ft-col-block {
  margin-bottom: 0;
}

.ft-head-label {
    font-size: 16px;
    color: #fff;
   margin-bottom: 1rem;
}

.ft-list-plain {
  list-style: none;
}

.ft-list-plain li {
  margin-bottom: 10px;
}

.ft-list-plain a {
    color : #999;
   transition: color .3s ease;
}

.ft-list-plain a:hover {
  color: #fff;
}

.ft-input-wrapper {
   display: flex;
  margin-bottom: 1rem;
}

.ft-form-field {
   flex: 1;
   padding: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
}

.ft-btn-submit {
   padding: 12px 24px;
  background: #dc2626;
   border: 1px solid #dc2626;
    color: #fff;
    cursor: pointer;
   transition: background .3s ease;
}

.ft-btn-submit:hover {
    background: #b91c1c;
}

.ft-email-contact {
   color: #999;
   font-size: 14px;
}

.ft-row-bottom {
   padding-top: 3rem;
}

.ft-border-divider {
  border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2rem;
  text-align: center;
}

.ft-border-divider p {
   color: #737373;
}@media (max-width: 992px) {
    .ft-row-grid {
        grid-template-columns:1fr
    }

    .ft-row-nested {
        grid-template-columns:repeat(2, 1fr)
    }
}@media (max-width: 576px) {
    .ft-row-nested {
        grid-template-columns:1fr
    }
}.site-footer {
   padding: 4em 0;
    background: #1a1a1a;
}@media (min-width: 768px) {
    .site-footer {
        padding: 8em 0
    }
}.site-footer .container {
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

.site-footer .row {
   display: grid;
   grid-template-columns: 3fr 1fr;
   gap: 3rem;
  margin-bottom: 3rem;
}@media (max-width: 992px) {
    .site-footer .row {
        grid-template-columns:1fr
    }
}.site-footer .col-md-9 .row {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}@media (max-width: 768px) {
    .site-footer .col-md-9 .row {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 480px) {
    .site-footer .col-md-9 .row {
        grid-template-columns:1fr
    }
}.ft-logo-zone {
    margin-bottom: 1.5rem;
}

.ft-brand-img {
   min-height: 86px;
   width: auto;
  filter: brightness(0) invert(1);
}

.site-footer .border-top {
  border-top: 1px solid rgba(255, 255, 255, .1) !important;
}

.site-footer p {
   color: #fff;
}

.site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
    color: #fff;
}

.site-footer a {
   color: #999;
  transition: color .3s ease;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer ul {
   list-style: none;
   padding: 0;
  margin: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer .footer-heading {
  font-size: 16px;
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer .input-group {
   display: flex;
  margin-bottom: 1rem;
}

.site-footer .form-control {
   flex: 1;
    padding: 12px;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
   color: #fff !important;
}

.site-footer .input-group-append button {
   padding: 12px 20px;
  background: #dc2626;
  border: 1px solid #dc2626;
  color: #fff;
   cursor: pointer;
    transition: background .3s ease;
}

.site-footer .input-group-append button:hover {
  background: #b91c1c;
}

.ft-contact-info {
      color: #999;
  font-size: 14px;
  margin-bottom: .5rem;
}

.ft-regulators-section {
  background: rgba(255, 255, 255, .05);
   padding: 2rem;
    border-radius: 8px;
   margin: 3rem 0;
  border: 2px solid rgba(255, 255, 255, .1);
}

.ft-reg-heading {
  color: #fff;
   font-size: 18px;
    text-align: center;
	margin-bottom: 1.5rem;
   text-transform: uppercase;
    letter-spacing: 1px;
}

.ft-reg-grid {
   display: grid;
  grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    align-items: center;
  justify-items: center;
}@media (max-width: 992px) {
    .ft-reg-grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 576px) {
    .ft-reg-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}.ft-reg-link {
    display: block;
   padding: 10px;
  background: rgba(255, 255, 255, .08);
  border-radius: 6px;
    transition: all .3s ease;
}

.ft-reg-link:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-3px);
}

.ft-reg-link img {
   max-width: 80px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
   opacity: .8;
   transition: opacity .3s ease;
}

.ft-reg-link:hover img {
  opacity: 1;
}

.ft-disclaimer-box {
    background: #dc2626;
   padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 5px solid #991b1b;
}

.ft-disclaimer-title {
   color: #fff;
   font-size: 20px;
  margin-bottom: 1rem;
   font-weight: 700;
}

.ft-disclaimer-text {
   color: #fff;
  font-size: 14px;
   line-height: 1.8;
   margin: 0;
}

.ft-disclaimer-text a {
    color: #fff;
   text-decoration: underline;
   font-weight: 600;
}

.ft-disclaimer-text a:hover {
   color: #fef2f2;
}

.age-popup-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .95);
    display: flex;
   align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
      visibility: hidden;
   transition: all .3s ease;
}

.age-popup-overlay.active {
   opacity: 1;
    visibility: visible;
}

.age-popup-box {
    background: #fff;
  max-width: 500px;
   width: 90%;
    padding: 3rem 2rem;
  border-radius: 12px;
    text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
  animation: popupSlide .4s ease;
}@keyframes popupSlide {
    from {
        transform: translateY(-30px);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}.age-popup-icon {
    width: 80px;
    height: 80px;
  margin: 0 auto 1.5rem;
  background: #dc2626;
    color: #fff;
  font-size: 32px;
   font-weight: 700;
  border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content: center;
  box-shadow: 0 4px 15px rgba(220, 38, 38, .3);
}

.age-popup-title {
  font-size: 24px;
   color: #1a1a1a;
  margin-bottom: 1rem;
   font-weight: 700;
}

.age-popup-text {
    font-size: 15px;
   color: #666;
  line-height: 1.7;
    margin-bottom: 2rem;
}

.age-popup-buttons {
    display: flex;
    gap: 1rem;
   margin-bottom: 1.5rem;
    flex-direction: column;
}@media (min-width: 480px) {
    .age-popup-buttons {
        flex-direction: row
    }
}.age-btn {
   flex: 1;
    padding: 15px 25px;
   font-size: 16px;
   font-weight: 600;
   border: none;
   border-radius: 6px;
  cursor: pointer;
  transition: all .3s ease;
}

.age-btn-confirm {
   background: #dc2626;
    color: #fff;
}

.age-btn-confirm:hover {
   background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, .4);
}

.age-btn-decline {
    background: #e5e7eb;
   color: #374151;
}

.age-btn-decline:hover {
   background: #d1d5db;
}

.age-popup-footer {
   font-size: 12px;
    color: #999;
    margin: 0;
}

body.popup-active {
  overflow: hidden;
}

.ct-offers-zone {
   padding: 80px 0;
   background: #fff;

}

.ct-main-wrap {
    max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.ct-header-area {

   text-align: center;
    margin-bottom: 3rem;
	}

.ct-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
    margin-bottom: 1rem;
}

.ct-subtitle-text {
    font-size: 1.125rem;
   color: #666;
}

.ct-offer-card {
  display: grid;
   grid-template-columns: 200px 180px 1fr 200px 180px;
   gap: 2rem;
    align-items: center;
  background: #fff;
  border: 2px solid #e5e7eb;
   border-radius: 8px;
   padding: 2rem;
   margin-bottom: 2rem;
	transition: all .3s ease;
}

.ct-offer-card:hover {
	  border-color: #dc2626;
  box-shadow: 0 8px 25px rgba(220,38,38,.15);
  transform: translateY(-3px);}

.ct-card-section {
    display: flex;
   flex-direction: column;
   gap: .75rem;
}

.ct-logo-section {
  align-items: center;
  text-align: center;
  border-right: 2px solid #f3f4f6;
   padding-right: 2rem;
}

.ct-site-logo {
    max-width: 160px;
    height: auto;
  margin-bottom: .5rem;
}

.ct-site-name {
   font-size: 1.25rem;
    font-weight: 600;
  color: #1a1a1a;
   margin: 0;
}

.ct-rating-section {
   border-right: 2px solid #f3f4f6;
   padding-right: 2rem;
}

.ct-rating-box {
	display: flex;
    flex-direction: column;
    gap: .5rem;
}

.ct-rating-number {
    font-size: 2rem;
  font-weight: 700;
    color: #dc2626;
}

.ct-rating-number span {
   font-size: 1rem;
  color: #666;
}

.ct-rating-stars {
    display: flex;
  gap: 3px;
}

.ct-star {
   color: #d1d5db;
   font-size: 18px;
}

.ct-star.filled {
    color: #fbbf24;
}

.ct-star.half {
  background: linear-gradient(90deg,#fbbf24 50%,#d1d5db 50%);
  background-clip: text;
}

.ct-license-badge {
   display: flex;
   align-items: center;
  gap: .5rem;
          padding: .5rem .75rem;
  background: #f0fdf4;
   border-radius: 6px;
    font-size: .875rem;
    color: #16a34a;
    font-weight: 500;
}

.ct-license-badge img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(519%) hue-rotate(88deg) brightness(96%) contrast(86%);
}

.ct-bonus-section {
    flex :      1;
   border-right: 2px solid #f3f4f6;
   padding-right: 2rem;
}

.ct-bonus-label {
   font-size: .875rem;
   font-weight: 600;
  color: #dc2626;
   text-transform: uppercase;
    letter-spacing: .5px;
  margin-bottom: .25rem;
}

.ct-bonus-text   {
  font-size: .95rem;
    color: #1a1a1a;
    font-weight: 500;
    padding: .35rem 0;
}

.ct-features-section {
  border-right: 2px solid #f3f4f6;
   padding-right: 2rem;
}

.ct-feature-item {
    display: flex;
  align-items: center;
   gap: .5rem;
  font-size: .9rem;
    color: #666;
}

.ct-feature-item img {

	  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(519%) hue-rotate(88deg) brightness(96%) contrast(86%);
    flex-shrink: 0;
}

.ct-action-section {
    align-items: center;
   justify-content: center;
}

.ct-bonus-btn {
   display: inline-flex;
   align-items: center;
   gap: .5rem;
  padding: 1rem 2rem;
   background: #dc2626;
   color: #fff;
    font-weight: 600;
    font-size: 1rem;
  border-radius: 6px;
   text-decoration: none;
  transition: all .3s ease;
   white-space: nowrap;
}

.ct-bonus-btn:hover {
    background: #b91c1c;
  transform: translateX(3px);
  box-shadow: 0 4px 15px rgba(220,38,38,.3);
}

.ct-bonus-btn img {
  filter: brightness(0) invert(1);
   transition: transform .3s ease;
}

.ct-bonus-btn:hover img {
  transform: translateX(3px);
}@media (max-width:1200px){
    .ct-offer-card{grid-template-columns:180px 160px 1fr 180px 160px;gap:1.5rem;padding:1.5rem}
    .ct-site-logo{max-width:140px}
}

@media (max-width:992px){
    .ct-offer-card{grid-template-columns:1fr;gap:1.5rem}
    .ct-logo-section,.ct-rating-section,.ct-bonus-section,.ct-features-section{border-right:none;border-bottom:2px solid #f3f4f6;padding-right:0;padding-bottom:1.5rem}
    .ct-action-section{padding-top:1rem;border-top:2px solid #f3f4f6}
    .ct-logo-section{flex-direction:row;text-align:left;align-items:center;gap:1rem}
    .ct-site-logo{margin-bottom:0;max-width:120px}
}

@media (max-width:576px){
    .ct-main-title{font-size:1.75rem}
    .ct-offer-card{padding:1rem}
    .ct-bonus-btn{width:100%;justify-content:center;padding:.875rem 1.5rem}
}

.cf-contact-zone{padding:80px 0;background:#fff;min-height:calc(100vh - 300px)}
.cf-main-container{max-width:800px;margin:0 auto;padding:0 20px}
.cf-header-block{text-align:center;margin-bottom:3rem}
.cf-page-heading{font-size:2.5rem;font-weight:700;color:#1a1a1a;margin-bottom:1rem}
.cf-intro-text{font-size:1.125rem;color:#666}

.cf-form-wrapper{background:#fff;border:2px solid #e5e7eb;border-radius:12px;padding:3rem;box-shadow:0 4px 15px rgba(0,0,0,.05)}
.cf-form-element{display:flex;flex-direction:column;gap:2rem}
.cf-field-group{display:flex;flex-direction:column;gap:.5rem}
.cf-field-label{display:flex;align-items:center;gap:.5rem;font-size:1rem;font-weight:600;color:#1a1a1a;margin-bottom:.25rem}
.cf-field-label img{filter:brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(6247%) hue-rotate(354deg) brightness(87%) contrast(91%)}

.cf-form-element input[type="text"],
.cf-form-element input[type="email"],
.cf-form-element input[type="tel"],
.cf-form-element select,
.cf-form-element textarea{width:100%;display:block;outline:none;border:none;border-bottom:2px solid #d1d5db;background-color:transparent;color:#1a1a1a;font-size:1.05rem;line-height:1.5;padding:.75rem 0;padding-bottom:1rem;transition:border-color .3s ease}
.cf-form-element input[type="text"]:focus,
.cf-form-element input[type="email"]:focus,
.cf-form-element input[type="tel"]:focus,
.cf-form-element select:focus,
.cf-form-element textarea:focus{border-bottom-color:#dc2626}
.cf-form-element input[type="text"].error,
.cf-form-element input[type="email"].error,
.cf-form-element input[type="tel"].error,
.cf-form-element select.error,
.cf-form-element textarea.error{border-bottom-color:#dc2626;background:#fef2f2}

.cf-form-element select{cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc2626' d='M6 9L1 4h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 8px center;padding-right:30px}
.cf-form-element textarea{height:120px;resize:vertical;min-height:100px;max-height:300px;border:2px solid #d1d5db;border-radius:8px;padding:1rem}
.cf-form-element textarea:focus{border-color:#dc2626}

.cf-word-counter{font-size:.875rem;color:#666;margin-top:.25rem}
.cf-word-counter.valid{color:#16a34a}
.cf-word-counter.invalid{color:#dc2626}

.cf-radio-group{gap:1rem}
.cf-radio-options{display:flex;gap:2rem;margin-top:.5rem}
.cf-radio-label{display:flex;align-items:center;gap:.5rem;cursor:pointer;font-size:1rem;color:#666;transition:color .3s ease}
.cf-radio-label:hover{color:#1a1a1a}
.cf-radio-label input[type="radio"]{width:20px;height:20px;cursor:pointer;accent-color:#dc2626}
.cf-radio-label span{font-weight:500}

.cf-submit-area{margin-top:1rem;text-align:center}
.cf-submit-button{display:inline-flex;align-items:center;gap:.75rem;padding:1rem 3rem;background:#dc2626;color:#fff;border:none;border-radius:8px;font-size:1.125rem;font-weight:600;cursor:pointer;transition:all .3s ease;text-transform:uppercase;letter-spacing:1px}
.cf-submit-button:hover{background:#b91c1c;transform:translateY(-2px);box-shadow:0 6px 20px rgba(220,38,38,.3)}
.cf-submit-button:active{transform:translateY(0)}
.cf-submit-button img{filter:brightness(0) invert(1)}
.cf-submit-button:disabled{background:#9ca3af;cursor:not-allowed;transform:none}

.cf-error-box{background:#fef2f2;border:2px solid #dc2626;border-radius:8px;padding:1rem;margin-top:1.5rem;color:#dc2626;font-size:.95rem;line-height:1.6}
.cf-error-box ul{margin:.5rem 0 0 1.5rem;padding:0}

.cf-popup-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.8);display:flex;align-items:center;justify-content:center;z-index:9999;opacity:0;visibility:hidden;transition:all .3s ease}
.cf-popup-overlay.active{opacity:1;visibility:visible}
.cf-popup-content{background:#fff;max-width:500px;width:90%;padding:3rem 2rem;border-radius:12px;text-align:center;box-shadow:0 10px 40px rgba(0,0,0,.3);animation:popupBounce .5s ease}
@keyframes popupBounce{
    0%{transform:scale(.8);opacity:0}
    50%{transform:scale(1.05)}
    100%{transform:scale(1);opacity:1}
}.cf-popup-icon {
    margin: 0 auto 1.5rem;
  width: 80px;
   height: 80px;
                    background: #f0fdf4;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
}

.cf-popup-icon img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(519%) hue-rotate(88deg) brightness(96%) contrast(86%);
}

.cf-popup-title {
   font-size: 2rem;
   font-weight: 700;
   color: #1a1a1a;
  margin-bottom: 1rem;
}

.cf-popup-text {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
   line-height: 1.7;
}

.cf-popup-btn {
  padding: 1rem 3rem;
  background: #dc2626;
  color: #fff;
    border: none;
   border-radius: 8px;
  font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
  transition: all .3s ease;
}

.cf-popup-btn:hover {
   background: #b91c1c;
  transform: translateY(-2px);
}@media (max-width:768px){
    .cf-form-wrapper{padding:2rem 1.5rem}
    .cf-page-heading{font-size:2rem}
    .cf-radio-options{flex-direction:column;gap:1rem}
    .cf-submit-button{width:100%;justify-content:center}
}.lg-content-wrapper {
   padding: 80px 0;
  background: #fff;
  min-height: calc(100vh - 400px);
}

.lg-container-main {
      max-width: 900px;
    margin: 0 auto;
  padding: 0 20px;


}

.lg-header-zone {
   text-align: center;
   margin-bottom: 3rem;
  padding-bottom: 2rem;
   border-bottom: 3px solid #dc2626;
}

.lg-page-title {
  font-size: 2.5rem;
  font-weight: 700;
    color: #1a1a1a;
  margin-bottom: .5rem;
}

.lg-update-date {
  font-size: 1rem;
    color: #666;
    font-style: italic;
}

.lg-text-content {
    line-height: 1.8;
}

.lg-section-block {
   margin-bottom: 3rem;
}

.lg-section-block h2 {
   font-size: 1.75rem;
  font-weight: 600;
  color:      #dc2626;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #f3f4f6;
}

.lg-section-block p {
    font-size: 1.05rem;
   color: #1a1a1a;
    text-align: justify;
  margin-bottom: 1.5rem;
}@media (max-width:768px){
    .lg-page-title{font-size:2rem}
    .lg-section-block h2{font-size:1.5rem}
    .lg-section-block p{font-size:1rem;text-align:left}
}