@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

* {
    margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html  {


  scroll-behavior: smooth;

}

body		{
     font-family: 'Inter', sans-serif;
   color:        #1a1a1a;
  line-height: 1.6;
	background-color: #fafafa; 

}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
    font-weight   :    700;
   color: #0f0f0f;
  margin-bottom: 1.2rem;

}

h1 {
         font-size: 3.2rem;
    line-height: 1.1;
}

h2 {
  font-size: 2.4rem;
    margin: 2rem 0 1.5rem 0;


}

h3 {

   font-size    :  1.6rem;
		margin-bottom: 0.8rem;


}

h4 {
	font-size   :      1.2rem;
    margin-bottom: 0.6rem;
}

p {
      margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

a {
   text-decoration: none;
   color: inherit;
   transition: all 0.3s ease;
}

.navbar_container {
   background: #ffffff;
               padding: 1.2rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
         position: sticky;
  top: 0;
  z-index   :1000;
}

.navbar_wrapper   {
    max-width: 1280px;
  margin: 0 auto;
   display: flex;
  justify-content: space-between;
	align-items: center;
}

.logo_section {
    flex-shrink: 0;
}

.logo_img {
   height :     2.8rem;
   width: auto;
}

.burger_toggle {
	 display:none;
   flex-direction: column;
         gap: 0.4rem;
   background: none;
  border: none;
	 cursor: pointer;
      padding   :0.5rem;
}

.burger_line {
          width     :        1.8rem;
   background: #1a1a1a;
  border-radius: 2px;
	height: 2.5px;
    transition: all 0.3s ease;
}  

.navbar_menu {
  display: flex;
    list-style: none;
   gap     :     2.5rem;
  align-items: center;
}  

.nav_link {
  font-weight:     500;
    font-size: 0.95rem;
    color: #1a1a1a;
   border-bottom: 2px solid transparent;
    padding-bottom: 0.3rem;
}

.nav_link:hover {
    color: #2563eb;
   border-bottom-color: #2563eb;
}

.hero_section {

   max-width: 1280px;
    margin  :  3rem auto;
     padding: 2rem;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items   :  center;}


.hero_content h1{
    margin-bottom: 1.5rem;
   color: #0d47a1; 
	
}

.hero_subtitle {
	 font-size: 1.1rem;
	 color: #555;
         margin-bottom: 2rem;
  line-height:       1.7;
}

.cta_button_primary, .cta_button_secondary {
   display: inline-block;
    padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
   color    :       white;
 border-radius: 0.5rem;
  font-weight: 600;
	cursor: pointer;
   border: none;
   transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta_button_primary:hover, .cta_button_secondary:hover {
  transform: translateY(-2px); 
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.cta_button_secondary {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.hero_image {
    width: 100%;
   height: auto;
          border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.features_block {
  background: #f5f5f5;
    padding: 3.5rem 2rem;
	margin-top:      3rem;
}

.features_block h2 {
   text-align    :      center;
          max-width: 1280px;
  margin: 0 auto 2.5rem auto;
}

.features_grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    max-width: 1280px;
   margin: 0 auto;
}

.feature_card

{
    background: white;
   padding: 2rem;
   border-radius :    0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   transition: all 0.4s ease;
}

.feature_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}



.feature_card h3


{
	   color :       #2563eb;
  margin-bottom: 1rem;
	}

.feature_card p {
   color: #666;
    margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.feature_img {
  width: 100%;
	 height: 200px;
  object-fit: cover;
   border-radius: 0.5rem;


}

.workshop_showcase {
    max-width: 1280px;
  margin: 3rem auto;
  padding: 2rem;
}

.workshop_grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
	
}

.workshop_item {
	background: white;
    border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;


}

.workshop_item:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px); 
	
}

.workshop_img {
    width    : 100%;
    height: 220px;
    object-fit   :      cover;
}

.workshop_item h3 {
   padding: 1.5rem 1.5rem 0.5rem 1.5rem;
   font-size:1.2rem;
    color: #1a1a1a;
}

.workshop_item p {
	  padding  :        0 1.5rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: #666;

}

.benefits_section {
  background: linear-gradient(135deg, #f0f4ff 0%, #f9f5ff 100%);
   padding: 3.5rem 2rem;
               margin: 3rem 0;
}

.benefits_section h2 {
    text-align: center;
  max-width: 1280px;
      margin: 0 auto 2.5rem auto;
} 

.benefits_container {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1280px;
  margin: 0 auto;
}


.benefit_item {
     background: white;
    padding: 2rem;
    border-radius: 0.8rem;
   border-left: 4px solid #2563eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit_icon_wrapper {
	 margin-bottom: 1.2rem;
}

.benefit_icon {
 width:       2.2rem;
	 height: 2.2rem;
        stroke   :  #2563eb;
    fill: none;
   stroke-width: 2;
  stroke-linecap: round;
   stroke-linejoin    :    round;
  filter: drop-shadow(1px 1px 3px rgba(37, 99, 235, 0.2));
}

.benefit_item h4  
  {
    color: #0d47a1;
  margin-bottom: 0.8rem; 
	
}

.benefit_item p 
 {
      color: #666;
	  font-size:  0.9rem;}

.testimonial_area {
    max-width: 1280px;
	 margin: 3rem auto;
    padding   :     2rem;
}

.testimonial_area h2 {
    text-align: center;
  margin-bottom: 2.5rem;
}

.testimonial_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2rem;
}

.testimonial_card {
    background: white;
   padding: 2rem;
    border-radius     :  0.8rem;
   border-top  :        3px solid #2563eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   font-style: italic;
}

.testimonial_card p  {
   color: #555;
	margin-bottom: 1.2rem;
   font-size :      0.95rem;
     }

.testimonial_card footer {
  font-style: normal;

	  color: #2563eb;

	  font-weight  : 600;

	   font-size    : 0.85rem;
}

.cta_section {
     background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color   :        white;
    padding   :       3rem 2rem;
  text-align: center;
   margin: 3rem 0;
	}

.cta_section h2 {
   color     :  white; 
	 margin-bottom: 1rem;
}

.cta_section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
   margin-bottom: 2rem;
   max-width: 600px;
  margin-left: auto;
    margin-right    :       auto;
} 

