* {
    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.7;
  color: #333;
  background: #fff;
}  

img {
  max-width: 100%;
   height: auto;
    display:   block;
}

a {
   text-decoration:      none;
  color: inherit;
  transition: .3s ease;
}

h1,h2,h3,h4,h5,h6 {
   font-weight: 600;
               line-height: 1.3;
   margin-bottom :18px;
}  

.wlc_inner_stretch     {


   max-width: 1240px;
  margin: 0 auto;
  padding: 0 25px;

}

.wlc_topbar {
   background: #fff;
	 padding: 18px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
    position: sticky;
   top     :   0;
    z-index: 999;
}

.wlc_topbar .wlc_inner_stretch		{
    display: flex;
   justify-content: space-between;
    align-items: center;
}

.wlc_brand_zone img {

    height: 72px;
   width: auto;
	}

.wlc_nav_links


{

	   display: flex;
   gap: 38px;

}

.wlc_nav_links a {
   font-size: 16px;
   font-weight: 500;
   color: #2c3e50;
   position: relative;
}

.wlc_nav_links a:hover {
    color: #e67e22; 
	
}

.wlc_burger_trigger {


   display: none;
    flex-direction: column;
    gap: 6px;
    cursor     :      pointer;}

.wlc_burger_trigger span {
       width: 28px;
   height: 3px;
   background: #2c3e50;
   transition: .3s;
	}@media(max-width:768px){
  .wlc_nav_links{
    position:fixed;
    top:86px;
    right:-100%;
    background:#fff;
    flex-direction:column;
    padding:32px;
    box-shadow:-2px 4px 15px rgba(0,0,0,.15);
    transition:.4s;
    width: 260px
  }
  
  .wlc_nav_links.wlc_nav_active{
    right:0
  }
  
  .wlc_burger_trigger{
    display:flex
  }
  
  .wlc_burger_trigger.wlc_burger_active span:nth-child(1){
    transform:rotate(45deg) translate(8px,8px)
  }
  
  .wlc_burger_trigger.wlc_burger_active span:nth-child(2){
    opacity:0
  }
  
  .wlc_burger_trigger.wlc_burger_active span:nth-child(3){
    transform:rotate(-45deg) translate(8px,-8px)
  }
}.wlc_hero_stage {
  min-height: 620px;
    position: relative;
    align-items  :        center;
   background-position: center;
   display: flex;
	background-size: cover;
}

.wlc_hero_overlay	{
  position: absolute;
   top: 0;
	left    :0;
   right: 0;
   bottom: 0;
  background: rgba(0,0,0,.52);
    z-index:    1;
}

.wlc_hero_content_wrap {
    position: relative;
	 z-index: 2;
   padding: 85px 0;
}

.wlc_hero_text_zone {
   max-width: 720px;
   color: #fff;

}

.wlc_hero_pre_title {
  font-size: 15px;
    letter-spacing: 1.5px;
   text-transform     :     uppercase;
  margin-bottom: 15px;
   color: #f39c12;
}

.wlc_hero_main_title {
   font-size:52px;
   line-height: 1.25;
  margin-bottom  :24px;
    font-weight: 700;
}

.wlc_hero_description {
    font-size  :19px;
    line-height: 1.65;
   margin-bottom: 35px;
   opacity: .95;
}

.wlc_hero_action_btn {

	   -moz-border-radius: 32px;
       padding: 16px 42px;
      font-size: 17px;
       transition: .3s;
      display: inline-block;
     font-weight: 600;
       color: #fff;
   	 background: #e67e22;
     border-radius: 32px;

}

.wlc_hero_action_btn:hover {
   background: #d35400; 
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px rgba(230,126,34,.35);
}@media(max-width:768px){
  .wlc_hero_main_title{
    font-size:36px
  }
  
  .wlc_hero_description{
    font-size:16px
  }
}.wlc_intro_presentation {
    padding: 95px 0;
}

.wlc_dual_layout {
    display: flex;
   gap: 0;
    align-items: stretch;
}

.wlc_visual_column {
   flex: 1;
   background-size: cover;
        background-position: center;
    min-height: 580px;
}  

.wlc_content_column


{
    flex: 1.2;
	background: #f8f9fa;
    padding: 65px;
}

