* {
  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;
     }

.masthead_nav 
 {
   position: sticky;
    top: 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav_container {
   display: flex;
         justify-content: space-between;
  align-items: center;
   max-width: 1400px;
	 margin: 0 auto;
}

.logo_brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
    color: #fff;
   text-decoration: none;

}

.logo_img {
  height: 40px;
	  filter: brightness(0) invert(1);
}

.nav_menu {
  display: flex;
  list-style :      none;
 gap: 2.5rem;
   align-items: center;

}

.nav_menu a {
   position: relative;

  transition: color 0.3s ease;

   color: #fff;

    font-size: 1rem;

   text-decoration: none;
}

.nav_menu a:hover{
   color: #ffd700;
}

.nav_menu a::after {
  content: '';
          position :     absolute;
  bottom: -5px;
    left :   0;
   width: 0;
    height: 2px;
    background: #ffd700;
  transition: width 0.3s ease;
}

.nav_menu a:hover::after {
   width: 100%;
}

.burger_toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
   gap: 5px;
}

.burger_line {
  width: 28px;
   height: 3px;
    background: #fff;
	border-radius: 2px;
   transition: all 0.3s ease;
}

.burger_toggle.active .burger_line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}  

.burger_toggle.active .burger_line:nth-child(2) {
   opacity     :0;
}

.burger_toggle.active .burger_line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero_section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
   padding: 8rem 2rem;
   text-align: center;


}

.hero_inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero_title {
  font-size: 3.5rem;
    margin-bottom: 1.5rem;
               line-height: 1.2;
}

.hero_subtitle {
   font-size: 1.3rem;
		 margin-bottom: 2.5rem;
	    opacity   :0.95;
}


.hero_cta_btn   {
  display : inline-block;
   background: #ffd700;
    color  : #1e3c72;
	 padding: 1rem 2.5rem;
    border-radius: 50px;
   text-decoration: none;
      font-weight: 700;
    font-size :   1.1rem;
    transition    :all 0.3s ease;
   border     :     2px solid #ffd700;
  cursor: pointer;

}

.hero_cta_btn:hover   {

    background: transparent;

    color: #fff;

  transform: scale(1.05);


	}



.services_block {
               margin   :     0 auto;
  max-width: 1400px;
   padding: 6rem 2rem;
}

.section_title {
    font-size: 2.8rem;
   text-align: center;
	margin-bottom: 3.5rem;
   color: #1e3c72;
}

.services_grid {
   display    :      grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	  gap: 2.5rem;

	    margin-bottom: 3rem;
}

.service_card {
    background: #fff;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 4px solid #667eea;
}

.service_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.service_img {
      width: 100%;
    height: 200px;
   object-fit     : cover;
}

.service_content {
  padding: 2rem;


}

.service_name {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
    color   :     #1e3c72;
}

.service_desc {

	  color: #666;
   line-height: 1.7;
   font-size: 0.95rem;
	}

