*    {
  margin :  0;
   padding: 0;
	box-sizing :  border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
   background-color: #fff;
}  

img	{
    max-width: 100%;
  display :        block;
  height     :        auto;
}

a
{
          text-decoration: none;
    color: inherit;
}

button {
  cursor: pointer;
    border: none;
  background: none;
    font-family: inherit;


}

input, textarea, select {
   font-family: inherit;
}

.navbar_container {
   background-color: #fff;
   border-bottom: 1px solid #e8e8e8;
   padding: 1rem 0;
  position: sticky;
   top: 0;
	z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar_wrapper		{
     max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
  display: flex;
   justify-content: space-between;
    align-items: center;
}

.navbar_brand	{
  flex-shrink    : 0;
}

.navbar_logo {
	 width  :     auto;
       height :    45px;
}

.navbar_toggle {
    cursor: pointer;
  gap: 5px;
    display: none;
  flex-direction: column;
}

.toggle_line

{
         background-color: #2c3e50;
   height: 3px;
     transition: all 0.3s ease;
    width: 25px;
   display: block;
}

.navbar_menu
{

   display: flex;
        list-style: none;
   gap: 2rem;
  align-items: center;

}

.navbar_link {

	 font-size: 1rem;
  color: #2c3e50;
          font-weight: 500;
			transition:    color 0.3s ease;
   position: relative;
     }

.navbar_link:hover {

   color: #3498db;
     }

.navbar_link::after {
    height: 2px;
   transition: width 0.3s ease;
  content: '';
    left: 0;
   width: 0;
   background-color :  #3498db;
  bottom: -5px;
  position: absolute;
}

.navbar_link:hover::after {
   	width: 100%;}

.hero_section   {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   padding: 80px 20px;
  min-height: 600px;
	display: flex;
  align-items: center;
}

.hero_container {
   max-width    :      1200px;
  margin   :      0 auto;
   display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 4rem;
	align-items  :center;
}

.hero_content {
   display : flex;
   flex-direction   :       column;
  gap: 1.5rem;
}

.hero_title {
    font-size: 2.8rem;
    font-weight    :700;
    line-height  :  1.2;
  color: #1a252f;

}

.hero_subtitle {
     font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.6;

}

.hero_cta {
    display: inline-block;

               padding :      14px 32px;

  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);

    color: #fff;

   font-weight: 600;

  border-radius: 6px;

		transition: all 0.3s ease;

    width: fit-content;

  font-size: 1rem;

  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}  

.hero_cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero_image {
               border-radius: 12px;
  overflow: hidden;
}

.responsive_image {
   width: 100%;
  height :100%;
  object-fit: cover;
}

.services_preview_section {
    padding: 80px 20px;
	background-color: #fff;
}

.services_wrapper {
  max-width: 1200px;
   margin: 0 auto;
}

.section_heading {

	   font-size: 2.2rem;
    font-weight: 700;
   text-align: center;
        margin-bottom: 3rem;
  color: #1a252f;}

.services_grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
}

.service_card {
               background: #f8f9fb;
   border-radius: 10px;
  overflow    :    hidden;
  transition: all 0.3s ease;
  border: 1px solid #e8ecf1;
} 

.service_card:hover
	{
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.service_image {
    width: 100%;
   height: 240px;
    object-fit     :  cover;
}

.service_title     {
   font-size: 1.3rem;
   font-weight: 600;
   padding: 1.5rem 1.5rem 0.5rem;
   color: #1a252f;
}

.service_description {
    padding: 0 1.5rem 1.5rem;
  color  :     #5a6c7d;
     line-height: 1.6;
   font-size: 0.95rem;
}

.webinar_section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
}

.webinar_container {
     max-width: 1200px;
    margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;
     }

.webinar_content {
		 display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.webinar_title {
   font-size: 2.2rem;
   font-weight: 700;
    color: #1a252f;
}

.webinar_text {
	line-height: 1.7;
   font-size: 1rem;
  color: #5a6c7d;
	
}

.webinar_features {

   list-style: none;
    display: flex;
    flex-direction: column;
	gap: 0.8rem; 

     }

.webinar_feature {
   padding-left: 1.8rem;
    position: relative;
  color: #2c3e50;
  font-weight: 500;
}

.webinar_feature::before {

  content: '✓';
	 position: absolute;
  left: 0;
   color: #27ae60;
  font-weight: 700;
  font-size: 1.2rem;
	}

.webinar_image		{
       border-radius: 12px;

   overflow: hidden;
}

.advantages_section {
  padding: 80px 20px;
    background-color     :     #fff;
}

.advantages_wrapper {
   max-width: 1200px;
   margin    :      0 auto;
     }

.advantages_list {
     display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;

}

.advantage_item {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f3f7 100%);
   border-radius: 10px;
  border-left:        4px solid #3498db;
	transition: all 0.3s ease;
}

