* {
  margin: 0;
  padding  :        0;
   box-sizing: border-box;
	}

body	{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height    :       1.6;
  color: #2c3e50;
  background: #ffffff; 
}

.main_navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem 0;
   position: fixed;
	width: 100%;
   top :    0;
   z-index: 1000;
  box-shadow: 0 2px 20px rgba(102, 126, 234, 0.3);
}


.nav_container {
               max-width: 1200px;
    margin: 0 auto;
   display: flex;
               justify-content    : space-between;
 align-items: center;
	 padding: 0 2rem;
}

.company_logo {


    height: 45px;
  width: auto;
	}

.desktop_menu{
  display: flex;
                    gap: 2rem;
}

.nav_link {
  color: white;
	text-decoration: none;
         font-weight: 500;
    padding    :      0.5rem 1rem;
   border-radius: 25px;
  transition: all 0.3s ease;
}

.nav_link:hover, .active_link {

	  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);}

.burger_menu {
	display: none;
  flex-direction: column;
   cursor: pointer;
                    gap: 4px;
}

.burger_line {
   width: 25px;
    height :  3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile_menu


{
  display: none;
  background: rgba(102, 126, 234, 0.95);
  padding: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
}

.mobile_nav_link {
    display:block;
      color: white;
   text-decoration:       none;
  padding    :       0.75rem 1rem;
  border-radius: 8px;
   margin-bottom: 0.5rem;
   transition: background 0.3s;
}

.mobile_nav_link:hover {
  background: rgba(255, 255, 255, 0.1);
}@media (max-width: 768px) {
    .desktop_menu {
        display: none;
    }

    .burger_menu {
        display: flex;
    }

    .mobile_menu.show {
        display: block;
    }
}.hero_section  {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	 padding: 8rem 2rem 4rem;
  margin-top: 70px;
}

.hero_content {
    max-width: 1200px;
  margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap:   3rem;
    align-items: center;
}

.hero_text h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
   color: #2c3e50;
          margin-bottom: 1.5rem;
   font-weight: 700;
  line-height: 1.2;
}

.hero_description {
    font-size: 1.2rem;
   color : #5a6c7d;
  margin-bottom  : 2rem;
   line-height:       1.7;
}

.hero_buttons {
   display: flex;
      gap: 1rem;
   flex-wrap: wrap;
	}

.primary_btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding:1rem 2rem;
   text-decoration: none;
    border-radius:50px;
    font-weight  : 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	
}

.primary_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.secondary_btn  
  {
    background: transparent;
	color: #667eea;
   padding: 1rem 2rem;
  text-decoration: none;
	border: 2px solid #667eea;
    border-radius:      50px;
  font-weight: 600;
   transition: all 0.3s ease;
}

.secondary_btn:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.hero_image img {
    width :        100%;
   height: auto;
   border-radius:   20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);


}@media (max-width: 768px) {
    .hero_content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero_buttons {
        justify-content: center;
    }
}.about_intro {
  padding: 5rem 2rem;
  background: white;
}

.section_wrapper {
  max-width:       1200px;
  margin     :  0 auto;
}

.intro_grid {


    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:    4rem;
   align-items: center;
     }

.intro_text h2 {
   font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom    :      1.5rem;
  font-weight: 700;
}

.intro_text p {


   font-size: 1.1rem;
     color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
	}

.stats_row {
	display: flex;
  gap: 2rem;
}



.stat_item {
    text-align: center;
}

.stat_number {
  display: block;
	   font-size: 2.5rem;
	  font-weight: 700;
	   color: #667eea;
	  margin-bottom: 0.5rem;
}

.stat_label {
    color: #5a6c7d;
   font-size: 0.9rem;
}