.contact_section {
   max-width:        600px;
   margin: 3rem auto;
  padding    :   2rem;
}

.contact_section h2 {

	   text-align: center;
  margin-bottom: 0.5rem;
	}

.contact_intro {

  margin-bottom    :   2rem;
    text-align: center;
  color    :      #666; 
	
}

.contact_form {
   background :     white;
  padding   :2.5rem;
				 border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form_group {
	margin-bottom: 1.5rem;
}

.form_group label {
   display     :      block;
    font-weight: 600;
    margin-bottom: 0.5rem;
          color: #1a1a1a;
   font-size :   0.9rem;
}

.form_group input, .form_group select, .form_group textarea {
		width: 100%;
	padding: 0.85rem;
   border: 1px solid #ddd;
  border-radius  : 0.5rem;
  font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form_group input:focus, .form_group select:focus, .form_group textarea:focus {

   outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);


     }

.form_group textarea {
  resize: vertical;
     min-height   :120px;
}

.form_submit_btn


{
    width :        100%;
	 padding: 0.95rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
   color    :        white;
   border: none;
	border-radius: 0.5rem;
   font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
	
}

.form_submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}



.form_submit_btn:active {
	  transform: translateY(0);
     }

.footer_wrapper {
  background  :     #0f0f0f;
  color    :   #f5f5f5;
   padding: 3rem 2rem 1.5rem 2rem;
  margin-top: 4rem; 

}

