:root {
    --primary-color: #073b4c;
    --primary-light: #e6ebee;
    --primary-dark: #052633;
    --secondary-color: #32B768;
    --secondary-light: #e8f5ed;
    --tertiary-color: #f43530;
    --tertiary-light: #fce8e8;
    --accent-color: #ff6b35;
    --accent-light: #fff0ec;
    --neutral-color: #808080;
    --neutral-light: #f8f9fa;
    --info-color: #17a2b8;
    --warning-color: #dc3545;
    --success-color: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PT Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-2, .col-lg-3, .col-lg-5, .col-lg-6, .col-lg-7, .col-xl-3, .col-xl-6, .col-md-4, .col-md-6, .col-md-8, .col-md-10, .col-12 {
    padding: 0 15px;
}

.col-lg-2 { flex: 0 0 16.666667%; }
.col-lg-3 { flex: 0 0 25%; }
.col-lg-5 { flex: 0 0 41.666667%; }
.col-lg-6 { flex: 0 0 50%; }
.col-lg-7 { flex: 0 0 58.333333%; }
.col-xl-3 { flex: 0 0 25%; }
.col-xl-6 { flex: 0 0 50%; }
.col-md-4 { flex: 0 0 33.333333%; }
.col-md-6 { flex: 0 0 50%; }
.col-md-8 { flex: 0 0 66.666667%; }
.col-md-10 { flex: 0 0 83.333333%; }
.col-12 { flex: 0 0 100%; }

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-lg-5 {
    margin-top: 3rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block;
    }
    .d-lg-none {
        display: none;
    }
}

.header-area {
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 9;
  position: absolute;
}

.header-area .main-header-area {
  padding: 20px 0;
  background: transparent;
}

.header-area .main-header-area.sticky {
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.12);
  position: fixed;
  width: 100%;
  top: -75px;
  left: 0;
  right: 0;
  z-index: 990;
  transform: translateY(75px);
  transition: transform 520ms ease, background 520ms ease;
  background: #353535;
  padding-bottom: 0;
}

.header-area .main-header-area .logo-img {
  text-align: center;
}

.header-area .main-header-area .logo img {
  width: auto;
  max-height: 45px;
}

.header-area .main-header-area .Appointment {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-area .main-header-area .Appointment .book_btn a {
  background: var(--secondary-color);
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 420;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.header-area .main-header-area .Appointment .book_btn a:hover {
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.header-area .main-header-area .main-menu {
  text-align: center;
  padding: 13px 0;
}

.header-area .main-header-area .main-menu ul li {
  display: inline-block;
  position: relative;
  margin: 0 12px;
}

.header-area .main-header-area .main-menu ul li a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 420;
  display: inline-block;
  padding: 0px;
  font-family: "PT Sans", sans-serif;
  position: relative;
  transition: all 0.3s ease;
}

.header-area .main-header-area .main-menu ul li a:hover {
  color: var(--secondary-color);
}

.header-area .main-header-area .main-menu ul li a.active {
  color: var(--secondary-color);
}

.header-area .main-header-area .main-menu ul li .submenu {
  position: absolute;
  left: 0;
  top: 165%;
  background: #fff;
  width: 205px;
  z-index: 2;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: 0.65s;
  border-radius: 8px;
}

.header-area .main-header-area .main-menu ul li .submenu li {
  display: block;
}

.header-area .main-header-area .main-menu ul li .submenu li a {
  padding: 12px 16px;
  position: inherit;
  transition: 0.35s;
  display: block;
  color: #111;
}

.header-area .main-header-area .main-menu ul li .submenu li:hover a {
  color: var(--secondary-color);
}

.header-area .main-header-area .main-menu ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 155%;
}

.header-area .header-top_area {
  padding: 13px 0;
  background: rgba(53, 53, 53, 0.55);
}

.header-area .header-top_area .social_media_links {
    text-align: right;
}

.header-area .header-top_area .social_media_links a {
  font-size: 16px;
  color: #fff;
  margin-right: 13px;
  transition: all 0.3s ease;
}

.header-area .header-top_area .social_media_links a:hover {
  color: var(--secondary-color);
}

.header-area .header-top_area .short_contact_list ul li {
  display: inline-block;
}

.header-area .header-top_area .short_contact_list ul li a {
  font-size: 14px;
  color: #fff;
  margin-left: 52px;
}

.header-area .header-top_area .short_contact_list ul li a i {
  color: var(--secondary-color);
  margin-right: 8px;
}

.header_bottom_border {
  border-bottom: 1px solid #565860;
  padding-bottom: 24px;
}

.mobile_menu {
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 9;
}

.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 620px;
  height: calc(95vh);
  display: flex;
  align-items: center;
}

