* {
    margin: 0;
        padding: 0;
  box-sizing  : border-box;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
   color     : #2c3e50;
    background: #fafafa; 

}

.navbar_primary {
    background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
  z-index: 1000;
}


.nav_wrapper {
    max-width: 1200px;
    margin: 0 auto;
  padding: 1rem 2rem;
	display: flex;
   justify-content: space-between;
    align-items: center;
}

.nav_brand {

         flex-shrink: 0;
}

.brand_logo {
   height: 45px;

   width: auto;

  filter: brightness(0) invert(1);
}

.nav_links {
   display: flex;
  list-style : none;
   gap: 2.5rem;
    align-items: center;
}

.nav_links a {
	    transition: color 0.3s ease;
    color: #2c3e50;
	text-decoration:none;
	font-size:      0.95rem;
    font-weight: 500;


}

.nav_links a:hover {
   color: #3498db;
}

.nav_cta {
    -webkit-border-radius     :       6px;
  background: #3498db;
    color: #fff !important;
    -moz-border-radius: 6px;
    padding: 0.6rem 1.5rem;
  border-radius: 6px;
    transition: all 0.3s ease;

}

.nav_cta:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.burger_menu {


  display: none;
   flex-direction     :   column;
	background    :        none;
    border: none;
   cursor: pointer;
	 padding: 0.5rem;
    gap: 6px;
}

.burger_line    {
	width: 24px;
  height: 2.5px;
    background: #2c3e50;
   border-radius: 2px;
  transition:       all 0.3s ease;
}

.hero_section {
    max-width: 1200px;
  margin: 0 auto;
    padding: 5rem 2rem;
   display: grid;
 grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
}

.hero_content h1 {

	    font-size: 2.8rem;
   line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
   font-weight   : 700;

}

.hero_subtitle {
	    font-size: 1.15rem;
    color   :  #555;
    margin-bottom: 2rem;
  line-height: 1.7;

}

.hero_buttons {
	display: flex;
          gap: 1.5rem;
  flex-wrap: wrap;
}

.btn_primary,
.btn_secondary,
.btn_cta_large {
	  padding   : 0.9rem 2.2rem;
   	 border-radius: 8px;
     font-size: 1rem;
   	font-weight: 600;
      text-decoration:   none;
       transition: all 0.3s ease;
      border  :   none;
     cursor: pointer;
       display: inline-block;}

.btn_primary {
       background: #3498db;
   color: #fff;

}

.btn_primary:hover {
   background: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
}

.btn_secondary {
   background: transparent;
   color: #3498db;
   border: 2px solid #3498db;
}

.btn_secondary:hover {
    background: #ecf0f1;
  transform: translateY(-3px);
}

.hero_image {
    text-align: center;
}



.hero_img {
     max-width:     100%;
	 height:   auto;
   border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
     }

.problem_section{
         background: #ecf0f1;
   padding: 4rem 2rem;
    margin: 2rem 0;
}

.problem_wrapper {
   max-width: 1200px;
  margin: 0 auto;
}

.problem_wrapper h2,
.solution_section h2,
.offerings_section h2,
.testimonials_section h2,
.benefits_section h2,
.cta_section h2,
.contact_section h2


{
       font-size: 2.2rem;
                    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
    font-weight  :    700;
}

.problem_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem_card   {
      background    :  #fff;
  padding: 2.5rem;
    border-radius   :      10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
		 transition: all 0.3s ease;
}

.problem_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.card_icon {


   width: 60px;
  height: 60px;
	 background: #e3f2fd;
	border-radius :   50%;
  display: flex;
   align-items: center;
               justify-content: center;
          margin-bottom: 1.5rem;}

.svg_icon {
	stroke-width: 1.5;
	 fill: none;
	 width   :       32px;
  stroke: #3498db;
  height: 32px;
}

.problem_card h3 {
	font-size: 1.3rem;
    margin-bottom: 1rem;
    color :        #2c3e50;
}

.problem_card p {
    color: #666;
  line-height :   1.8;
}

.solution_section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem; 
	
}

.solution_container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
   margin-top: 3rem;
}