.footer_content {
    max-width: 1280px;
  margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer_section h4 {
      color: white;
  margin-bottom: 1.2rem;
	font-size     :   1rem; 

}

.footer_logo {

   height: 2.5rem;
   width: auto;
  filter: brightness(0) invert(1);

}

.footer_links {
  list-style: none;
}

.footer_links li {
    margin-bottom: 0.8rem;
}

.footer_links a {
   color: #ccc;
   -o-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
	 font-size: 0.9rem;
	transition: color 0.3s ease;
        -webkit-transition: color 0.3s ease;
}

.footer_links a:hover {


  color     :       #2563eb;
     }

.contact_info {
   color: #bbb;
  font-size: 0.85rem;
   line-height: 1.8;
}

.phone_info {
  color: #2563eb;
   font-weight: 600;
    margin-top: 0.8rem;
   font-size: 0.9rem; 

}

.footer_desc


{
  color: #999;
  font-size: 0.85rem;
        line-height: 1.6;
}  

.footer_bottom {
    text-align  :        center;
  padding-top  :      1.5rem;
    border-top:      1px solid #333;
   color: #888;
   font-size: 0.8rem;
}@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .burger_toggle {
        display: flex;
    }

    .navbar_menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .navbar_menu.active {
        max-height: 300px;
    }

    .nav_link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: none;
    }

    .hero_section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 1.5rem auto;
    }

    .features_block {
        padding: 2rem 1rem;
    }

    .features_grid {
        gap: 1.5rem;
    }

    .contact_section {
        margin: 2rem 1rem;
    }

    .contact_form {
        padding: 1.5rem;
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero_section {
        margin: 1rem auto;
        padding: 1rem;
    }

    .cta_button_primary, .cta_button_secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .features_grid {
        grid-template-columns: 1fr;
    }

    .workshop_grid {
        grid-template-columns: 1fr;
    }

    .benefits_container {
        grid-template-columns: 1fr;
    }

    .testimonial_grid {
        grid-template-columns: 1fr;
    }

    .navbar_wrapper {
        padding: 1rem;
    }

    .contact_form {
        padding: 1rem;
    }
}.services_hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #0d47a1 100%);
    color: white;
    padding    :  4rem 2rem;
  text-align: center;}

.services_hero_content h1 {
   color: white;
   font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services_hero_content p {
  color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
	 max-width: 700px;
   margin: 0 auto;
}

.services_main  {
   max-width: 1280px;
      margin: 3rem auto;
    padding: 0 2rem;
}

.service_block  
  {
	   display: grid;

   grid-template-columns: 1fr 1fr;

  gap: 3rem;

  margin-bottom   :     4rem;

   align-items: center;

               background: white;

  padding: 2.5rem;

    border-radius    : 1rem;

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
     }

.service_block.featured_service:nth-child(even) {

    grid-template-columns: 1fr 1fr;
	}

.service_block.featured_service:nth-child(even) .service_image_wrapper {
  order     :       -1;
}


.service_image_wrapper{

		overflow: hidden;
  border-radius: 0.8rem;
}

.service_image {
   width: 100%;
    height: 350px;
    object-fit: cover;
    transition     :       transform 0.4s ease;
}

.service_image_wrapper:hover .service_image {
  transform: scale(1.05);
}

.service_content h2 {
		color     :     #0d47a1;
	margin-bottom   : 1rem;
  font-size: 2rem;
}

.service_content p {

	   color  :        #555;
    font-size: 1rem;
       margin-bottom: 1.5rem;
    line-height: 1.7;

}

.service_details {
    background     :     #f9f9f9;
  padding: 1.5rem;
    border-radius: 0.6rem;
   margin: 1.5rem 0;
	border-left: 4px solid #2563eb;


}

.service_details h3		{
      color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom  : 1rem;
}

.service_list {
               list-style: none;
    padding: 0;
	}

.service_list li {
  padding: 0.5rem 0;
    color: #666;
   font-size: 0.95rem;
  padding-left: 1.8rem;
  position :  relative;
}

.service_list li:before {
  content: "✓";
  position: absolute;
    left: 0;
   color    :    #2563eb;
	font-weight: bold;
}

.webinar_schedule {
    background: #e3f2fd;
	 padding: 1.2rem;
   border-radius: 0.5rem;
  margin: 1rem 0;
  color: #0d47a1;
	 font-size     :0.9rem;
}

.conference_date {
       background: #fef3e2;
    padding: 1.2rem;
  -webkit-border-radius: 0.5rem;
   border-radius  :       0.5rem;
    color: #b8860b;
    font-size     :        0.95rem;
   margin: 1rem 0;

}

.service_cta {
   display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
    border-radius: 0.5rem;
  font-weight: 600;
    margin-top: 1rem;
   transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service_cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);

}

.workshops_showcase_services {
   background: #f5f5f5;
    padding: 3.5rem 2rem;
    margin: 3rem 0; 

}

.workshops_showcase_services h2	{
   text-align  :  center;
   max-width: 1280px;
   margin: 0 auto 0.5rem auto;
}

.section_intro {
	text-align: center;
  color: #666;
        font-size: 1rem;
    margin-bottom  : 2rem;
    max-width     :        1280px;
	margin-left: auto;
   margin-right: auto;
}

.workshop_grid_services {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap :2rem;
   max-width: 1280px;
   margin: 0 auto;}