.site-blocks-cover.overlay {
  position: relative;
}

.site-blocks-cover.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.72);
}

.site-blocks-cover h1 {
  font-size: 3.8rem;
  font-weight: 420;
  color: #fff;
  font-weight: 850;
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .site-blocks-cover h1 {
    font-size: 2.2rem;
  }
}

.site-blocks-cover p {
  color: white;
  font-size: 1.05rem;
  line-height: 1.52;
  font-weight: 320;
  position: relative;
  z-index: 2;
}

.site-blocks-cover .desc {
  font-size: 1.42rem;
  font-weight: 320;
}

.site-blocks-cover .desc a {
  color: white;
  border-bottom: dotted 1px #fff;
}

.site-blocks-cover .desc a:hover {
  color: #fff;
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.mouse {
  position: absolute;
  bottom: 42px;
  z-index: 5;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
}

.mouse .mouse-icon {
  display: block;
  width: 27px;
  height: 47px;
  border: 2px solid white;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  text-align: center;
  -webkit-transition: .32s all ease-in-out;
  -o-transition: .32s all ease-in-out;
  transition: .32s all ease-in-out;
}

.mouse .mouse-wheel {
  height: 5px;
  margin: 3px auto 0;
  display: block;
  width: 5px;
  background-color: white;
  border-radius: 50%;
  -webkit-animation: 1.7s ease infinite wheel-up-down;
  -moz-animation: 1.7s ease infinite wheel-up-down;
  animation: 1.7s ease infinite wheel-up-down;
}

.mouse:hover .mouse-icon {
  border-color: #fff;
}

.single-text .owl-dots {
  margin-top: 2.2rem;
  text-align: center;
}

.single-text .owl-dots .owl-dot {
  display: inline-block;
}

.single-text .owl-dots .owl-dot > span {
  display: inline-block;
  -webkit-transition: .32s all ease-in-out;
  -o-transition: .32s all ease-in-out;
  transition: .32s all ease-in-out;
  width: 8px;
  height: 8px;
  margin: 4px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.52);
}

.single-text .owl-dots .owl-dot.active > span {
  width: 22px;
  background-color: #fff;
}

@-webkit-keyframes wheel-up-down {
  0% {
    margin-top: 3px;
    opacity: 0;
  }
  32% {
    opacity: 1;
  }
  100% {
    margin-top: 22px;
    opacity: 0;
  }
}

@-moz-keyframes wheel-up-down {
  0% {
    margin-top: 3px;
    opacity: 0;
  }
  32% {
    opacity: 1;
  }
  100% {
    margin-top: 22px;
    opacity: 0;
  }
}

@keyframes wheel-up-down {
  0% {
    margin-top: 3px;
    opacity: 0;
  }
  32% {
    opacity: 1;
  }
  100% {
    margin-top: 22px;
    opacity: 0;
  }
}

.footer-area {
    background: #051022;
    padding-top: 85px;
    padding-bottom: 85px;
}

.footer_title {
    font-size: 19px;
    line-height: 25px;
    font-weight: bold;
    font-family: "Roboto", serif;
    color: #fff;
    margin-bottom: 30px;
}

.single-footer-widget p {
    margin-bottom: 0px;
    color: #808080;
    line-height: 25px;
    font-family: "PT Sans", sans-serif;
}

.ab_wd p {
    max-width: 240px;
}

.contact_wd {
    margin-right: -16px;
}

.contact_wd p {
    margin-bottom: 16px;
}