.solution_item {
    background: #fff;
  padding: 2rem;
          border-radius: 10px;
  border-left: 5px solid #3498db;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.solution_number {
    display: inline-block; 
	                    width: 45px; 
	   height  :   45px; 
	   background  :#3498db; 
	  color: #fff; 
	    border-radius: 50%; 
		 text-align   :   center; 
	 line-height     :   45px; 
	   font-weight: 700; 
	    font-size: 1.3rem; 
		 margin-bottom: 1rem;
}

.solution_item h3 {


    font-size     :  1.2rem;
    margin-bottom     :    1rem;
    color: #2c3e50;
}

.solution_item p {
    color: #666;
	line-height: 1.8;
}

.offerings_section     {
   background: #f8f9fa;
  padding :      4rem 2rem;
  margin-top: 3rem;
}

.offerings_section {

	  max-width: 1200px;
   margin: 3rem auto;
  padding: 4rem 2rem;
     }

.offerings_grid {
    display  :    grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap   :     2rem;
   margin-top: 3rem;
}



.offering_card		{
  background: #fff;
   padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.offering_card:hover
	{

	  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.offering_icon {
  width: 70px;
   height: 70px;
	background: #e3f2fd;
    border-radius: 50%;
  margin: 0 auto 1.5rem;
          display: flex;
		 align-items: center;
    justify-content: center;
}

.offering_card h3 {
  font-size: 1.25rem;
   margin-bottom: 1rem;
    color: #2c3e50;
}



.offering_card p {
	color   :   #666;
	margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.offering_price {
    font-weight: 700;
  color    :     #3498db;
  font-size: 1.1rem;
}

.testimonials_section	{
    max-width: 1200px;
    margin: 4rem auto;
  padding: 0 2rem;


}

.testimonials_container {


  display : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  margin-top: 2.5rem;
     }

.testimonial_card {
    background: #fff;
	padding     :       2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #3498db;
}

.testimonial_text
	{
     color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
		 font-style  : italic;
}

.testimonial_author {

  color: #3498db;
	font-weight: 600;
   font-size: 0.95rem;}

.benefits_section	{
	background: #fff;
   max-width: 1200px;
  margin: 4rem auto;
    padding     :    4rem 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.benefits_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
	margin-top: 2.5rem;
}

.benefit_item {
   display :       flex;
  gap:  1.2rem;
  align-items :    flex-start;
}

.svg_icon_small {
  width: 24px;
    height: 24px;
  stroke: #2ecc71;
	 fill   : none;
    stroke-width: 2;
	 flex-shrink: 0;
    margin-top  :    0.3rem;
}

.benefit_item span {
       color: #2c3e50;
    line-height: 1.6;
 font-size: 1rem;
}

.coaching_images {
		 max-width: 1200px;
  margin: 4rem auto;
	padding: 0 2rem;

	}

.image_gallery {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery_img {

	                    width: 100%; 
   height  : 280px; 
   object-fit: cover; 
	border-radius: 10px; 
  box-shadow: 0 6px 16px rgba(0,0,0,0.12); 
    transition: all 0.3s ease;
}

.gallery_img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.cta_section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #fff;
    padding: 4rem 2rem;
  text-align: center;
 margin:     3rem 0;
     }

.cta_content {
    max-width: 700px;
      margin: 0 auto;
}

.cta_section h2 {
    color   :    #fff;
   margin-bottom: 1rem;
}

.cta_section p	{
    font-size: 1.1rem;
  margin-bottom: 2.5rem;
   line-height: 1.7;
}

.btn_cta_large {
    background: #fff;
    color: #3498db;
   font-weight: 700;
    padding: 1.1rem 2.8rem;
}

.btn_cta_large:hover {
  background: #ecf0f1;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact_section {
   background: #f8f9fa;
  padding: 4rem 2rem;
   margin: 3rem 0;
}

.contact_wrapper 
 {
   max-width: 900px;
   margin: 0 auto;
}

.contact_intro {
	    text-align: center;
   color: #666;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
} 

.contact_form {
   background: #fff;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
}

.form_group{
  margin-bottom: 2rem;
    display:       flex;
          flex-direction: column;

}

.contact_form label {
       font-weight: 600;
    color: #2c3e50;
   margin-bottom  :       0.7rem;
    font-size: 0.95rem;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
	 transition: border-color 0.3s ease;
	border-radius: 6px;
  border: 1.5px solid #ddd;
   font-family: inherit;
  padding: 0.9rem;
   font-size: 1rem;
}

.contact_form input:focus,
.contact_form select:focus,
.contact_form textarea:focus {

	    outline: none;
   border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
	
	}

.btn_submit{
   background: #3498db;
	 color: #fff;
   padding: 0.95rem 2.5rem;
   border: none;
  border-radius: 6px;
    font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition  :        all 0.3s ease;
         align-self: flex-start;
}

.btn_submit:hover {
   background:     #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}


.contact_info {
   background :  #fff;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact_info h3 {
    font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.info_block {
  margin-bottom: 1.5rem;
}

.info_block p {
  line-height: 1.8;
    color: #555;
}

.info_block strong {
    color: #2c3e50;
} 

.footer_main {

	   background   : #1a252f;
                    color   :        #ecf0f1;
    padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
     }

.footer_container {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  margin-bottom: 2rem;
}

.footer_section h4		{
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #3498db;
}

.footer_logo	{
    height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer_links    {
   list-style: none;
}

.footer_links li {
    margin-bottom: 0.8rem;
} 

.footer_links a {
   color     :     #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_links a:hover {
   color: #3498db;
}

.footer_section p {
     color: #bdc3c7;
   line-height: 1.8;
	 font-size: 0.95rem;}

.footer_bottom {
    color    :   #7f8c8d;
   padding-top:     1.5rem;
   font-size: 0.9rem;
  border-top: 1px solid #34495e;
  text-align: center; 

}@media (max-width: 768px) {
  .hero_section {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .hero_content h1 {
    font-size: 2rem;
  }

  .nav_links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav_links.active {
    display: flex;
  }

  .burger_menu {
    display: flex;
  }

  .burger_menu.active .burger_line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .burger_menu.active .burger_line:nth-child(2) {
    opacity: 0;
  }

  .burger_menu.active .burger_line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .problem_grid,
  .offerings_grid,
  .testimonials_container,
  .benefits_list {
    grid-template-columns: 1fr;
  }

  .solution_container {
    grid-template-columns: 1fr;
  }

  .hero_buttons {
    flex-direction: column;
  }

  .btn_primary,
  .btn_secondary,
  .btn_submit {
    width: 100%;
    text-align: center;
  }

  .image_gallery {
    grid-template-columns: 1fr;
  }

  .gallery_img {
    height: 220px;
  }

  .contact_form {
    padding: 1.5rem;
  }

  .problem_wrapper h2,
  .solution_section h2,
  .offerings_section h2,
  .testimonials_section h2,
  .benefits_section h2,
  .cta_section h2,
  .contact_section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero_content h1 {
    font-size: 1.6rem;
  }

  .hero_subtitle {
    font-size: 1rem;
  }

  .nav_wrapper {
    padding: 1rem;
  }

  .brand_logo {
    height: 40px;
  }

  .cta_section {
    padding: 2.5rem 1.5rem;
  }

  .contact_form {
    padding: 1rem;
  }

  .footer_container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer_section p {
    font-size: 0.9rem;
  }
}.policySection	{
   padding: 80px 2rem;
          background: #f8f9fa; 
	
}

.policyContainer {

   margin: 0 auto;
   text-align: left;
  max-width: 800px;

}

.policyContainer h1 {
   font-size     : 2.8rem;
  color: #1a252f;
   margin-bottom: 1rem;
   font-weight: 700;
  text-align: center;
}

.policyContainer h2 {


   font-size: 2rem;
    color: #2c3e50;
    margin  :        2.5rem 0 1.5rem 0;
    font-weight: 700;
	}

.policyContainer p {
  line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size :     1.1rem;
    color: #7f8c8d;
}

.policyContainer ul,
.policyContainer ol     {
  margin: 1.5rem 0;
	  padding-left: 2rem;
}

.policyContainer ul li,
.policyContainer ol li {
    color     :    #555;
  margin-bottom  :        0.8rem;
  font-size: 1.1rem;
}

.policyContainer strong {
  color: #2c3e50;


}

.policyContainer em {
  color: #3498db;
    font-style: italic;
}@media (max-width: 768px) {
  .policyContainer h1 {
    font-size: 2.2rem;
  }

  .policyContainer h2 {
    font-size: 1.6rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }

  .policyContainer ul li,
  .policyContainer ol li {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}

@media (max-width: 480px) {
  .policyContainer h1 {
    font-size: 1.8rem;
  }

  .policyContainer {
    padding: 0 0.5rem;
  }
}.services_hero {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #fff;
  padding: 5rem 2rem;
   text-align: center;
}

.services_hero_content h1 {
  font-size: 2.8rem;
    line-height: 1.2;
  margin-bottom: 1rem;
     font-weight: 700;
}

.services_hero_content p {
   font-size   :     1.2rem;
   max-width: 700px;
   margin: 0 auto;
    line-height: 1.6;
}

.services_overview {
   background: #fff;
  padding: 4rem 2rem;
}

.services_overview_wrapper {
   max-width: 1200px;
    margin  :       0 auto;
}

.services_overview_wrapper h2 {
    font-size     :       2.2rem;
  text-align:center;
  margin-bottom     :3rem;
    color: #1a252f;
    font-weight: 700; 
	
}

.overview_grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 2rem;
}

.overview_card
{
   background: #f8f9fa;
  padding: 2.5rem;
   border-radius: 12px;
    border-left: 5px solid #3498db;
    text-align: center;
  transition: all 0.3s ease;
}

.overview_card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.overview_number {
   display: inline-block;
	 width  :       50px;
  height: 50px;
  background: #3498db;
    color: #fff;
    border-radius:  50%;
  text-align :  center;
   line-height: 50px;
          font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.overview_card h3 {
     font-size: 1.25rem; 
	   margin-bottom   : 1rem; 
	   color: #2c3e50;

}

.overview_card p {
   color:#666;
    line-height: 1.7;
}

.consultation_service,
.webinar_service,
.conference_service,
.team_training_service {
               padding: 4rem 2rem;
	 background  :    #fff;
  border-bottom:        1px solid #ecf0f1;
} 

.service_detail_wrapper {
   max-width: 1200px;
      margin: 0 auto;
      display: grid;
            grid-template-columns :  1fr 1fr;
       gap: 3rem;
      align-items: start; 

}

.service_detail_wrapper_reverse {
  grid-template-columns: 1fr 1fr;
}

.service_detail_wrapper_reverse .service_detail_image {
               order: -1;
}

.service_detail_content h2 {
  font-size  :2.2rem;
  margin-bottom: 1.5rem;
   color: #1a252f;
    font-weight: 700; 

}

.service_intro {
   font-size: 1.1rem;
	color: #555;
    margin-bottom :   2rem;
    line-height: 1.8;
}

.service_features {
	margin-bottom: 2rem;
}

.service_features h3 {
    font-size: 1.15rem;
   margin-bottom: 1.2rem;
  color: #2c3e50;
   font-weight: 600;
}

.features_list {
    list-style: none;
}


.features_list li  
  {
    padding: 0.6rem 0 0.6rem 2rem;
   color: #555;
   position: relative;
  line-height: 1.6;
}

.features_list li:before

{
  content: "✓";
   position: absolute;
      left: 0;
    color: #2ecc71;
    font-weight    :    700;
    font-size   :  1.2rem;
}

.service_details_box {
	background: #f8f9fa;
	 padding: 2rem;
    border-radius     :   10px;
  margin-bottom: 2rem;
}

.service_details_box h3 {
   font-size: 1.15rem;
   margin-bottom: 1.5rem;
    color: #2c3e50;
	
}

.details_grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;
}

.detail_item
{
  display    :  flex;
   flex-direction: column;
}

.detail_label {
       font-weight: 600; 
	  color: #2c3e50; 
	  font-size     :  0.9rem; 
	   margin-bottom: 0.4rem;
}


.detail_value {
  color: #3498db;
	font-size: 0.95rem;
  line-height   :  1.5;
}

.btn_service_cta {
    font-weight: 600;
  color: #fff;
   display :      inline-block;
  transition: all 0.3s ease;
  border-radius: 8px;
    padding: 0.9rem 2.2rem;
    cursor  :       pointer;
  text-decoration: none;
   background: #3498db;
    border: none;


}

.btn_service_cta:hover {


  background  :       #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);

}



.service_detail_image {


   text-align    :    center;}

.service_img {
    max-width  :     100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}



.pricing_section  
  {
       background: #f8f9fa;
   padding    :     4rem 2rem;
     }

.pricing_wrapper {

  max-width: 1200px;
   margin: 0 auto;
     }

.pricing_wrapper h2 {
	font-size: 2.2rem;
    text-align :      center;
				 margin-bottom:    1rem;
  color:        #1a252f;
  font-weight: 700;
}

.pricing_intro {
  margin-bottom: 3rem;
		 color: #666;
  font-size     :       1.05rem;
  text-align: center;
	
}

.pricing_grid {
  display:     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing_card {


       background: #fff;
  padding   : 2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
   position:       relative;}

.pricing_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.pricing_card_featured {

	  border: 2px solid #3498db;
  transform: scale(1.05);}

.pricing_card_featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.featured_badge {
    position: absolute;
   color: #fff;
    right     :  20px;
    padding: 0.5rem 1.2rem;
   border-radius: 20px;
    top: -12px;
  font-weight: 600;
  font-size    :    0.85rem;
    background: #3498db;
}

.pricing_card h3 {
   font-size: 1.3rem;
   margin-bottom: 1.5rem;
    color: #2c3e50;
}

.pricing_value {
   margin-bottom: 2rem;
  align-items  :     baseline;
   gap: 0.5rem;
  display: flex;
	justify-content: center;
}

.price_num {
   font-size: 2.5rem;
    font-weight: 700;
   color: #3498db;
}

.price_curr {
    font-size     :      0.9rem;
  color: #666;
    font-weight: 600;
}

.price_unit {

  font-size: 0.9rem;
                    color: #999;


}

.pricing_features {
   list-style: none;
	text-align: left;
    margin-bottom: 1.5rem; 

}

.pricing_features li     {
   padding: 0.6rem 0;
   color: #555;
   border-bottom: 1px solid #ecf0f1;
   font-size: 0.95rem;
}

.pricing_features li:last-child {
   border-bottom     :  none;
}

.why_choose_us {
   background: #fff;
   padding: 4rem 2rem;
}

.why_wrapper 
 {
   max-width     :      1200px;
  margin: 0 auto;
}

.why_wrapper h2    {
   font-size: 2.2rem;
               text-align: center;
	 margin-bottom: 3rem;
	color: #1a252f;
  font-weight: 700;
}

.reasons_grid {
   display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.reason_card {
         padding    :     2.5rem;
   text-align: center;
  transition: all 0.3s ease;
  background: #f8f9fa;
  border-radius: 12px;
}

.reason_card:hover {
  transform: translateY(-8px);
	    background: #fff;
	  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.reason_icon
	{
  width: 80px;
    height: 80px;
   background: #e3f2fd;
     border-radius: 50%;
          display: flex;
  align-items  :    center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.svg_icon_medium {
  width: 40px;
   height: 40px;
    stroke: #3498db;
   fill: none;
    stroke-width: 1.5; 

}

.reason_card h3 {
     font-size    :    1.2rem;
  margin-bottom: 1rem;
    color :    #2c3e50;
}

.reason_card p {
	  color: #666;
    line-height: 1.7;
       font-size: 0.95rem;


}

.process_section{
	background: #ecf0f1;
	padding: 4rem 2rem;
}

.process_wrapper {
  margin: 0 auto;
   max-width: 1200px;
}

.process_wrapper h2 {
    margin-bottom: 3rem;
  text-align: center;
   font-weight: 700;
   color: #1a252f;
  font-size: 2.2rem;
}

.process_steps

{

	  display :grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
   align-items: center;

}

.process_step {
    background: #fff;
   padding: 2rem;
  border-radius: 12px;
    text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step_number {
    display  :  inline-block;
   -moz-border-radius: 50%;
    width: 50px;
   height: 50px;
  background: #3498db;
  -webkit-border-radius    :     50%;
    color: #fff;
          border-radius  :     50%;
	text-align: center;
   line-height: 50px;
	font-weight: 700;
	font-size  :       1.5rem;
  margin-bottom: 1rem;


}

.process_step h3 {
	font-size: 1.15rem;
        margin-bottom: 1rem;
  color: #2c3e50;
}

.process_step p {
          color: #666;
   line-height: 1.6;
    font-size :      0.95rem;
}

.process_arrow {
   text-align: center;
      display: flex;
          align-items: center;
  justify-content     : center;
}

.arrow_icon {
       width: 30px;
      height: 30px;
     stroke: #3498db;
       fill: none;
     stroke-width: 2;
}

.faq_section  {
  background: #fff;
  padding: 4rem 2rem;
}

.faq_wrapper {
   max-width: 900px;
  margin: 0 auto;
}

.faq_wrapper h2 {
  font-weight    :      700;
    margin-bottom: 3rem;
		color  :     #1a252f;
  font-size: 2.2rem;
   text-align: center;
}

.faq_items{
  display: grid;
   gap: 1.5rem;
}

.faq_item 
 {
  background: #f8f9fa;
  padding: 2rem;
    border-radius: 10px;
   border-left  :    4px solid #3498db;
}


.faq_question {

    font-size: 1.1rem;
    color: #2c3e50;
   cursor: pointer;
    margin-bottom: 0.8rem;
  font-weight: 600;
    transition :   color 0.3s ease;
	}

.faq_question:hover {
        color: #3498db;
}

.faq_answer {
  color: #555; 
   line-height: 1.8; 
  margin: 0; 
  font-size    :      0.95rem;
}

.thankyou_container {
	 max-width: 800px;
  margin: 4rem auto;
		padding: 0 2rem;
}

.thankyou_content {
   background  :   #fff;
    padding  :        3rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.success_icon {
   margin-bottom: 2rem;
}

.check_icon_large     {
    width: 80px;
   height:  80px;
    stroke   :      #2ecc71;
   fill: none;
         stroke-width: 1;
}

.thankyou_content h1 {
    font-size: 2.2rem;
   color     :    #2c3e50;
    margin-bottom: 1.5rem;
}

.thankyou_message {
    font-size: 1.1rem;
  color   :  #666;
   line-height: 1.8;
    margin-bottom: 2.5rem;
}

.thankyou_details {
   margin-bottom: 3rem;
   text-align: left;
   background: #f8f9fa;
    padding: 2rem;
  border-radius: 10px;
}

.thankyou_details h2 {
   margin-bottom: 1.5rem;
   font-size: 1.5rem;
       color: #2c3e50;
    text-align: center;
}

.details_list {
       display: grid;
  gap: 1.5rem;
     }

.detail_step {
      display: grid;
                    grid-template-columns: 60px 1fr;
     gap: 1.5rem;
	align-items: start;
}

.step_circle {
   width: 50px;
  height: 50px;
  background:   #3498db;
    -moz-border-radius: 50%;
    color: #fff;
  border-radius     :      50%;
    display: flex;
   align-items: center;
   justify-content: center;
    font-weight   :700;
   font-size: 1.2rem;
   flex-shrink     :        0;
}

.step_content h3 {
        font-size: 1.1rem;
  color   :       #2c3e50;
   margin-bottom: 0.5rem;
}

.step_content p
{
   color: #666;
   line-height: 1.6;
	font-size: 0.95rem;
   margin     :        0;
}

.thankyou_tips {
   background: #ecf0f1;
  padding: 2rem;
   border-radius  :  10px;
   margin-bottom: 2.5rem;
  text-align: left;


}

.thankyou_tips h2 {

	  font-size: 1.5rem;
     color: #2c3e50;
  margin-bottom: 1.5rem;
    text-align   :center;
     }

.tips_list {

	    list-style    :  none;
}

.tips_list li {
	 padding: 0.7rem 0 0.7rem 2rem;
	    color: #555;
	   position: relative;
	  line-height: 1.6; 

}

.tips_list li:before {
  content: "•";
         position: absolute;
  left: 0;
          color: #3498db;
   font-weight: 700;
	font-size: 1.5rem;}  

.contact_section_alternative
	{
   background: #fff;
            padding: 2rem;
      border-radius: 10px;
       border: 1px solid #ecf0f1;
      margin-bottom: 2.5rem;
}

.contact_section_alternative h2 {
   font-size: 1.3rem;
  color: #2c3e50;
    margin-bottom: 1rem;

}

.contact_section_alternative p
{
    color  :       #666;
  line-height: 1.7;
    margin: 0;
}

.contact_section_alternative a {
  color: #3498db;
  text-decoration: none;
    font-weight   :600;
    transition: color 0.3s ease; 

}

.contact_section_alternative a:hover

{
   color: #2980b9;
   text-decoration: underline;
}

.action_buttons {
	display: grid;
     grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 2rem;
}

.btn_back_home,
.btn_view_services {
    padding: 0.9rem 2rem;
  border-radius: 8px;
    text-decoration: none;
    font-weight  : 600;
  transition   : all 0.3s ease;
   border: none;
   cursor: pointer;
  text-align: center;
	display: block;
}

.btn_back_home {
	background: #3498db;
	color: #fff;
}

.btn_back_home:hover {
   background: #2980b9;
  transform: translateY(-3px);
}

.btn_view_services {
   color:       #3498db;
  background: transparent;
   border: 2px solid #3498db;
}

.btn_view_services:hover		{
    background: #ecf0f1;
  transform: translateY(-3px);
}

.support_box {
             background: #e3f2fd;
 padding: 2rem;
   border-radius   :       10px;
    text-align: center;
    margin-top: 2rem;


}

.support_box h3 {
    font-size: 1.2rem;
   color: #2c3e50;
	margin-bottom: 0.8rem;
}

.support_box p {
    color:   #555;
  margin-bottom: 1rem;
}  

.support_info {
   background: #fff;
       padding: 1.5rem;
     border-radius: 8px;
       margin-top: 1rem;
}

.support_info p {

   margin-bottom: 0.5rem;
}

.support_info strong {
      color: #2c3e50;
}

.social_proof

{
	background :     #f8f9fa;
       padding: 3rem 2rem;
  margin-top: 2rem;
}

.social_proof h2 {
  font-size :1.8rem;
    text-align: center;
  color: #2c3e50;
   margin-bottom: 2rem;
}

.testimonials_mini {
  max-width: 900px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial_mini {
     background: #fff;
    padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	}

.testimonial_text {
   color    :  #555;
  font-style: italic;
   margin-bottom: 1rem;
  line-height: 1.6;
}


.testimonial_author		{
   color:   #3498db;
	font-weight: 600;
	font-size: 0.9rem;
   margin: 0;
}@media (max-width: 768px) {
  .services_hero_content h1 {
    font-size: 1.8rem;
  }

  .service_detail_wrapper,
  .service_detail_wrapper_reverse {
    grid-template-columns: 1fr;
  }

  .service_detail_wrapper_reverse .service_detail_image {
    order: 1;
  }

  .process_steps {
    grid-template-columns: 1fr;
  }

  .process_arrow {
    display: none;
  }

  .pricing_card_featured {
    transform: scale(1);
  }

  .pricing_card_featured:hover {
    transform: translateY(-8px);
  }

  .action_buttons {
    grid-template-columns: 1fr;
  }

  .thankyou_content {
    padding: 2rem;
  }

  .detail_step {
    grid-template-columns: 50px 1fr;
  }

  .reasons_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services_hero_content h1 {
    font-size: 1.5rem;
  }

  .services_hero {
    padding: 2.5rem 1.5rem;
  }

  .services_overview_wrapper h2,
  .pricing_wrapper h2,
  .why_wrapper h2,
  .process_wrapper h2,
  .faq_wrapper h2,
  .social_proof h2 {
    font-size: 1.6rem;
  }

  .thankyou_content {
    padding: 1.5rem;
    margin: 2rem 1.5rem;
  }

  .details_grid {
    grid-template-columns: 1fr;
  }

  .pricing_grid {
    grid-template-columns: 1fr;
  }
}