.intro_image img {
  width     :     100%;
   border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .intro_grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.services_section    {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section_title{
   text-align: center;
   font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 3rem;
    font-weight: 700;
}

.services_grid {
	display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
   gap: 2rem; 
   margin-top   :       3rem;
}

.service_card   {
    background: white;
  border-radius   :       20px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service_card:hover     {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service_header h3 {
	    color: #2c3e50;
    font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;}

.service_content p{
   color: #5a6c7d;
   margin-bottom: 1.5rem;
   line-height: 1.6;
}

.service_features {

	    list-style: none;
	}

.service_features li {
   color: #5a6c7d;
  padding :        0.5rem 0;
    position :     relative;
    padding-left: 1.5rem;
}

.service_features li::before {
  content: "✓";
    color   :    #667eea;
  font-weight: bold;
    position: absolute;
   left: 0;
}

.cta_section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
   display: flex;
    align-items: center;
    max-width  :1200px;
					margin: 0 auto;
   border-radius: 20px;
     margin-top: 3rem;
    margin-bottom: 3rem;
   color: white;
    gap: 3rem; 

}

.cta_content {
  flex     :      1;
}

.cta_content h2 {
  font-size: 2.2rem;
   margin-bottom: 1rem;
  font-weight: 700;
}

.cta_content p {
  font-size: 1.1rem;
    margin-bottom     : 2rem;
    opacity: 0.9;
   line-height: 1.6;
}

.cta_button

{
  background: white;
   color: #667eea;
    padding: 1rem 2rem;
   text-decoration: none;
    border-radius: 50px;
          font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.cta_image_wrapper {
	flex: 1;
}

.cta_image_wrapper img {
  width: 100%;
 border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}@media (max-width: 768px) {
    .cta_section {
        flex-direction: column;
        text-align: center;
    }
}.testimonials {
  padding: 5rem 2rem;
  background: white;
}

.testimonials_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial_card {
	border-left: 4px solid #667eea;
	  position     :   relative;
		border-radius: 15px;
	      padding: 2rem;
		background: #f8f9fa;
}

.testimonial_card p		{
   font-style: italic;
    margin-bottom: 1.5rem;
    color: #2c3e50;
   line-height :    1.6;
}

.testimonial_author   {
    display: flex;
    flex-direction  :  column;
}

.author_name {
   font-weight:600;
    color: #2c3e50; 

}

.author_position {
   color: #5a6c7d;
          font-size: 0.9rem;
}

.process_section    {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process_steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step_item {


  background: white;
  padding: 2rem;
    border-radius: 15px;
               text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step_item:hover {

  transform: translateY(-5px);
}

.step_number  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color   :      white;
       width: 60px;
  height: 60px;
  border-radius: 50%;
     display: flex;
    align-items: center;
  justify-content: center;
         font-size: 1.5rem;
  font-weight: 700;
    margin     :  0 auto 1.5rem;
}

.step_item h3 {
    color: #2c3e50;
     margin-bottom: 1rem;
         font-weight: 600;
}

.step_item p {
   color: #5a6c7d;
    line-height     :1.6;
}

.contact_section {
  padding     :   5rem 2rem;
   background: white;
}

.contact_grid {


    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
   margin-top: 2rem;


} 

.contact_info h2 {
         color: #2c3e50;
    font-size  :     2.2rem;
      margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact_info p {
   color: #5a6c7d;
   margin-bottom: 2rem;
  line-height: 1.6;
}

.contact_details
{
   margin-bottom: 2rem;
}

.contact_item {
   display: flex;
    margin-bottom: 1rem;
    gap: 1rem;
}

.contact_label {
		 font-weight: 600;
 color: #2c3e50;
    min-width :       80px;
}

.contact_value {


  color: #5a6c7d;
     }

.contact_image img     {
       width: 100%;
   border-radius :    15px;
   margin-top: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); 



}

.contact_form_wrapper {
	background: #f8f9fa;
   padding: 2rem;
   border-radius : 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form_group {
  margin-bottom: 1.5rem;
} 

.form_group label   {
    display:    block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
   font-weight: 500;
}

.form_group input,
.form_group select,
.form_group textarea {
  width: 100%;
   padding: 0.75rem;
   border: 2px solid #e9ecef;
  border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
       background: white;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
   outline: none;
       border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit_btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
  padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
               font-size: 1rem;
  font-weight: 600;
    cursor: pointer;
  transition :    all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}  

.submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}@media (max-width: 768px) {
    .contact_grid {
        grid-template-columns: 1fr;
    }
}.main_footer {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
   padding: 3rem 2rem 1rem;
   position: relative;
   overflow: hidden;
}

.footer_content
	{
    max-width: 1200px;
  margin: 0 auto; 
	
}

.footer_main {
  display: grid;
    grid-template-columns: 1fr 2fr;
	 gap: 3rem;
    margin-bottom  :     2rem;
}

.footer_logo {
  height:   50px;
  margin-bottom     :   1rem;
  filter: brightness(0) invert(1);
}

.footer_description {
  color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
 margin-bottom: 1rem;
}

.footer_links {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap    :    2rem;
}

.footer_column h4 {
   margin-bottom: 1rem;
    font-weight: 600;
}

.footer_column ul {
      list-style: none;

}

.footer_column li {
    margin-bottom: 0.5rem;
}

.footer_column a {
  color: rgba(255, 255, 255, 0.8);
    text-decoration     :     none;
  transition: color 0.3s ease;
}

.footer_column a:hover {
  color: white;
}

.footer_contact p {
  color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer_bottom {
    text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.startup_showcase {
    position: absolute;
  bottom: -50px;
  right: 2rem;
   opacity: 0.1;
}

.startup_showcase img {
   width: 200px;
  height    :       auto;
  border-radius: 15px;
}@media (max-width: 768px) {
    .footer_main {
        grid-template-columns: 1fr;
    }

    .footer_links {
        grid-template-columns: 1fr;
    }

    .startup_showcase {
        display: none;
    }
}.about_hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 8rem 2rem 4rem;
   margin-top: 70px;
}

.about_hero_content {
   max-width   :    1200px;
  margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items   :      center;
}

.about_hero_text h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #2c3e50;
      margin-bottom: 1.5rem;
     font-weight: 700;
  line-height: 1.2;
}

.about_hero_subtitle {


    line-height: 1.7;
   font-size   :1.2rem;
    color  :    #5a6c7d;
    font-style: italic;}

.about_hero_image img {
    width: 100%;
    height :       auto;
   border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .about_hero_content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.company_story {
  padding: 5rem 2rem;
  background: white;
}

.story_content  
  {
    display: grid;
   gap  :        4rem;
  align-items: start;
  grid-template-columns: 2fr 1fr;
}

.story_text h2 {
  margin-bottom: 2rem;
 font-size: 2.5rem;
    color: #2c3e50;
  font-weight: 700;
}

.story_text p {
                       font-size: 1.1rem;
  color: #5a6c7d;
    margin-bottom   :     1.5rem;
  line-height: 1.7;
  text-align: justify;

}

.founding_principles {
  padding: 2rem;
  background: #f8f9fa;
    border-radius: 15px;
   margin-top: 2rem;
   border-left: 4px solid #667eea;
} 

.founding_principles h3 {

   color: #2c3e50;
   margin-bottom: 1rem;
  font-weight: 600;}

.principles_list {
   list-style: none;
   padding   :     0; 
	
}

.principles_list li {
   color: #5a6c7d;
	padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.principles_list li::before {
  content: "→";
   color: #667eea;
   font-weight: bold;
    position: absolute;
  left: 0;
}

.story_image img

{
  width: 100%;
    border-radius:      15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
   position    :     sticky;
    top: 2rem;
}@media (max-width: 768px) {
    .story_content {
        grid-template-columns: 1fr;
    }

    .story_image img {
        position: static;
    }
}.mission_vision {
    padding   :    4rem 2rem;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color: white;
}

.mission_vision_grid {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   max-width: 1000px;
         margin: 0 auto;
}

.mission_block, .vision_block {
	text-align   :        center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
  backdrop-filter: blur(10px);
}

.mv_icon {
	    width: 80px;
    height: 80px;
   background: white;
   color: #667eea;
         border-radius: 50%;
	display   :flex;
  align-items: center;
  justify-content: center;
	font-size: 2rem;
	 font-weight: 700;
    margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.mission_block h3, .vision_block h3 {
	  font-size: 1.8rem;
	 margin-bottom: 1rem;
	font-weight     :      600;

     }

.mission_block p, .vision_block p {
	 line-height: 1.6;
   opacity: 0.9;
}@media (max-width: 768px) {
    .mission_vision_grid {
        grid-template-columns: 1fr;
    }
}.team_expertise {
   padding: 5rem 2rem;
   background: #f8f9fa;
}

.expertise_grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap  :      2rem;
   margin-top: 3rem;
}

.expertise_card {
    background: white;
  padding: 2rem;
    border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition  :     transform 0.3s ease;
   border-top: 4px solid #667eea;
}

.expertise_card:hover {
  transform: translateY(-5px);
}

.expertise_card h4 {

   color :        #2c3e50;
   font-size: 1.3rem;
   margin-bottom: 1rem;
  font-weight: 600;
}

.expertise_card p {
        color: #5a6c7d;
    line-height: 1.6;
}

.approach_methodology {

	    padding: 5rem 2rem;
  background   :      white;
	}

.approach_content
	{
  display: grid; 
		 grid-template-columns  : 1fr 1fr; 
	  gap: 4rem; 
	      align-items :      center;
}

.approach_text h2 {
   font-size: 2.5rem;
	color: #2c3e50;
   margin-bottom: 1.5rem;
        font-weight: 700;
}

.approach_text p {
    color     : #5a6c7d;
   font-size: 1.1rem;
    margin-bottom: 2rem;
   line-height: 1.7;
}

.methodology_steps {
     margin-top: 2rem;
}

.method_step {
   display: flex;
   gap  :     1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step_marker {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   width: 40px;
  height: 40px;
                    border-radius: 50%;
   display: flex;
    align-items: center;
   justify-content: center;
   font-weight: 700;
    flex-shrink:        0;
    margin-top:    0.2rem;}

.step_content h4 {
    color: #2c3e50;
   margin-bottom: 0.5rem;
				 font-weight: 600;
}

.step_content p 
 {
   color: #5a6c7d;
  line-height: 1.6;
    margin: 0;
}

.approach_image img {
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .approach_content {
        grid-template-columns: 1fr;
    }
}.values_section {
  padding: 5rem 2rem;
  background: #f8f9fa;
}

.values_grid {
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

   margin-top: 3rem;
}

.value_item {
   background: white;
  padding: 2rem;
   border-radius: 15px;
   text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value_item h4 {


	 color  :     #667eea;
  font-size: 1.4rem;
    margin-bottom: 1rem;
  font-weight     :    600;
}

.value_item p {
  color: #5a6c7d;
  line-height: 1.6;
}


.commitment_section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
  text-align: center;
}

.commitment_content {
    max-width     :800px;
   margin: 0 auto;
}

.commitment_content h2 {
                       font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.commitment_content p {
   font-size: 1.2rem;
   line-height :  1.7;
	 margin-bottom: 3rem;
   opacity   :   0.9;
}

.commitment_image img {
    width: 100%;
  max-width: 600px;
    border-radius    :  20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.thankyou_main {
  min-height: calc(100vh - 140px);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
   align-items: center;
   padding: 2rem;
   margin-top: 70px;
}

.thankyou_container {

	    max-width: 800px;
    margin: 0 auto;
  width: 100%;
	}

.thankyou_content {
  background: white;
    padding: 3rem;
   border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
	text-align    : center;
}

.success_icon{
   margin-bottom :       2rem;
}

.checkmark_circle {
   width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  border-radius: 50%;
   display: flex;
  align-items: center;
    justify-content: center;
   margin: 0 auto;
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.checkmark {
  width: 30px;
    height: 20px;
  border-left: 4px solid white;
    border-bottom: 4px solid white;
  transform: rotate(-45deg);
  margin-top: -5px;

}

.thankyou_title {
		 font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
  font-weight :  700;
}

.thankyou_message {
    font-size: 1.2rem;
    color: #5a6c7d;
   margin-bottom: 3rem;
    line-height: 1.7;
}

.next_steps {

   text-align    :   left;
    margin    :  3rem 0;
    padding: 2rem;
   background: #f8f9fa;
  border-radius: 15px;
	}

.next_steps h2   {
   color: #2c3e50;
  font-size: 1.8rem;
   margin-bottom     :   2rem;
	 text-align:       center;
	 font-weight: 600;
}

.steps_list {


   display: flex;
   flex-direction :        column;
  gap: 1.5rem;
     }

.next_steps .step_item {
  display: flex;
    gap: 1rem;
   align-items: flex-start;
}

.next_steps .step_number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width    :    35px;
   height: 35px;
   border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
   flex-shrink: 0;
  margin-top  :        0.2rem;

}

.next_steps .step_text h3 {
     color: #2c3e50;
   margin-bottom: 0.5rem;
   font-weight: 600;
     }  

.next_steps .step_text p {
   color: #5a6c7d;
   line-height: 1.6;
   margin: 0;
}

.additional_info {
  background: #e8f4f8;
   padding: 1.5rem;
	border-radius: 10px;
   margin: 2rem 0;
   border-left: 4px solid #3498db;
}

.additional_info h3 {
    color: #2c3e50;
   margin-bottom: 1rem;
   font-weight: 600;
}

.additional_info p {
   color: #5a6c7d;
  line-height: 1.6;
    margin: 0; 
	
}

.thankyou_actions {
    display: flex;
       gap: 1rem;
  justify-content: center;
   margin: 2rem 0;
   flex-wrap   :      wrap;
}

.success_image {
         margin-top: 2rem;
}

.success_image img {
	width: 100%;
  max-width: 400px;
   border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .thankyou_content {
        padding: 2rem;
    }

    .thankyou_title {
        font-size: 2rem;
    }

    .thankyou_actions {
        flex-direction: column;
        align-items: center;
    }

    .thankyou_actions .primary_btn,
    .thankyou_actions .secondary_btn {
        width: 100%;
        text-align: center;
    }
}.intro_text p {
       line-height: 1.7;
   color: #5a6c7d;
   margin-bottom: 1.5rem;


}

.section_title {
    text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 2rem;
  font-weight: 700;
}