.expertise_section {
  background: linear-gradient(to right, #f5f7fa, #c3cfe2);
  padding: 5rem 2rem;
}

.expertise_wrapper {
    max-width: 1400px;
  margin: 0 auto; 
	
}

.expertise_header {
    font-size: 2.5rem;
 color: #1e3c72;
  margin-bottom: 2rem;
               text-align     :  center;
	
}

.expertise_list {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
   gap: 1.8rem; 
	margin-bottom: 3rem;
}

.expertise_item {
   background: #fff;

	  padding: 1.8rem;

	   border-radius     :    10px;

		text-align: center;

	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.expertise_item_title {
    font-size :  1.2rem;
       color: #667eea;
   			margin-bottom:       0.8rem;
       font-weight: 700;
}

.expertise_item_text {
   color: #666;
   font-size: 0.9rem;
  line-height: 1.6;
}

.webinar_section {
  padding: 6rem 2rem;
    background: #fff;
	text-align: center;
}

.webinar_container {
    max-width: 1000px;
   margin: 0 auto;
}

.webinar_title {
  font-size: 2.5rem;
   color: #1e3c72;
   margin-bottom     :  1.5rem;
}

.webinar_desc {
  font-size: 1.1rem;

	    color : #666;

	    margin-bottom: 2rem;

	               line-height: 1.8;
}

.webinar_btn {
   display: inline-block;
    background: #667eea;
   color: #fff;
   padding: 0.9rem 2.2rem;
    border-radius     :        50px;
               text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
      border   :     2px solid #667eea;
}

.webinar_btn:hover {
  background: transparent;
     color: #667eea;
}

.contact_section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
}

.contact_wrapper {
  max-width: 900px;
	margin: 0 auto;
}



.contact_title {
     font-size: 2.5rem;
    text-align: center;
   margin-bottom   :       3rem;
	}

.form_group {
	    margin-bottom: 1.5rem;}



.form_label {
   display: block;
    margin-bottom :   0.5rem;
  font-weight: 600;
}



.form_input, .form_select, .form_textarea {
  width: 100%;
	    padding: 0.9rem;
	    border: none;
	   border-radius: 6px;
	  font-family: inherit;
	       font-size: 1rem;
	  background: rgba(255, 255, 255, 0.95);
}

.form_textarea {
  resize: vertical;
  min-height: 120px;
}

.form_row   {
     display: grid;
   grid-template-columns   :  1fr 1fr;
    gap:       1.5rem;



}

.submit_btn {
    background: #ffd700;

  color: #1e3c72;

                    padding:   1rem 2.5rem;

    border: none;

	border-radius: 50px;

        font-weight: 700;

   font-size: 1rem;

    cursor: pointer;

     transition :all 0.3s ease;

    width: 100%;

  margin-top: 1rem;
}

.submit_btn:hover {
      background: #fff;
  transform: scale(1.02);

}

.footer_main {
   	background: #1a1a1a;
   color: #fff;
  padding     :  4rem 2rem 2rem;
	}

.footer_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap :        3rem;
   max-width: 1400px;
   margin: 0 auto;
  margin-bottom: 3rem;
}

.footer_section_title {
   font-size: 1.2rem;
       margin-bottom: 1.2rem;
                       font-weight: 700;
       color: #ffd700;
}

.footer_link {
    color: #ccc;

	       text-decoration: none;

	         margin-bottom: 0.8rem;

	   display: inline-block;

	   transition: color 0.3s ease;
}

.footer_link:hover {


	 color: #ffd700;
}

.footer_info {
   margin-bottom: 1rem;
     color: #ccc;
     font-size: 0.95rem;
}