.advantage_item:hover {

	  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);

}

.advantage_title{
        font-size: 1.25rem;
  font-weight: 600;
    margin-bottom    :     0.8rem;
    color: #1a252f;
}

.advantage_text {
   color: #5a6c7d;
    line-height: 1.6;
				 font-size: 0.95rem;
}

.coaching_types_section {
    padding  :        80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%); 
	
}

.coaching_wrapper {
	margin: 0 auto;
  max-width     :     1200px;
}


.coaching_cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.coaching_card {
    background: #fff;
	 padding: 2rem;
	border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   border-top: 4px solid #3498db;
}

.coaching_card:nth-child(2) {
    border-top-color: #9b59b6; 
	
}

.coaching_card:nth-child(3)  
  {
    border-top-color: #e74c3c;
}

.coaching_card:nth-child(4) {
    border-top-color: #f39c12;
}

.coaching_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); 
	
}



.coaching_card_title	{
  font-size: 1.3rem;
	 font-weight: 600;
   margin-bottom: 1rem;
   color: #1a252f;
}

.coaching_description {
  color   :  #5a6c7d;
  line-height: 1.6;
   font-size: 0.95rem;
}

.cta_section
{
    padding: 80px 20px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.cta_container {
  max-width: 800px;
	margin: 0 auto;
   text-align: center;
                    display: flex;
     flex-direction  :   column;
    gap: 1.5rem;
}

.cta_title {
  font-size   :      2.2rem;
  font-weight:      700;
   color: #fff;


}

.cta_text {
  font-size: 1.1rem;
   color :     #ecf0f1;
  line-height: 1.6;
}

.cta_button {
	display: inline-block;
  padding: 14px 40px;
    background-color   :       #fff;
  color     :#3498db;
          font-weight :  600;
  border-radius: 6px;
    transition :        all 0.3s ease;
  font-size: 1rem;
   margin-top: 0.5rem;
}

.cta_button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact_section {
    padding: 80px 20px;
    background-color: #f8f9fb;
}  

.contact_wrapper {
    max-width: 600px;
      margin: 0 auto;
}  

.contact_title {
	font-size: 2rem; 
	   font-weight: 700; 
	     text-align: center; 
	  margin-bottom: 2rem; 
	   color :     #1a252f;
}

.contact_form {


    display: flex;
   flex-direction: column;
      gap: 1.5rem;
    background: #fff;
  padding: 2rem;
   border-radius:12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     }

.form_group 
 {
    display: flex;
   flex-direction   :column;
    gap    :      0.5rem; 
	
}

.form_input,
.form_textarea   {
       padding: 12px 16px;
    border: 1px solid #d5dbdb;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
   color: #2c3e50;}

.form_input:focus,
.form_textarea:focus {
	  outline: none;
    border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
	}

.form_textarea{
  resize  :        vertical;
    min-height:120px;
}

.form_submit {


   padding: 14px 32px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  font-weight: 600;
  border-radius    :        6px;
    font-size: 1rem;
  transition: all 0.3s ease;
   margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.form_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.footer_section {
   background-color: #2c3e50;
   color: #ecf0f1;
  padding     : 60px 20px 30px;
}

.footer_container 
 {


    margin    :     0 auto;
  max-width   :    1200px;


}

.footer_top    {
	   display: grid;
      grid-template-columns: 1fr 1fr;
  gap   :    3rem;
    margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(236, 240, 241, 0.1);




}

.footer_brand {
   display: flex;
   align-items: center; 
	
}

.footer_logo {
  height   :    50px;
  width     :      auto;
  filter: brightness(0) invert(1);
}

.footer_contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer_address,
.footer_phone,
.footer_email {
    color:      #bdc3c7;
	  font-size: 0.95rem;
	       line-height: 1.6;
}

.footer_links {
	display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap  :   2rem;
   margin-bottom     :   2rem;
}

.footer_column {
    display: flex;
    flex-direction: column;
  gap: 1rem;
}

.footer_heading {
   font-weight     :       600;
   font-size: 1rem;
    color: #ecf0f1; 
	
}

.footer_list {
     list-style     :     none;
	display     : flex;
   flex-direction: column;
	gap: 0.6rem;

}

.footer_link {


    color: #bdc3c7;
  transition: color 0.3s ease;
  font-size: 0.9rem;
     }

.footer_link:hover {
    color: #3498db;
}

.footer_bottom {
    text-align: center;
    padding-top: 2rem;
  border-top: 1px solid rgba(236, 240, 241, 0.1);
}

.footer_copyright {
   font-size: 0.9rem;

  color: #95a5a6;
}@media (max-width: 768px) {
    .navbar_toggle {
        display: flex;
    }

    .navbar_menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid #e8e8e8;
        display: none;
    }

    .active_menu {
        display: flex !important;
    }

    .navbar_item {
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
    }

    .navbar_link {
        display: block;
        padding: 1rem 20px;
    }

    .active_toggle .line_one {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .active_toggle .line_two {
        opacity: 0;
    }

    .active_toggle .line_three {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero_section {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero_container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero_title {
        font-size: 2rem;
    }

    .hero_subtitle {
        font-size: 1rem;
    }

    .section_heading {
        font-size: 1.8rem;
    }

    .webinar_container,
    .hero_container {
        grid-template-columns: 1fr;
    }

    .services_grid {
        grid-template-columns: 1fr;
    }

    .footer_top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta_title {
        font-size: 1.8rem;
    }

    .contact_form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero_title {
        font-size: 1.6rem;
    }

    .section_heading {
        font-size: 1.5rem;
    }

    .navbar_wrapper {
        padding: 0 15px;
    }

    .services_preview_section,
    .webinar_section,
    .advantages_section,
    .coaching_types_section,
    .cta_section,
    .contact_section {
        padding: 50px 15px;
    }

    .form_submit,
    .hero_cta,
    .cta_button {
        padding: 12px 24px;
    }
}.policySection {
   padding: 80px 2rem;

	   background: #f8f9fa;
}

.policyContainer		{
     max-width: 800px;
    margin  :    0 auto;
   text-align: left;
}

.policyContainer h1 {
  font-size: 2.8rem;
  color: #2c3e50;
   margin-bottom: 2rem;
  font-weight: 700;
}

.policyContainer h2 {


	font-size :       2rem;
   color: #1a252f;
  margin: 2.5rem 0 1.5rem;
  font-weight: 600;
	}

.policyContainer h3 {
  font-size: 1.4rem;
    color: #2c3e50;
  margin: 1.5rem 0 1rem;
   font-weight   :       600;
} 

.policyContainer p {

   color: #7f8c8d;
   margin-bottom: 1.5rem;
    line-height   :       1.7;
	font-size: 1.1rem;


}

.policyContainer ul {
               margin: 1rem 0 1.5rem 1.5rem;
}

.policyContainer li {
	 color: #5a6c7d;
  margin-bottom: 0.5rem;
   line-height: 1.6;
  font-size   :     1rem;
}

.policyContainer a {
    color: #3498db;
    text-decoration: underline;
  transition: color 0.3s ease;
}

.policyContainer a:hover {
  color: #2980b9;
}

.policyContainer em	{


	color: #95a5a6;
	 font-style: italic;
	}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 1.7rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.9rem;
    }
}.services_hero_section{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 100px 20px;
  text-align: center;
   color    :   #fff;
}

.services_hero_container {
  margin: 0 auto;
   max-width: 900px;
}

.services_hero_title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services_hero_subtitle 
 {
   font-size: 1.2rem;
   color: #ecf0f1;
   line-height: 1.6;
}

.detailed_services_section {
  background-color: #fff;
			padding: 80px 20px;
}

.detailed_services_wrapper {
   max-width  :     1200px;
  margin: 0 auto;
   display: flex;
  flex-direction: column;
   gap :      4rem;
}

.service_detail_card {

  background: #f8f9fb;
  border-radius   :      12px;
         overflow: hidden;
   border: 1px solid #e8ecf1;
    transition: all 0.3s ease;

}

.service_detail_card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
   border-color: #3498db;
}

.service_detail_header {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 2rem;
  color: #fff;
}

.service_detail_title {

	  font-size: 1.8rem;
  font-weight: 700;
			margin: 0;

}

.service_detail_content {
       display: grid;
    grid-template-columns: 1fr 1fr;
     gap: 2rem;
   padding: 2rem;
  align-items: start;
}


.service_detail_image {
   width   :      100%;

	   height:      350px;

	    object-fit: cover;

	    border-radius: 8px;
}

.service_detail_text {
    display: flex;
   flex-direction: column;
    gap: 1rem;
     }

.service_detail_description {
    font-size: 1rem;
    color: #5a6c7d;
  line-height: 1.7;
}

.service_subheading {
  color: #1a252f;

	                    font-weight: 600;

	    margin-top: 1rem;

	   font-size     :        1.15rem;
}

.service_features_list {
   list-style: none;
  display: flex;
               flex-direction: column;
    gap: 0.7rem;
}

.feature_item {
  padding-left: 1.8rem;
   position: relative;
	 color: #2c3e50;
   font-size: 0.95rem;
    line-height: 1.5;
}

.feature_item::before {

  position     : absolute;
  left: 0;
  content: '✓';
  color    :       #27ae60;
  font-weight: 700;
   font-size: 1.1rem;}

.service_duration {
               color: #5a6c7d;
    font-size :   0.95rem;
  margin-top: 0.5rem;
     font-style: italic;
}

.service_button {
	    display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
   font-weight: 600;
  border-radius: 6px;
	transition: all 0.3s ease;
     text-align: center;
    font-size:        0.95rem;
  width: fit-content;
  margin-top: 0.5rem;



}

.service_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);}