.contact_wd a {
    display: block;
    color: var(--tertiary-color);
    font-size: 25px;
    font-family: "PT Sans", sans-serif;
    font-weight: 520;
    margin-bottom: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact_wd a + a {
    margin-bottom: 0px;
}

.contact_wd a:hover {
    color: var(--secondary-color);
}

.tp_widgets .list li {
    margin-bottom: 13px;
}

.tp_widgets .list li a {
    color: #808080;
    font-size: 15px;
    font-weight: normal;
    font-family: "PT Sans", sans-serif;
    transition: all 300ms linear;
    text-decoration: none;
}

.tp_widgets .list li:last-child {
    margin-bottom: 0px;
}

.tp_widgets .list li:hover a {
    color: #fff;
}

.news_widget {
    padding-left: 16px;
}

.news_widget p {
    font-size: 15px;
    line-height: 25px;
    font-family: "PT Sans", sans-serif;
    color: #808080;
    margin-bottom: 16px;
}

.news_widget .input-group {
    display: flex;
}

.news_widget .input-group input {
    height: 42px;
    background: #fff;
    border-radius: 0px;
    width: 80%;
    border: none;
    padding: 0px 16px;
    font-size: 15px;
    font-family: "PT Sans", sans-serif;
    color: #808080;
    outline: none;
    box-shadow: none;
}

.news_widget .input-group .sub-btn {
    border-radius: 0px;
    background: var(--tertiary-color);
    outline: none !important;
    box-shadow: none !important;
    padding: 0px;
    width: 44px;
    cursor: pointer;
    color: #fff;
    height: 42px;
    border: none;
    transition: all 0.3s ease;
}

.news_widget .input-group .sub-btn:hover {
    background: var(--accent-color);
}

.border_line {
    width: 100%;
    height: 1px;
    background: #3a3a3a;
    margin: 32px 0;
}

.footer-bottom {
    padding-top: 27px;
}

.footer-bottom .footer-text {
    color: #fff;
    opacity: .65;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 32px;
}

.footer-bottom .footer-text i {
    color: var(--tertiary-color);
    opacity: 1;
}

.footer-bottom .footer-text a {
    color: var(--tertiary-color);
    opacity: 1;
    text-decoration: none;
}

.footer-bottom .footer-social {
    text-align: right;
}

.footer-bottom .footer-social a {
    font-size: 15px;
    line-height: 32px;
    color: #fff;
    margin-left: 7px;
    transition: all 0.3s linear;
    background: #21252f;
    height: 32px;
    width: 32px;
    text-align: center;
    display: inline-block;
    transition: all 300ms linear 0s;
    text-decoration: none;
    border-radius: 4px;
}

.footer-bottom .footer-social a:hover {
    color: #fff;
    background: var(--tertiary-color);
}

.responsible-gaming-notice {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.responsible-gaming-notice p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.responsible-gaming-notice a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 450px;
    margin: 20px;
}

.popup-content h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 24px;
}

.popup-content p {
    color: var(--neutral-color);
    margin-bottom: 30px;
    font-size: 16px;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: var(--secondary-color);
    color: #fff;
}

.btn-confirm:hover {
    background: var(--primary-color);
}

.btn-deny {
    background: var(--neutral-light);
    color: var(--primary-dark);
    border: 2px solid var(--neutral-color);
}

.btn-deny:hover {
    background: var(--tertiary-color);
    color: #fff;
    border-color: var(--tertiary-color);
}