.workshop_card_service {
  background:     white;
    border-radius: 0.8rem;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.workshop_card_service:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.workshop_img_service {
  width :  100%;
	height: 240px;
  object-fit: cover;
}

.workshop_card_service h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    color: #0d47a1;
         font-size: 1.1rem;


}

.workshop_card_service p {
   padding   : 0 1.5rem 1rem 1.5rem;
       color: #666;
	font-size: 0.9rem;

}  

.workshop_duration  
  {
   display: inline-block;
  margin: 0 1.5rem 1.5rem 1.5rem;
  background: #e3f2fd;
   color  :      #0d47a1;
   padding: 0.4rem 0.8rem;
    border-radius: 0.3rem;
    font-size: 0.8rem;
  font-weight: 600;
}

.pricing_comparison {
   max-width: 1280px;
   margin: 3rem auto;
   padding: 2rem; 
	
}

.pricing_comparison h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing_intro {
  text-align :    center;
    color: #666;
  margin-bottom: 2.5rem;
    font-size: 0.95rem;
} 

.pricing_grid {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	   gap: 2rem;
}

.pricing_card {
      background: white;
    border: 1px solid #e0e0e0;
   border-radius  :        0.8rem;
	 padding: 2rem;
   text-align: center;
   transition: all 0.4s ease;
    position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pricing_card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
	}



.popular_badge, .premium_badge {
  position: absolute;
      top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
   color: white;
   padding: 0.4rem 1rem;
    border-radius: 0.5rem;
         font-size: 0.75rem;
	 font-weight: 700;
}