.pricing_comparison_section

{
  padding: 80px 20px;
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
}

.pricing_wrapper {

    max-width: 1200px;
   margin: 0 auto;

}

.pricing_table_container     {
    background: #fff;
	border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow-x: auto;


	}

.pricing_table {
  width: 100%;
  border-collapse: collapse;
}

.pricing_thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.pricing_header_row {
  color  :    #fff;
}

.pricing_cell 
 {
    padding: 1.2rem;
    text-align:       left;
   font-size :   0.95rem;
   border-bottom: 1px solid #e8ecf1;
}

.pricing_feature {
   font-weight: 600;
  color: #1a252f;
  background-color: #f8f9fb;
}

.pricing_header_row .pricing_feature {
               color :      #fff;
  background-color   :   transparent;
	
}


.pricing_row:nth-child(even) 
 {
  background-color: #f8f9fb;
}

.pricing_checkmark {
  color: #27ae60;
      font-weight: 700;
   text-align: center;
}

.faq_section		{
   padding: 80px 20px;
	background-color: #fff;
}

.faq_wrapper {

	    max-width: 900px;
  margin: 0 auto;

}

.faq_container {
   display     :        flex;
	flex-direction: column;
	gap: 1.5rem;
}

.faq_item {
    background     :        #f8f9fb;
   padding: 1.8rem;
 border-radius: 10px;
  border-left  :      4px solid #3498db;
    transition: all 0.3s ease;
}