@media (max-width: 991px) {
    .col-lg-2, .col-lg-3, .col-lg-5, .col-lg-6, .col-lg-7 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .site-blocks-cover h1 {
        font-size: 2.5rem;
    }
    
    .footer-bottom .footer-social {
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .col-md-4, .col-md-6, .col-md-8, .col-md-10 {
        flex: 0 0 100%;
    }
    
    .site-blocks-cover h1 {
        font-size: 2rem;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
}

.previous-project-nav {
    display: none;
}

.contact_wd a{
    color:var(--tertiary-color);
}

.hero_actions  {
    margin-top:35px;
}

.single-footer-widget p{
    color:#808080;line-height:25px;
}

.ftco-about-us {
  position: relative;
  z-index: 0; 
  padding: 80px 0;
}

.ftco-about-us:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: var(--secondary-color);
  z-index: -2;
  width: 63%; 
}

@media (max-width: 767.98px) {
  .ftco-about-us:after {
    width: 100%; 
  } 
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col-md-6 {
    padding-right: 0;
    padding-left: 0;
}

.p-md-5 {
    padding: 3rem;
}

@media (max-width: 767.98px) {
  .img-2 {
    height: 600px;
    margin-bottom: 40px; 
  } 
}

.img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; 
  min-height: 500px;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.wrap-about-content {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.heading-section .sub-heading {
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
  color: var(--info-color);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase; 
}

.heading-section h2 {
  font-size: 40px;
  font-weight: 600; 
  font-family: "Roboto", serif;
}

@media (max-width: 767.98px) {
  .heading-section h2 {
    font-size: 28px; 
  } 
}

.heading-section.heading-section-white .sub-heading {
  color: rgba(255, 255, 255, 0.9); 
}

.heading-section.heading-section-white h2 {
  font-size: 40px;
  color: #fff; 
}

.heading-section.heading-section-white p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pl-md-5 {
    padding-left: 3rem;
}

.btn.btn-primary {
  background: var(--secondary-color) !important;
  border: 1px solid var(--secondary-color) !important;
  color: #fff !important;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  border: 1px solid var(--secondary-color);
  background: transparent !important;
  color: var(--secondary-color) !important; 
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.ftco-animate {
  opacity: 1;
  visibility: visible; 
}

@media (max-width: 991px) {
    .col-md-6 {
        flex: 0 0 100%;
    }
    
    .ftco-about-us:after {
        width: 100%;
    }
    
    .wrap-about-content {
        padding: 40px 20px;
    }
    
    .pl-md-5 {
        padding-left: 1rem;
    }
}

.wrap-about-content{
    position:relative;z-index:2;
}

.heading-section .sub-heading{
    color:var(--info-color);letter-spacing: 2px;
}

.img {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.heading-section .subheading {
  font-size: 12px;
  display: block;
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px; 
}

.heading-section h2 {
  font-size: 44px;
  font-weight: 300; 
  font-family: "Roboto", serif;
  color: var(--primary-dark);
}

@media (max-width: 767.98px) {
  .heading-section h2 {
    font-size: 28px; 
  } 
}

.ftco-section {
  padding: 7em 0;
  position: relative; 
}

@media (max-width: 767.98px) {
  .ftco-section {
    padding: 6em 0; 
  } 
}

.ftco-animate {
  opacity: 1;
  visibility: visible; 
}

.heading-section p {
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.8;
  color: var(--neutral-color);
  font-family: "PT Sans", sans-serif;
}

.btn {
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: none !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn:hover, .btn:active, .btn:focus {
  outline: none; 
}

.btn.btn-primary {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #fff; 
}

.btn.btn-primary:hover {
  border: 1px solid var(--secondary-color);
  background: transparent;
  color: var(--secondary-color); 
}

.pl-md-5 {
    padding-left: 3rem;
}

.pt-md-5 {
    padding-top: 3rem;
}

.pr-md-5 {
    padding-right: 3rem;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-start {
    justify-content: flex-start;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col-md-6, .no-gutters > .col-md-12 {
    padding-right: 0;
    padding-left: 0;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
  .img {
    min-height: 300px;
    margin-bottom: 30px;
  }
  
  .col-md-6, .col-md-12 {
    flex: 0 0 100%;
  }
  
  .pl-md-5, .pt-md-5, .pr-md-5 {
    padding: 1rem;
  }
}

@media (max-width: 991px) {
    .col-md-6, .col-md-12 {
        flex: 0 0 100%;
    }
}

.heading-section .subheading{
    color:var(--secondary-color);letter-spacing:1px;
}

.btn.btn-primary{
    background:var(--secondary-color);border: 1px solid var(--secondary-color);
}

.heading-section p{
    color:var(--neutral-color); line-height: 1.8;
}


.advantages-section {
    background: var(--neutral-light);
    padding: 7em 0;
    position: relative;
}

@media (max-width: 767.98px) {
    .advantages-section {
        padding: 6em 0;
    }
}

.advantage-card {
    background: #fff;
    border-radius: 8px;
    margin: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 32px;
    color: #fff;
}

.advantage-card:hover .icon-wrapper {
    background: var(--accent-color);
    transform: scale(1.1);
}

.advantage-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: "Roboto", serif;
}

.advantage-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-color);
    margin-bottom: 0;
    font-family: "PT Sans", sans-serif;
}

.text-center {
    text-align: center;
}

.p-4 {
    padding: 2rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    padding: 0 15px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    padding: 0 15px;
}

.justify-content-center {
    justify-content: center;
}

.d-flex {
    display: flex;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col-md-4 {
    padding-right: 0;
    padding-left: 0;
}

.heading-section .subheading {
    font-size: 12px;
    display: block;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.heading-section h2 {
    font-size: 44px;
    font-weight: 300;
    font-family: "Roboto", serif;
    color: var(--primary-dark);
}

.heading-section p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--neutral-color);
    font-family: "PT Sans", sans-serif;
}

@media (max-width: 991px) {
    .col-md-4, .col-md-8 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .advantage-card {
        margin: 15px 0;
    }
}

@media (max-width: 767.98px) {
    .heading-section h2 {
        font-size: 32px;
    }
    
    .advantage-card {
        margin: 10px 0;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 28px;
    }
}

.ftco-animate {
    opacity: 1;
    visibility: visible;
}

.advantage-card h3{
    color:var(--primary-dark);margin-bottom: 15px;
}

.icon-wrapper{
    background:var(--secondary-color); border-radius:50%;
}

.advantage-card p{
    color:var(--neutral-color);line-height:1.6;
}

.draw-steps-section {
    background: #fff;
    padding: 7em 0;
    position: relative;
}

@media (max-width: 767.98px) {
    .draw-steps-section {
        padding: 6em 0;
    }
}

.countdown-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(7, 59, 76, 0.2);
}

.countdown-title {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: "Roboto", serif;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 15px;
    border-radius: 8px;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.time-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-family: "Roboto", serif;
}

.time-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.draw-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.step-card {
    background: #fff;
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    margin: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(50, 183, 104, 0.2);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.step-card:hover .step-icon {
    background: var(--secondary-color);
}

.step-card:hover .step-icon i {
    color: #fff;
}

.step-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: "Roboto", serif;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--neutral-color);
    margin-bottom: 0;
    font-family: "PT Sans", sans-serif;
}

.col-md-3 {
    flex: 0 0 25%;
    padding: 0 15px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    padding: 0 15px;
}

.col-md-10 {
    flex: 0 0 83.333333%;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.p-4 {
    padding: 2rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col-md-3 {
    padding-right: 0;
    padding-left: 0;
}

.heading-section .subheading {
    font-size: 12px;
    display: block;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.heading-section h2 {
    font-size: 44px;
    font-weight: 300;
    font-family: "Roboto", serif;
    color: var(--primary-dark);
}

.heading-section p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--neutral-color);
    font-family: "PT Sans", sans-serif;
}

@media (max-width: 991px) {
    .col-md-3, .col-md-8, .col-md-10 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .step-card {
        margin: 15px 0;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px 10px;
    }
}

@media (max-width: 767.98px) {
    .heading-section h2 {
        font-size: 32px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .time-number {
        font-size: 24px;
    }
    
    .countdown-title {
        font-size: 24px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
}

.ftco-animate {
    opacity: 1;
    visibility: visible;
}

.step-card h4{
    color:var(--primary-dark);margin-bottom:15px;
}

.time-number{
    font-weight:700; color:#fff;
}

.step-card p{
    color:var(--neutral-color);line-height: 1.6;
}

.gambling-awareness-section {
    background: var(--primary-light);
    padding: 6em 0;
    position: relative;
}

@media (max-width: 767.98px) {
    .gambling-awareness-section {
        padding: 4em 0;
    }
}

.awareness-card {
    background: #fff;
    border-radius: 8px;
    margin: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid transparent;
}

.awareness-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--warning-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--warning-color);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 24px;
    color: #fff;
}

.awareness-card:hover .card-icon {
    background: var(--tertiary-color);
    transform: scale(1.05);
}

.awareness-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: "Roboto", serif;
}

.awareness-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--neutral-color);
    margin-bottom: 20px;
    font-family: "PT Sans", sans-serif;
    flex-grow: 1;
}

.card-link {
    margin-top: auto;
}

.link-primary {
    color: var(--warning-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.link-primary:hover {
    color: var(--tertiary-color);
    text-decoration: underline;
}

.regulators-section {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.regulators-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-family: "Roboto", serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.regulators-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.regulator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.regulator-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.regulator-item a:hover {
    transform: scale(1.05);
}

.regulator-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 10px;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.regulator-item a:hover .regulator-logo {
    filter: grayscale(0%);
}

.regulator-text {
    font-size: 12px;
    color: var(--neutral-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-info {
    background: var(--primary-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.license-info strong {
    color: var(--primary-dark);
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    font-family: "Roboto", serif;
}

.license-info p {
    color: var(--neutral-color);
    font-size: 14px;
    margin: 0;
    font-family: "PT Sans", sans-serif;
}

.helpline-info {
    border-top: 2px solid var(--primary-light);
    padding-top: 25px;
    margin-top: 25px;
}

.helpline-info p {
    margin-bottom: 8px;
    color: var(--neutral-color);
    font-size: 15px;
}

.helpline-info strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.helpline-info a {
    color: var(--warning-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.helpline-info a:hover {
    color: var(--tertiary-color);
    text-decoration: underline;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    padding: 0 15px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    padding: 0 15px;
}

.col-md-10 {
    flex: 0 0 83.333333%;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.p-4 {
    padding: 2rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col-md-4 {
    padding-right: 0;
    padding-left: 0;
}

.heading-section .subheading {
    font-size: 12px;
    display: block;
    font-weight: 500;
    color: var(--warning-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.heading-section h2 {
    font-size: 40px;
    font-weight: 300;
    font-family: "Roboto", serif;
    color: var(--primary-dark);
}

.heading-section p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--neutral-color);
    font-family: "PT Sans", sans-serif;
}

@media (max-width: 991px) {
    .col-md-4, .col-md-8, .col-md-10 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .awareness-card {
        margin: 15px 0;
    }
    
    .regulators-logos {
        gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .heading-section h2 {
        font-size: 32px;
    }
    
    .regulators-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .regulators-section {
        padding: 25px 20px;
    }
}

.ftco-animate {
    opacity: 1;
    visibility: visible;
}

.awareness-card h4{
    color:var(--primary-dark);margin-bottom: 15px;
}

.card-icon{
    background:var(--warning-color); border-radius:50%;
}

.helpline-info p{
    color:var(--neutral-color);font-size:15px;
}


.tickets-section {
    background: #fff;
    padding: 7em 0;
    position: relative;
}

@media (max-width: 767.98px) {
    .tickets-section {
        padding: 5em 0;
    }
}

.ticket-card {
    background: #fff;
    border-radius: 12px;
    margin: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid transparent;
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.ticket-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.ticket-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.ticket-badge {
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-badge.special {
    background: var(--accent-color);
}

.ticket-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ticket-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-family: "Roboto", serif;
}

.ticket-features {
    flex-grow: 1;
    margin-bottom: 25px;
}

.ticket-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--neutral-color);
    display: flex;
    align-items: center;
    font-family: "PT Sans", sans-serif;
}

.ticket-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 14px;
}

.ticket-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--primary-light);
    border-radius: 8px;
}

.price-label {
    display: block;
    font-size: 12px;
    color: var(--neutral-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: "Roboto", serif;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn.btn-primary {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-info-section {
    background: var(--primary-light);
    padding: 40px 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.contact-info-section h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: "Roboto", serif;
}

.contact-info-section p {
    font-size: 16px;
    color: var(--neutral-color);
    margin-bottom: 25px;
    font-family: "PT Sans", sans-serif;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    font-size: 18px;
    color: var(--secondary-color);
    margin-right: 10px;
}

.contact-method span {
    font-size: 15px;
    color: var(--primary-dark);
    font-weight: 500;
}

.col-md-6 {
    flex: 0 0 50%;
    padding: 0 15px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.p-4 {
    padding: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col-md-6 {
    padding-right: 0;
    padding-left: 0;
}

.heading-section .subheading {
    font-size: 12px;
    display: block;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.heading-section h2 {
    font-size: 44px;
    font-weight: 300;
    font-family: "Roboto", serif;
    color: var(--primary-dark);
}

.heading-section p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--neutral-color);
    font-family: "PT Sans", sans-serif;
}

@media (max-width: 991px) {
    .col-md-6, .col-md-8 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .ticket-card {
        margin: 20px 0;
    }
    
    .contact-methods {
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .heading-section h2 {
        font-size: 32px;
    }
    
    .ticket-image {
        height: 160px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

.ftco-animate {
    opacity: 1;
    visibility: visible;
}

.ticket-content h3{
    color:var(--primary-dark);margin-bottom: 20px;
}

.ticket-features li{
    color:var(--neutral-color); font-family:"PT Sans",sans-serif;
}

.contact-method span{
    color:var(--primary-dark);font-weight:500;
}

.text_section_area {
  padding: 125px 0;
  background: #fff;
}

.text_section_area .section_title h3 {
  font-size: 38px;
  font-weight: 400;
  line-height: 58px;
  color: var(--primary-dark);
  position: relative;
  z-index: 0;
  padding-bottom: 17px;
  font-family: "Roboto", serif;
}

.text_section_area .section_title p {
  font-size: 17px;
  color: var(--neutral-color);
  line-height: 30px;
  margin-bottom: 0;
  font-weight: 400;
  font-family: "PT Sans", sans-serif;
}

.text_section_area .text_content p {
  font-size: 17px;
  line-height: 30px;
  color: var(--neutral-color);
  margin-bottom: 17px;
  font-family: "PT Sans", sans-serif;
}

.mb-65 {
  margin-bottom: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-xl-12 {
    flex: 0 0 100%;
    padding: 0 15px;
}

.col-xl-8 {
    flex: 0 0 66.666667%;
    padding: 0 15px;
}

.col-md-10 {
    flex: 0 0 83.333333%;
    padding: 0 15px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

@media (max-width: 991px) {
    .col-xl-8, .col-md-10 {
        flex: 0 0 100%;
    }
    
    .text_section_area {
        padding: 80px 0;
    }
    
    .text_section_area .section_title h3 {
        font-size: 32px;
        line-height: 42px;
    }
}

@media (max-width: 767px) {
    .text_section_area {
        padding: 60px 0;
    }
    
    .text_section_area .section_title h3 {
        font-size: 28px;
        line-height: 38px;
    }
    
    .text_section_area .section_title p {
        font-size: 16px;
    }
    
    .text_section_area .text_content p {
        font-size: 16px;
        line-height: 28px;
    }
    
    .mb-65 {
        margin-bottom: 50px;
    }
}

body {
    font-family: "PT Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-dark);
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #073b4c;
    --primary-light: #e6ebee;
    --primary-dark: #052633;
    --secondary-color: #32B768;
    --secondary-light: #e8f5ed;
    --tertiary-color: #f43530;
    --tertiary-light: #fce8e8;
    --accent-color: #ff6b35;
    --accent-light: #fff0ec;
    --neutral-color: #808080;
    --neutral-light: #f8f9fa;
    --info-color: #17a2b8;
    --warning-color: #dc3545;
    --success-color: #28a745;
}

.text_section_area .section_title h3{
    color:var(--primary-dark); font-family:"Roboto",serif;
}

.text_section_area .text_content p{
    color:var(--neutral-color);line-height:30px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px 0;
}

.contact-form {
    background: var(--neutral-light);
    padding: 40px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

.form-group.col-md-6 {
    flex: 0 0 50%;
    padding: 0 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 14px;
    font-family: "Roboto", serif;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: "PT Sans", sans-serif;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(50, 183, 104, 0.1);
}

.form-control.error {
    border-color: var(--warning-color);
}

.form-control.error:focus {
    border-color: var(--warning-color);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"].error {
    outline: 2px solid var(--warning-color);
}

.error-message {
    display: none;
    color: var(--warning-color);
    font-size: 13px;
    margin-top: 5px;
    font-family: "PT Sans", sans-serif;
}

.btn-submit {
    background: var(--secondary-color);
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Roboto", serif;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 183, 104, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-messages {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
}

.form-messages.success {
    background: var(--secondary-light);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.form-messages.error {
    background: var(--tertiary-light);
    color: var(--warning-color);
    border: 1px solid var(--warning-color);
}

.contact-info-section {
    background: var(--primary-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.contact-info-section h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: "Roboto", serif;
}

.contact-info-section p {
    font-size: 16px;
    color: var(--neutral-color);
    margin-bottom: 25px;
    font-family: "PT Sans", sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    font-size: 15px;
    color: var(--neutral-color);
    font-family: "PT Sans", sans-serif;
}

.contact-item strong {
    color: var(--primary-dark);
    font-weight: 600;
    margin-right: 8px;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .form-group.col-md-6 {
        flex: 0 0 100%;
        padding: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info-section {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 12px 20px;
    }
    
    .checkbox-group {
        align-items: flex-start;
    }
}

.contact-form-wrapper{
    padding:40px 0;background:#fff;
}

.form-group label{
    color:var(--primary-dark);font-family:"Roboto",serif;
}

.contact-item a{
    color:var(--secondary-color);text-decoration:none;
}