.wlc_section_header {
   font-size   :38px;
	color     :      #2c3e50;
  margin-bottom: 22px;
    font-weight  :  600;
}

.wlc_body_text


{
  font-size: 17px;
    line-height: 1.75;
  color: #555;
  margin-bottom: 18px;
}

.wlc_features_grid {
    display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
    margin-top: 45px;
}

.wlc_feature_card {
   text-align :        center;
}

.wlc_feature_icon_wrap {
   width    :   72px;
  height: 72px;
    margin: 0 auto 18px;
  background: #e67e22;
    border-radius: 50%;
  display: flex;
       align-items: center;
    justify-content: center;
}

.wlc_feature_icon {
         width: 38px;
       height:  38px;
        stroke:       #fff;
	fill: none;
  stroke-width:        1.5;
}

.wlc_feature_title {
	font-size: 17px;
   color: #2c3e50;
    font-weight: 600;
}@media(max-width:992px){
  .wlc_dual_layout{
    flex-direction:column
  }
  
  .wlc_visual_column{
    min-height:380px
  }
  
  .wlc_content_column{
    padding:42px 28px
  }
  
  .wlc_features_grid{
    grid-template-columns:1fr
  }
}.wlc_services_showcase {
    padding: 95px 0;
   background: #fff;
}

.wlc_showcase_header {
       text-align: center;
    margin: 0 auto 65px;
    max-width: 680px;


}

.wlc_section_subtext {
    font-size: 18px;
   color: #666;
   line-height: 1.7;
} 

.wlc_services_row {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 32px;
}

.wlc_service_item {
    background: #f8f9fa;
               border-radius : 8px;
  overflow: hidden;
    transition: .35s;
}

.wlc_service_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.wlc_service_visual {
 height: 220px;
       overflow: hidden;}

.wlc_service_img {
    width: 100%;
   height  :       100%;
  object-fit: cover;
  transition: .4s;
}

.wlc_service_item:hover .wlc_service_img	{
  transform: scale(1.08);
}

.wlc_service_details {
   padding: 28px;
}

.wlc_service_name {
    font-size: 21px;
   color: #2c3e50;
   margin-bottom: 12px;
   font-weight: 600;
}

.wlc_service_info {
    font-size: 15px;
  color: #666;
   line-height: 1.65;
}

.wlc_cta_segment {
  background: linear-gradient(135deg,#e67e22 0%,#d35400 100%);
  padding: 85px 0;
  text-align: center;
}

.wlc_cta_content_box {
  max-width: 780px;
	margin: 0 auto;
}

.wlc_cta_headline {
   font-size: 42px;
    color: #fff;
    margin-bottom: 22px;
    font-weight: 700;
}

.wlc_cta_message {
   font-size: 19px;
  color: #fff;
    line-height: 1.7;
  margin-bottom: 38px;
  opacity: .95;
}

.wlc_cta_button     {
    display: inline-block;
    background: #fff;
   color: #e67e22;
  padding: 18px 48px;
   border-radius: 32px;
  font-size: 17px;
   font-weight: 700;
  transition: .3s;
}

.wlc_cta_button:hover {
  background: #f8f9fa;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,255,255,.3);
}@media(max-width:768px){
  .wlc_cta_headline{
    font-size:32px
  }
}.wlc_approach_details {
  padding: 95px 0;
    background: #f8f9fa;
}

.wlc_approach_intro {
   text-align: center;
    max-width: 680px;
   margin     :      0 auto 65px;
}

.wlc_approach_grid {
   display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
	gap: 38px;
}

.wlc_approach_step {
  background: #fff;
    padding: 38px;
    border-radius: 8px;
    text-align: center;
   transition: .3s;}

.wlc_approach_step:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.wlc_step_icon_container {
         width: 82px;
    height: 82px;
    margin:     0 auto 24px;
  background: #e67e22;
  border-radius :   50%;
  display  :  flex;
       align-items: center;
   justify-content: center;
}

.wlc_step_icon {

  width: 42px;
  height: 42px;
    stroke: #fff;
   fill: none;
   stroke-width  :     1.5;
	}

.wlc_step_title {
    font-size: 20px;
   color: #2c3e50;
        margin-bottom: 14px;
    font-weight: 600;
}

.wlc_step_description

{
   color: #666;
    line-height: 1.65;
   font-size: 15px;
}

.wlc_contact_zone	{
  padding: 95px 0;
  background: #fff;
}

.wlc_contact_layout	{

	   display: grid;
	 grid-template-columns: 1fr 1.5fr;
   gap :    55px;
  align-items: start;
}

.wlc_contact_heading {
   font-size: 36px;
   color: #2c3e50;
     margin-bottom: 18px;
   font-weight: 600;
}

.wlc_contact_intro {
 font-size   :      17px;
   color: #666;
    line-height: 1.7;
   margin-bottom: 35px;
}

.wlc_contact_details_block {
   display: flex;

  flex-direction: column;

    gap   :     22px; 

}

.wlc_contact_detail_item {
   display: flex;
    align-items: center;
    gap: 15px;
} 

.wlc_contact_icon {
	width: 32px;
   height     :   32px;
   stroke: #e67e22;
    fill :  none;
    stroke-width: 1.5;
}

.wlc_contact_detail_item p {
  font-size: 16px;
  color: #555;
    margin: 0;
}

.wlc_contact_form {
   background: #f8f9fa;
   padding: 42px;
   border-radius: 8px;
}

.wlc_form_group {
	               margin-bottom: 24px;
     }

.wlc_form_group label {
    display: block;
	font-size: 15px;
  font-weight: 600;
               color: #2c3e50;
       margin-bottom: 8px;
}

.wlc_form_group input,
.wlc_form_group select,
.wlc_form_group textarea {
  width: 100%;
  padding  :    14px 18px;
  border: 1px solid #ddd;
    border-radius  :   6px;
   font-size: 15px;
  font-family: inherit;
   transition: .3s;
}

.wlc_form_group input:focus,
.wlc_form_group select:focus,
.wlc_form_group textarea:focus {
		outline: none;
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230,126,34,.15);

}