.faq_item:hover {
     box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
	 border-left-color: #2980b9;
     }

.faq_question 
 {
    font-size: 1.1rem;
   font-weight: 600;
  color: #1a252f;
   margin-bottom: 0.8rem;
}

.faq_answer


{
    color: #5a6c7d; 
	   line-height: 1.7; 
	  font-size: 0.95rem; 
	    margin: 0;
}

.thankyou_section {
   padding: 80px 20px; 
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%); 
         min-height: 80vh; 
    display: flex; 
	 align-items: center;
}

.thankyou_container {
  max-width :1000px;
    margin: 0 auto;
	 width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
               align-items: center;

}

.thankyou_content {
  background: #fff;
   padding:        2.5rem;
        border-radius     : 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
	 flex-direction: column;
   gap: 1.5rem;
  text-align: center;
}

.thankyou_icon {
    display: flex;
   justify-content :  center;
  margin-bottom :  0.5rem;
}

.thankyou_title {
    font-size  :       2rem; 
   font-weight: 700; 
          color    :    #1a252f;
}

.thankyou_subtitle {


   font-size: 1.2rem;
  color: #27ae60;
   font-weight: 600;
}

.thankyou_message {
     color :  #5a6c7d;
               line-height   :      1.7;
   font-size: 0.95rem;
     }