.footer_bottom {
   border-top :   1px solid #333;
    padding-top: 2rem;
    text-align: center;
   color: #999;
       font-size: 0.9rem;


}@media (max-width: 768px) {
    .burger_toggle {
        display: flex;
    }

    .nav_menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1e3c72;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav_menu.active {
        max-height: 400px;
        padding: 1.5rem;
        gap: 1rem;
    }

    .nav_menu a {
        display: block;
        padding: 0.8rem 0;
    }

    .hero_title {
        font-size: 2rem;
    }

    .hero_subtitle {
        font-size: 1rem;
    }

    .section_title {
        font-size: 1.8rem;
    }

    .services_grid {
        grid-template-columns: 1fr;
    }

    .form_row {
        grid-template-columns: 1fr;
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.carousel_wrapper {

	    position: relative;

	  width: 100%;

	    max-width: 1200px;

	   margin:        0 auto;

	  overflow: hidden;

	  border-radius: 10px;


}

.carousel_container {
  display: flex; 
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.carousel_slide {
	min-width: 100%;
    height: 500px;
   background-size   :        cover;
 background-position: center;
  position :       relative;
}

.carousel_overlay {
  position: absolute;
 top: 0;
  left: 0;
   right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}


.carousel_content {
    position: absolute;
	bottom: 30px;
       left: 30px;
   right: 30px;
   color: #fff;
   z-index: 10;
}

.carousel_title {
                       font-size: 2.2rem;
  margin-bottom: 0.8rem;
   font-weight: 700;}

.carousel_desc {
	   font-size: 1rem;
	                    line-height   :     1.5;
	   opacity   :       0.95; 
	
	}

.carousel_nav_prev,
.carousel_nav_next {
  position: absolute;
    top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
   border: none;
	font-size: 1.8rem;
    padding: 12px 16px;
    cursor: pointer;
   z-index: 20;
  transition: all 0.3s ease;
               border-radius: 4px;
	
}

.carousel_nav_prev:hover,
.carousel_nav_next:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.carousel_nav_prev {
    left: 15px;
}

.carousel_nav_next {
  right: 15px;
}

.carousel_dots	{
  transform: translateX(-50%);
   left  : 50%;
  position:       absolute;
   z-index: 15;
    gap: 8px;
    bottom: 15px;
    display:      flex;
}

.carousel_dot {
   width: 12px;
  height: 12px;
  border-radius  : 50%;
  background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor   :      pointer;
   transition: all 0.3s ease;

}

.carousel_dot.active {
    background: #fff;
          width    :   30px;
   border-radius: 6px; 
	
}

.carousel_dot:hover		{
	  background: rgba(255, 255, 255, 0.8);
}@media (max-width: 768px) {
    .carousel_slide {
        height: 300px;
    }
    
    .carousel_title {
        font-size: 1.5rem;
    }
    
    .carousel_desc {
        font-size: 0.9rem;
    }
    
    .carousel_nav_prev,
    .carousel_nav_next {
        padding: 8px 12px;
        font-size: 1.4rem;
    }
    
    .carousel_content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}.icon_wrapper   {
  display :  inline-flex;
          align-items: center;
   justify-content: center;
}

.icon_wrapper img {
   width: 24px;
   height: 24px;
	display: block;
}

.policySection {
	padding: 80px 2rem;
  background     : #f8f9fa;
}

.policyContainer {
    max-width: 800px;
    margin   :      0 auto;
    text-align: left; 
	
}

.policyContainer h1 {
   font-size :  3rem;
  color: #1e3c72;
    margin-bottom: 2rem;
	text-align: center;
  font-weight :        700;
}

.policyContainer h2 {
   font-size: 2.5rem;
  color   :        #2c3e50;
	margin: 2.5rem 0 1.5rem 0;
  font-weight: 700;
} 

.policyContainer h2:first-of-type {
      margin-top: 0;
}

.policyContainer p {
  color: #7f8c8d;
   margin-bottom: 1.5rem;
  line-height: 1.7;
    font-size: 1.1rem;
}

.policyContainer p:last-of-type {
  font-style: italic;
  color: #95a5a6;
  text-align   :      center;
   margin-top: 3rem;
}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services_hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
    padding   :    7rem 2rem;
	text-align: center;
}

.services_hero_content 
 {
  max-width     :        800px;
    margin: 0 auto;
}

.services_hero_title {
   margin-bottom:      1rem;
   font-size: 3.2rem;
	line-height:        1.2;
} 

.services_hero_desc {
       opacity: 0.95;
  font-size: 1.2rem;


}



.services_detailed {
    padding: 5rem 2rem;
}

.services_detailed_wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.service_item_detailed {
      display: grid;
   grid-template-columns: 1fr 1fr;
   gap    :3rem;
    align-items: center;
   margin-bottom    :     4rem;
  background :        #f9f9f9;
  padding: 3rem;
  border-radius: 12px;
}

.service_item_reverse {
   direction: rtl;
}

.service_item_reverse > * {
   direction: ltr;
}

.service_item_image {
  overflow   :       hidden;
  border-radius     : 10px;
}  

.service_detailed_img {
   width: 100%;
   height: auto;
    display: block;
  transition: transform 0.4s ease;
}


.service_item_detailed:hover .service_detailed_img {
  transform: scale(1.05);
}

.service_item_body {
    padding: 1rem;


}

.service_item_title{
   	margin-bottom: 1rem;
     font-size: 2rem;
    color: #1e3c72;
	}

.service_item_intro {
    font-size  :        1.1rem;
   color: #666;
   margin-bottom  :     1.8rem;
    line-height: 1.7; 

}

.service_item_points {
   display     : grid;
    gap  :    1.5rem;
} 

.point_block    {
  background: #fff;
   padding: 1.5rem;
  border-left: 4px solid #667eea;
        border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.point_title {
  font-size :    1rem;
    color: #667eea;
  margin-bottom: 0.5rem;
   font-weight: 700;
}

.point_desc

{
  line-height: 1.6;
  color: #666;
  font-size: 0.9rem;


}

.process_section     {
  background: linear-gradient(to right, #f5f7fa, #c3cfe2);
	   padding  :5rem 2rem;
}

.process_wrapper {
  max-width:        1200px;
      margin: 0 auto;
}

.process_title


{
	 font-size   : 2.5rem;
    text-align: center;
       color: #1e3c72;
   margin-bottom    :3.5rem;
}

.process_timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline_item {
    display: flex;
   gap: 2rem;
       align-items: flex-start;
}

.timeline_number {
  min-width   : 50px;
    width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color    :    #fff;
   border-radius:        50%;
               display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
   font-size: 1.3rem;
}

.timeline_content {
   background: #fff;
   padding: 1.5rem;
  border-radius   : 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.timeline_title {

    margin-bottom: 0.5rem;
   font-size: 1.2rem;
    font-weight: 700;
    color    : #1e3c72;}

.timeline_desc {
	color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline_connector {
    width: 2px;
  height:  40px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
    margin-left: 24px;
}

.process_timeline .timeline_connector:last-of-type {


	 display     :     none;}

.pricing_section

{
   padding: 5rem 2rem;
  background: #fff;
}

.pricing_wrapper {
  max-width: 1200px;
   margin: 0 auto;
}

.pricing_title {
   font-size: 2.5rem;
  text-align: center;
   color: #1e3c72;
       margin-bottom: 3.5rem;
}

.pricing_grid   {
    display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; 

	}

.pricing_card {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
               border-radius: 12px;
  padding: 2.5rem;
    text-align: center;
   transition     :    all 0.3s ease;
   position: relative;
}

.pricing_card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pricing_featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
  border-color: #667eea;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pricing_featured .pricing_name,
.pricing_featured .pricing_duration   {
   color: #fff;
}

.pricing_featured .pricing_feature {
  color: rgba(255, 255, 255, 0.9);
}

.pricing_header {
	margin-bottom: 2rem;
}

.pricing_name {
 font-size: 1.5rem;

	color: #1e3c72;

    margin-bottom: 0.5rem;

    font-weight: 700;
}

.pricing_duration {
  font-size: 0.9rem;
  color: #999;
}

.pricing_features {
   text-align: left;
    margin-bottom   :     2rem;
}

.pricing_feature {
   padding   :0.8rem 0;
   color :#666;
    font-size: 0.95rem;
	border-bottom: 1px solid #e0e0e0;
}

.pricing_featured .pricing_feature {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing_feature:last-child {
   border-bottom: none;
}

.cta_section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
    padding: 4rem 2rem;
  text-align: center;
}

.cta_inner {
    max-width: 700px;
    margin:0 auto;
}

.cta_title {
     font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta_desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity :    0.95;
}

.cta_button     {
   display:        inline-block;
   background :        #ffd700;
    color: #1e3c72;
  padding: 0.9rem 2.5rem;
    border-radius  : 50px;
  text-decoration: none;
   font-weight:     700;
	 transition: all 0.3s ease;
}  

.cta_button:hover {
    background  :   #fff;
  transform: scale(1.05);
}

.thankyou_section {
    padding    :   6rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
               min-height: 70vh;
   display   :       flex;
  align-items: center;
}

.thankyou_container {
               max-width: 600px;
   margin: 0 auto;
   text-align: center;
  background   :   #fff;
  padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}  

.thankyou_icon  {
   margin-bottom: 2rem;
    display: flex;
   justify-content: center; 

}

.thankyou_icon svg {
   animation: slideDown 0.6s ease;
}@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thankyou_title {

	  font-size: 2.5rem;
  color: #1e3c72;
    margin-bottom: 0.5rem;

}

.thankyou_subtitle {
    font-size: 1.2rem;
    color: #667eea;
   margin-bottom: 2rem;
}

.thankyou_message {
  padding: 2rem;
	-webkit-border-radius: 8px;
         -moz-border-radius :    8px;
    background: #f9f9f9;
   border-radius   :       8px;
   margin-bottom: 2rem;
}

.thankyou_message p {
   color: #666;
  line-height    :       1.8;
   margin-bottom: 1rem;
}

.thankyou_message p:last-child {
  margin-bottom: 0;
}

.thankyou_actions {
  display: flex;
    gap: 1rem;
    margin-bottom :      2rem;
  flex-wrap: wrap;
}

.thankyou_btn_primary {
    flex: 1;

	   display: inline-block;

	    background: #667eea;

	   color: #fff;

	  padding: 0.9rem 1.5rem;

		 border-radius: 50px;

	  text-decoration: none;

	  font-weight: 600;

	    transition: all 0.3s ease;

	   min-width: 150px;
}

.thankyou_btn_primary:hover {
   background: #5568d3;
  transform: scale(1.05);
}

.thankyou_btn_secondary {

	   flex   :   1;
     display   : inline-block;
  background    :    transparent;
  color:        #667eea;
   padding: 0.9rem 1.5rem;
   border: 2px solid #667eea;
	 border-radius: 50px;
    text-decoration: none;
    font-weight:        600;
   transition: all 0.3s ease;
   min-width: 150px;
}

.thankyou_btn_secondary:hover {

  background: #667eea;
    color: #fff;


}

.thankyou_expected {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

.thankyou_small_text {
  color: #999;
   font-size: 0.85rem;
    margin-bottom: 0.5rem; 
	
}



.thankyou_contact_info {
  color     :       #1e3c72;
        font-size : 0.95rem;
  font-weight: 600;
}

.faq_section {
	   padding: 5rem 2rem;
    background :    #fff;


}

.faq_wrapper {
                    max-width: 900px; 
  margin  :0 auto;


}

.faq_title {
               font-size: 2.5rem;
  text-align: center;
   color: #1e3c72;
    margin-bottom: 3.5rem;
	
}

.faq_items {
  display: flex;
   flex-direction: column;
    gap :        1.2rem; 
	
}

.faq_item {
  border: 1px solid #e0e0e0;
    border-radius: 8px;
   overflow: hidden;
}

.faq_question {
      display: flex;
    justify-content: space-between;
    align-items: center;
   background: #f9f9f9;
   padding: 1.5rem;
  cursor: pointer;
    transition   :   all 0.3s ease;
}

.faq_question:hover {
               background: #f0f0f0;
}

.faq_q_text {
    color     :#1e3c72;
               font-weight: 600;
		font-size :    1.05rem; 
	
}

.faq_toggle {
    font-size: 1.5rem;
   color: #667eea;
   font-weight: 700;
  transition: transform 0.3s ease;
}

.faq_answer {
	max-height: 0;
   padding: 1.5rem;
    transition: max-height 0.3s ease;
	overflow: hidden;
    background: #fff;

}

.faq_answer p {
   	color: #666;
   line-height: 1.7;
}

.faq_item.active .faq_question  {
    background: #667eea;
}

.faq_item.active .faq_q_text {
   color     :       #fff;
}

.faq_item.active .faq_toggle {
	  color: #fff;
  transform: rotate(45deg);}

.faq_item.active .faq_answer {
    max-height: 300px;
}@media (max-width: 1024px) {
    .service_item_detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service_item_reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .services_hero_title {
        font-size: 2rem;
    }
    
    .services_hero_desc {
        font-size: 1rem;
    }
    
    .service_item_detailed {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .service_item_title {
        font-size: 1.5rem;
    }
    
    .service_item_intro {
        font-size: 1rem;
    }
    
    .service_item_points {
        gap: 1rem;
    }
    
    .point_block {
        padding: 1rem;
    }
    
    .process_timeline {
        gap: 1rem;
    }
    
    .timeline_item {
        gap: 1.5rem;
    }
    
    .timeline_connector {
        height: 30px;
    }
    
    .pricing_grid {
        grid-template-columns: 1fr;
    }
    
    .pricing_featured {
        transform: scale(1);
    }
    
    .thankyou_container {
        padding: 2rem;
    }
    
    .thankyou_title {
        font-size: 1.8rem;
    }
    
    .thankyou_actions {
        flex-direction: column;
    }
    
    .thankyou_btn_primary,
    .thankyou_btn_secondary {
        width: 100%;
    }
    
    .faq_question {
        padding: 1.2rem;
    }
    
    .faq_q_text {
        font-size: 0.95rem;
    }
}