.wlc_form_submit_btn {
  width: 100%;
  background: #e67e22;
   color: #fff;
   padding: 16px;
	 border: none;
   border-radius :        6px;
    font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.wlc_form_submit_btn:hover {
       background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230,126,34,.3);
     } @media(max-width:992px){
  .wlc_contact_layout{
    grid-template-columns:1fr;
    gap:42px
  }
  
  .wlc_contact_form{
    padding:32px 24px
  }
}.wlc_footer_zone
{
    background     :    #2c3e50;
                    color: #ecf0f1;
  padding: 65px 0 32px;
}

.wlc_footer_main {
   display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 42px;
     margin-bottom: 48px;
}

.wlc_footer_logo {
  width: 180px;
   margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.wlc_footer_title {
   font-size: 19px;
    color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
}

.wlc_footer_text {
  font-size:15px;
    line-height: 1.7;
    color: #bdc3c7;
   margin-bottom    :    12px; 
	
} 

.wlc_footer_links {

	    list-style: none;


}

.wlc_footer_links li {
    margin-bottom: 10px;
}



.wlc_footer_links a {
    color: #bdc3c7;
         font-size: 15px;
  transition: .3s;
}

.wlc_footer_links a:hover {
  color: #e67e22;
    padding-left     :     5px;
}


.wlc_footer_disclaimer		{
    font-size: 13px;
   line-height: 1.65;
  color: #95a5a6;
  padding: 18px;
  background: rgba(0,0,0,.2);
   border-radius: 6px;
  border-left: 3px solid #e67e22;
}

.wlc_footer_bottom {
  border-top: 1px solid rgba(255,255,255,.1);
   padding-top: 28px;
    text-align: center;
} 

.wlc_copyright {
   font-size: 14px;
    color: #95a5a6;
  margin     : 0;
} 

.wlc_cookie_notice {
    position: fixed;
  bottom:   0;
    left: 0;
   right: 0;
               background: #2c3e50;
    color: #fff;
   padding: 22px;
  box-shadow: 0 -4px 15px rgba(0,0,0,.2);
   z-index: 1000;
   display: flex;
	 align-items: center;
  justify-content: center;

}

.wlc_cookie_content {

	  max-width: 1240px;
   width: 100%;
                    display: flex;
  align-items: center;
    justify-content: space-between;
     gap: 28px;}

.wlc_cookie_content p {

	      font-size: 15px;
   line-height: 1.6;
  margin: 0;
  flex: 1;


}

.wlc_cookie_actions {
    display: flex;
   gap   : 12px;
}

.wlc_cookie_btn {
	 padding: 10px 24px;
    border: none;
  border-radius: 6px;
  font-size     :        14px;
  font-weight: 600;
  cursor: pointer;
    transition: .3s;
}

.wlc_cookie_accept {
   background: #e67e22;
	color: #fff;
}

.wlc_cookie_accept:hover {
	background: #d35400; 

}

.wlc_cookie_decline {

	   background: transparent;
    color: #ecf0f1;
   border: 1px solid #ecf0f1;}

.wlc_cookie_decline:hover {
  background: rgba(255,255,255,.1);
}@media(max-width:768px){
  .wlc_cookie_content{
    flex-direction:column;
    text-align:center
  }
  
  .wlc_cookie_actions{
    width:100%
  }
  
  .wlc_cookie_btn{
    flex:1
  }
}.wlc_services_hero {
  background: linear-gradient(135deg,#2c3e50 0%,#34495e 100%);
    padding: 125px 0 85px;
   text-align: center;
}

.wlc_services_hero_content {
    max-width: 820px;
  margin: 0 auto;
}

.wlc_services_hero_title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 22px;
  font-weight   :  700;
}

.wlc_services_hero_desc {
   font-size: 20px;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
}@media(max-width:768px){
  .wlc_services_hero{
    padding:85px 0 55px
  }
  
  .wlc_services_hero_title{
    font-size:34px
  }
  
  .wlc_services_hero_desc{
    font-size:17px
  }
}.wlc_detailed_services 
 {
    padding: 95px 0;
}


.wlc_service_detail_block	{
    grid-template-columns: 1fr 1.3fr;
  gap: 55px;
   margin-bottom: 85px;
    display: grid;
    align-items: center;
}

.wlc_service_detail_block:last-child {
   margin-bottom: 0;
}

.wlc_service_reverse     {
    grid-template-columns: 1.3fr 1fr; 
	
}

.wlc_service_reverse .wlc_service_detail_image     {
       order: 2;
}

.wlc_service_reverse .wlc_service_detail_content {
   order: 1;


}

.wlc_service_detail_image {
    border-radius: 12px;
    overflow    :        hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.wlc_service_detail_image img {
   width: 100%;
   height: auto;
  display: block;
  transition    :       .4s;
}

.wlc_service_detail_image:hover img {
  transform: scale(1.05);
}

.wlc_service_detail_title {
   font-size: 34px;
     color: #2c3e50;
	margin-bottom: 24px;
   font-weight: 600;

}

.wlc_service_detail_text {

	font-size: 16px;
    line-height: 1.75;
   color: #555;
   margin-bottom    :   18px;}

.wlc_service_highlights {
    flex-wrap     :wrap;
   gap     :    28px;
  display: flex;
    margin-top :   32px;
}

.wlc_highlight_item {
   display: flex;
    align-items: center;
   background: #f8f9fa;
  transition: .3s;
	border-radius: 8px;
	padding: 14px 22px;
    gap: 12px;
}

.wlc_highlight_item:hover {
    background: #e67e22;
    color: #fff;
  transform: translateY(-3px);
}

.wlc_highlight_icon {
     width: 28px; 
  height: 28px; 
    stroke: #e67e22; 
 fill: none; 
  stroke-width: 1.5; 
    transition: .3s;
     }

.wlc_highlight_item:hover .wlc_highlight_icon {
     stroke: #fff;

}

.wlc_highlight_item span {

  font-size: 15px;
  font-weight: 600;
     }@media(max-width:992px){
  .wlc_service_detail_block,
  .wlc_service_reverse{
    grid-template-columns:1fr;
    gap:35px
  }
  
  .wlc_service_reverse .wlc_service_detail_image,
  .wlc_service_reverse .wlc_service_detail_content{
    order:unset
  }
  
  .wlc_service_detail_title{
    font-size:28px
  }
}.wlc_why_choose {
   padding: 95px 0;
   background: #f8f9fa;
}

.wlc_why_header {
   text-align: center;
   max-width: 720px;
  margin: 0 auto 65px;
}

.wlc_why_grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
   gap: 35px;
}

.wlc_why_card {
  -webkit-border-radius: 8px;
	 background: #fff;
  -moz-border-radius: 8px;
          padding: 42px 32px;
   border-radius: 8px;
  text-align: center;
  transition: .35s;
   border: 2px solid transparent;
}

.wlc_why_card:hover {
   border-color: #e67e22;
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
}

.wlc_why_icon_box {
  width: 85px;
  height: 85px;
      margin: 0 auto 24px;
   background: #f8f9fa;
    border-radius: 50%;
  display: flex;
  align-items: center;
	justify-content: center;
  transition: .3s;
}

.wlc_why_card:hover .wlc_why_icon_box {
      background: #e67e22;
}

.wlc_why_icon {
  width: 42px;
   height: 42px;
    stroke    :       #2c3e50;
   fill: none;
    stroke-width: 1.5;
	transition: .3s;
}

.wlc_why_card:hover .wlc_why_icon {
	  stroke :#fff;


}

.wlc_why_title {
   font-size: 21px;

	   color: #2c3e50;

	    margin-bottom: 15px;

	  font-weight: 600;
}

.wlc_why_text {
   font-size: 15px;
               color:#666;
   line-height: 1.7;
}

.wlc_services_cta {
  padding: 95px 0;
  background: linear-gradient(135deg,#e67e22 0%,#d35400 100%);
}


.wlc_services_cta_box {
    text-align: center;
   max-width: 720px;
  margin: 0 auto;
}

.wlc_services_cta_title {
   font-size: 42px;
    color: #fff;
    margin-bottom    :      18px;
    font-weight: 700;
}

.wlc_services_cta_desc {
         font-size: 19px;
  color: #fff;
    line-height: 1.7;
   margin-bottom: 35px;
    opacity: .95;
	
}

.wlc_services_cta_btn
{
    display: inline-block;
	    background: #fff;
	   color: #e67e22;
	   padding: 18px 52px;
	    border-radius: 32px;
	 font-size: 17px;
		 font-weight: 700;
	    transition: .3s;
}

.wlc_services_cta_btn:hover {
   background: #f8f9fa;

  transform: scale(1.05);

  box-shadow: 0 8px 28px rgba(255,255,255,.3);
}@media(max-width:768px){
  .wlc_services_cta_title{
    font-size:32px
  }
}.wlc_thankyou_stage {
  min-height: calc(100vh - 180px);
    display :      flex;
  align-items: center;
    padding: 95px 0;
  background: linear-gradient(135deg,#f8f9fa 0%,#e8eef3 100%);
}

.wlc_thankyou_box {
  max-width: 680px;
    margin: 0 auto;
    text-align   :       center;
    background   :       #fff;
    padding: 65px 45px;
  border-radius   : 12px;
  box-shadow: 0 12px 42px rgba(0,0,0,.08);
}

.wlc_thankyou_icon_circle{
  width: 95px;
    height: 95px;
  background    :       #27ae60;
    border-radius: 50%;
   display: flex;
		align-items: center;
   justify-content: center;
   margin: 0 auto 32px;
    animation: wlc_pulse 2s infinite;
}@keyframes wlc_pulse{
  0%,100%{
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(39,174,96,.4)
  }
  50%{
    transform:scale(1.05);
    box-shadow:0 0 0 15px rgba(39,174,96,0)
  }
}.wlc_thankyou_check {
   width: 52px;

 height: 52px;

   stroke: #fff;

  fill: none;

  stroke-width: 2.5;
}

.wlc_thankyou_heading {
	font-size    :      38px;
   color: #2c3e50;
   margin-bottom: 22px;
  font-weight: 700;
}

.wlc_thankyou_message {
  font-size: 18px;
	   line-height: 1.75;
	    color: #555;
	   margin-bottom: 16px;
}

.wlc_thankyou_submessage {
  font-size: 16px;
  line-height: 1.7;
    color: #777;
    margin-bottom: 38px;
}

.wlc_thankyou_actions  
  {
    display: flex;
  gap: 18px;
  justify-content: center;
    flex-wrap: wrap;
}

.wlc_thankyou_btn_primary {
    display: inline-block;
	 -webkit-border-radius: 32px;
  background: #e67e22;
    color: #fff;
  padding    :   16px 42px;
  border-radius: 32px;
   font-size: 17px;
    font-weight: 600;
  transition: .3s;
}

.wlc_thankyou_btn_primary:hover		{
   background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(230,126,34,.35);
}

.wlc_thankyou_btn_secondary {
    display: inline-block;
   background: transparent;
   color: #2c3e50;
   padding: 16px 42px;
          border-radius: 32px;
  font-size: 17px;
    font-weight: 600;
  border: 2px solid #2c3e50;
  transition: .3s;
}

.wlc_thankyou_btn_secondary:hover {
   background: #2c3e50;
   color: #fff;
  transform: translateY(-2px);
}@media(max-width:768px){
  .wlc_thankyou_box{
    padding:45px 28px
  }
  
  .wlc_thankyou_heading{
    font-size:28px
  }
  
  .wlc_thankyou_actions{
    flex-direction:column
  }
  
  .wlc_thankyou_btn_primary,
  .wlc_thankyou_btn_secondary{
    width:100%
  }
}.wlc_next_steps {
    padding: 95px 0;
   background: #fff;
}

.wlc_next_steps_title {
       font-size: 38px;
   color: #2c3e50;
    text-align: center;
  margin-bottom: 65px;
    font-weight: 600;

}

.wlc_steps_timeline {
   max-width: 850px;
   margin: 0 auto;
   display: flex;
	flex-direction: column;
  gap: 42px;
}

.wlc_timeline_item {
    display: flex;

	  gap: 28px;

	   align-items: flex-start;
}

.wlc_timeline_number {
    width: 65px;
  height   : 65px;
    background: #e67e22;
    color : #fff;
    border-radius: 50%;
  display: flex;
      align-items: center;
   justify-content: center;
    font-size: 28px;
    font-weight: 700;
  flex-shrink: 0;
}

.wlc_timeline_content {
   flex: 1;
  padding-top: 8px;
}

.wlc_timeline_heading  
  {
  font-size: 22px;
	  color: #2c3e50;
	   margin-bottom: 12px;
	  font-weight: 600;

}

.wlc_timeline_text {
    font-size:     16px;
  line-height: 1.7;
    color: #666;


} @media(max-width:768px){
  .wlc_next_steps_title{
    font-size:28px;
    margin-bottom:45px
  }
  
  .wlc_timeline_number{
    width:52px;
    height:52px;
    font-size:22px
  }
  
  .wlc_timeline_heading{
    font-size:19px
  }
}.wlc_thankyou_info {
       padding: 95px 0;
      background:   #f8f9fa;
}

.wlc_info_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
	gap: 35px;
}

.wlc_info_card {
    background: #fff;
     padding: 42px 32px;
  border-radius: 8px;
   text-align: center;
	transition: .3s;
}

.wlc_info_card:hover {
     transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
	}

.wlc_info_icon_wrap    {

	   width: 75px;
  height: 75px;
   background: #e67e22;
  border-radius: 50%;
  display: flex;
         align-items: center;
   justify-content: center;
   margin: 0 auto 22px;
}

.wlc_info_icon {
  width: 38px;
   height: 38px;
  stroke: #fff;
	fill: none;
    stroke-width: 1.5;
}

.wlc_info_card_title {
   font-size: 21px;
  color: #2c3e50;
  margin-bottom: 14px;
   font-weight: 600;
}

.wlc_info_card_text {
	 font-size: 15px;
   line-height     : 1.7;
  color    : #666;
	margin-bottom: 12px;
}

.wlc_info_card_detail {
    font-size: 17px;
       color: #e67e22;
    font-weight: 600;
    margin: 0;
}

.policySection {
       padding: 80px 2rem;
                    background: #f8f9fa; 



}

.policyContainer {
   max-width: 800px;
   margin   :      0 auto;
        text-align     :       left;
}

.policyContainer h2 {
	 font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.policyContainer p {
                    color: #7f8c8d;
   margin-bottom: 1.5rem;
  line-height: 1.7;
    font-size: 1.1rem;
}@media (max-width: 768px) {
  .policyContainer h2 {
    font-size: 2rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}