.thankyou_info_block {
     background : #f8f9fb;
      padding: 1.5rem;
     border-radius: 8px;
       border-left: 4px solid #3498db;
      text-align     :      left;
}

.info_block_title {
  font-size: 1.1rem;
    font-weight: 600;
	color: #1a252f;
   margin-bottom: 1rem;
}

.info_list	{

   list-style  :  none;
	display: flex;
    flex-direction: column;
	gap: 0.7rem;
     }

.info_item {
                    padding-left: 1.8rem;
    position: relative;
  color: #2c3e50;
  font-size: 0.9rem;
		 line-height:       1.6;
}

.info_item::before {
	  content: '→';
  position: absolute;
                    left: 0;
  color: #3498db;
         font-weight: 700;

}

.thankyou_contact_info 
 {
	 background: #e3f2fd;
  padding: 1.5rem;
   border-radius: 8px;
}

.contact_note {
    font-weight  :  600;
	   margin-bottom: 0.8rem;
	  color: #1a252f;
}

.contact_detail {
    color: #2c3e50;
   font-size    :      0.95rem;
}

.contact_link {


  text-decoration: none;
  color: #3498db;
               transition   :     color 0.3s ease;
	font-weight:600;}

.contact_link:hover {
   color: #2980b9;
  text-decoration    :     underline;

}  

.thankyou_buttons {
    display: flex;
  gap     : 1rem;
   margin-top  :       1rem;
    flex-direction  :   column;
}

.thankyou_button {
   padding: 12px 28px;
   border-radius  :      6px;
         -moz-transition: all 0.3s ease;
   -moz-border-radius   :6px;
    -webkit-transition: all 0.3s ease;
   -webkit-border-radius: 6px;
   font-weight: 600;
        transition: all 0.3s ease;
   text-align: center;
   display: inline-block;
   font-size: 0.95rem;
}

.button_primary     {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.button_primary:hover
{
	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.button_secondary {
    background: #ecf0f1;
			color: #2c3e50;
   border: 1px solid #d5dbdb;
}

.button_secondary:hover {
	background: #d5dbdb;
  border-color: #bdc3c7;
}

.thankyou_benefits {

	 display: flex;
  flex-direction: column;
    gap: 2rem;


}

.benefits_title


{
    font-size: 1.6rem;
        font-weight: 700;
   color: #1a252f;
}

.benefits_grid {
   display: grid;
    grid-template-columns: 1fr;
       gap     :   1.5rem;
}

.benefit_card {
     background: #fff;
   padding: 1.5rem;
  border-radius: 10px;
        border-top   : 3px solid #3498db;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition :        all 0.3s ease;
}



.benefit_card:nth-child(2) {
	border-top-color: #9b59b6;
}  

.benefit_card:nth-child(3) {
   	 border-top-color: #e74c3c;



}

.benefit_card:nth-child(4) {
  border-top-color: #f39c12;



}

.benefit_card:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit_card_title {
  font-size: 1.05rem;

	  font-weight: 600;

	  color    :  #1a252f;

	  margin-bottom: 0.5rem;
}

.benefit_card_text


{
   color: #5a6c7d;
	font-size: 0.9rem;
    line-height: 1.5;
			margin: 0;

} @media (max-width: 768px) {
    .services_hero_title {
        font-size: 2rem;
    }

    .service_detail_content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service_detail_image {
        height: 250px;
    }

    .pricing_table_container {
        font-size: 0.85rem;
    }

    .pricing_cell {
        padding: 0.8rem;
    }

    .thankyou_container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .thankyou_content {
        padding: 1.5rem;
    }

    .thankyou_buttons {
        flex-direction: column;
    }

    .thankyou_button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services_hero_title {
        font-size: 1.6rem;
    }

    .service_detail_header {
        padding: 1.5rem;
    }

    .service_detail_title {
        font-size: 1.4rem;
    }

    .service_detail_content {
        padding: 1rem;
    }

    .service_detail_image {
        height: 180px;
    }

    .pricing_table {
        font-size: 0.75rem;
    }

    .pricing_cell {
        padding: 0.5rem;
    }

    .faq_item {
        padding: 1.2rem;
    }

    .faq_question {
        font-size: 0.95rem;
    }

    .thankyou_title {
        font-size: 1.5rem;
    }

    .thankyou_icon svg {
        width: 60px;
        height: 60px;
    }
}