.premium_badge {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.pricing_card h3
{

	  margin: 1rem 0 0.5rem 0;

	    color: #0d47a1;
     }

.price {


     font-size: 2.5rem;
   font-weight: 700;
	color     :    #2563eb;
   margin: 1rem 0;}

.price_desc
{
       color: #666;
    font-size   :     0.85rem;
   margin-bottom: 1.5rem;

}

.pricing_features {
    list-style: none;
   margin: 1.5rem 0;
    text-align: left;
}

.pricing_features li {
   padding: 0.6rem 0;
	color: #555;
  font-size:     0.9rem;
   border-bottom: 1px solid #f0f0f0;
	padding-left: 1.5rem;
    position  :        relative;
}

.pricing_features li:before {
  content: "✓";
   position: absolute;
  left: 0;
   color: #2563eb;
   font-weight: bold;
}

.pricing_cta{
     display: inline-block;
   width: 100%;
  padding   :  0.85rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
  border: none;
    border-radius :   0.5rem;
    font-weight: 600;
   cursor: pointer;
  margin-top: 1.5rem;
    transition: all 0.3s ease; 

}

.pricing_cta:hover {
  transform: translateY(-2px);
	  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.pricing_featured {
   border:  2px solid #2563eb;
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.2);
}

.pricing_premium {
  border: 2px solid #f59e0b;
  transform: scale(1.02);
}

.faq_services		{
	  max-width: 900px;
	margin: 3rem auto;
       padding: 2rem;


}

.faq_services h2
	{
	text-align: center;
  margin-bottom: 2rem;


}

.faq_container {
	 display: flex;
        flex-direction: column;
 gap: 1rem;
}

.faq_item {
   background: white;
        border: 1px solid #e0e0e0;
  border-radius: 0.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq_question{
    display: block;

	                    width: 100%;

	    padding: 1.5rem;

	  background  :      #f9f9f9;

	   border: none;

	  cursor: pointer;

	    font-size: 1rem;

	               font-weight: 600;

	  color: #0d47a1;

	   text-align: left;

	    transition: all 0.3s ease;
}

.faq_question:hover {
    background: #f0f0f0;
}

.faq_item[open] .faq_question {
  background: #e3f2fd;
}

.faq_answer {

	    padding: 1.5rem;
  color: #555;
	border-top: 1px solid #e0e0e0;
   line-height: 1.7; 



}

.faq_answer p {
    margin :   0;
}

.thankyou_container {
        min-height: 60vh;
   display :    flex;
         align-items: center;
	 justify-content: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #f9f5ff 100%);
	padding:2rem;
   margin-top: 2rem;
}

.thankyou_wrapper {
  background: white;
	 border-radius     :   1.2rem;
 padding: 3rem 2rem;
	 max-width: 700px;
                    text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); 
	
}

.thankyou_icon_wrapper {


   margin-bottom: 2rem;


}

.thankyou_icon {
     width: 4rem;
  height: 4rem;
  stroke: #2ecc71;
  fill: #2ecc71;
  filter: drop-shadow(0 2px 8px rgba(46, 204, 113, 0.3));
     }

.thankyou_wrapper h1 {


   color   :        #0d47a1;

	  margin-bottom: 1rem;

	  font-size: 2.2rem;


}

.thankyou_main_message {
   color: #555;
	font-size   :    1.05rem;
    margin-bottom: 2.5rem;
   line-height: 1.7;
}

.thankyou_details {
  background: #f5f5f5;
    padding: 2rem;
          border-radius: 0.8rem;
  margin: 2rem 0;
  text-align   :  left;
}

.thankyou_details h2 {
      text-align: center;
   color: #0d47a1;
  margin-bottom    :      1.5rem;
       font-size     :   1.5rem;
}

.next_steps {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap     :        1.5rem;
	}

.step_item {
    text-align: center;
}

.step_number		{
  display: flex;
   align-items: center;
   justify-content: center;
   width: 2.5rem;
    height: 2.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
        border-radius: 50%;
   font-weight: 700;
    font-size: 1.2rem;
	margin: 0 auto 0.8rem auto;
}

.step_item h3 {
    color: #0d47a1;
	 margin-bottom: 0.5rem;
   font-size: 1rem;
}


.step_item p {
    color: #666;
    font-size: 0.85rem;
 line-height: 1.5;
}

.thankyou_recommendations {
     margin     :    2rem 0;

}

.thankyou_recommendations h2 {
    color: #0d47a1;
       margin-bottom: 1rem;
  font-size: 1.3rem;
}

.thankyou_recommendations p {
    color: #666;
   margin-bottom: 1.5rem;
}

.recommendation_links {
	 display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 1rem;
}

.recommendation_btn {
	display: inline-block;

	  padding: 0.85rem 1.5rem;

	  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);

	       color: white;

	  border-radius: 0.5rem;

	    font-weight: 600;

	        transition: all 0.3s ease;

	  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.recommendation_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.thankyou_contact_info {
   background    :    #e3f2fd;
    padding: 1.5rem;
    border-radius: 0.8rem;
  margin-top   :  2rem;
}

.thankyou_contact_info h3 {
	color: #0d47a1;
	 margin-bottom: 0.8rem;


}

.thankyou_contact_info p {
  font-size: 0.9rem; 
	   color: #555;
}

.contact_phone {
	 font-weight: 600;
   color: #2563eb;
   font-size  :      1.1rem;
    margin-top: 0.8rem;
}

.contact_address {
    color: #666;
   font-size: 0.85rem;
    margin-top: 0.5rem;
}@media (max-width: 768px) {
    .service_block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .service_block.featured_service:nth-child(even) .service_image_wrapper {
        order: unset;
    }

    .service_image {
        height: 250px;
    }

    .workshops_showcase_services {
        padding: 2rem 1rem;
    }

    .workshop_grid_services {
        gap: 1.5rem;
    }

    .pricing_featured {
        transform: scale(1);
    }

    .pricing_premium {
        transform: scale(1);
    }

    .pricing_grid {
        gap: 1.5rem;
    }

    .next_steps {
        grid-template-columns: 1fr;
    }

    .recommendation_links {
        grid-template-columns: 1fr;
    }

    .thankyou_wrapper {
        padding: 2rem 1.5rem;
    }

    .thankyou_icon {
        width: 3.5rem;
        height: 3.5rem;
    }
}

@media (max-width: 480px) {
    .service_content h2 {
        font-size: 1.5rem;
    }

    .service_cta {
        display: block;
        text-align: center;
    }

    .workshop_grid_services {
        grid-template-columns: 1fr;
    }

    .pricing_grid {
        grid-template-columns: 1fr;
    }

    .thankyou_wrapper {
        padding: 1.5rem 1rem;
    }

    .thankyou_wrapper h1 {
        font-size: 1.6rem;
    }

    .pricing_card {
        padding: 1.5rem;
    }

    .faq_question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq_answer {
        padding: 1rem;
    }
}.policySection {
	  padding: 80px 2rem;
    background: #f8f9fa;


}

.policyContainer {
		 max-width: 800px;
    margin: 0 auto;
    text-align: left;

}

.policyContainer h2    {
  color: #2c3e50;

	  font-size: 2.5rem;

	   font-weight: 700;

	  margin-bottom   :      1.5rem;
}

.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;
    }
}