* {
   margin: 0;
   padding :       0;
   box-sizing: border-box;

}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
   color     :  #333;
    background-color: #fafafa;
}

.container {
   max-width :     1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main_navigation  
  {
    background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: fixed;
  top: 0;
  width: 100%;
      z-index: 1000;
}

.nav_wrapper {
  display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
	max-width: 1200px;
   margin: 0 auto;
}

.site_logo {
		 height: 45px;
        width: auto;


}

.navigation_links {
  display: flex;

	    gap: 2rem;
}

.nav_item {
                    text-decoration: none;
   color: #333;
  font-weight: 500;
    transition: color 0.3s ease;
                    position: relative;
}

.nav_item:hover,
.nav_item.active {
  color: #2c5aa0;
}


.nav_item.active::after 
 {


  content: '';
   position: absolute;
  bottom    :   -5px;
   left: 0;
   width: 100%;
   height: 2px;
   background: #2c5aa0;
     }

.burger_menu {
  display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger_menu span {
	  width: 25px;
    height: 3px;
    background: #333;
  transition: 0.3s;
     }

.hero_section {
   margin-top: 80px;
         padding: 4rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);


}

.hero_content {
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
}

.text_content h1 {
   margin-bottom: 1.5rem;
	line-height: 1.2;
   color: #1a365d;
  font-size: 2.8rem;
}  

.hero_description {
  font-size    :  1.2rem;

	  color: #4a5568;

	   margin-bottom     :    2rem;

	  line-height: 1.6;
}

.hero_buttons {
    display: flex;
     gap: 1rem;
     flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
   border: none;
  border-radius: 6px;
  text-decoration: none;
    font-weight: 600;
   transition: all 0.3s ease;
  cursor: pointer;
  display    :       inline-block;
    font-size: 1rem;
}

.primary_btn {
	background     :    #2c5aa0;
  color: white;
}

.primary_btn:hover {

   background :      #1e3a8a;
  transform: translateY(-2px); 

	}

.secondary_btn	{
	background: transparent;
   color: #2c5aa0;
   border: 2px solid #2c5aa0;
}

.secondary_btn:hover {
  background: #2c5aa0;
  color:    white;
}

.large_btn     {
               font-size: 1.1rem;
       padding: 16px 32px;
}

.main_hero_img {
	 width: 100%;
  height  :   auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.features_section

{

	    padding: 5rem 0;
  background: #fff;
     }

.features_section h2 {
    text-align    :center;
  font-size    :   2.5rem;
               color: #1a365d;
   margin-bottom: 3rem;
}

.features_grid {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2rem;
}

.feature_card {
    background: #fff;
  border-radius: 10px;
   padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align :   center;
}

.feature_card:hover {
  transform: translateY(-5px);
}

.feature_card img {
	    width: 100%;
   height    :200px;
               object-fit: cover;
    border-radius:   8px;
               margin-bottom     : 1.5rem;} 

.feature_card h3 {

		font-size: 1.4rem;
   color: #1a365d;
   margin-bottom: 1rem;

}

.feature_card p {
  color: #4a5568;
      line-height: 1.6;
}

.about_preview {
  padding: 5rem 0;
    background: #f8fafc;
}

.about_content {
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;

}

.about_text h2 {
   font-size: 2.3rem;
  color: #1a365d;
    margin-bottom: 1.5rem;
}

.about_text p {
   color: #4a5568;
  margin-bottom: 1.5rem;
   font-size: 1.1rem;
  line-height: 1.7;
}

.stats_row

{
   display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat_item {
   text-align: center;
}

.stat_number {
   display: block;
    font-size: 2rem;
    font-weight :  bold;
   color: #2c5aa0;
} 

.stat_label {
  display: block;
  color: #4a5568;
   font-size: 0.9rem;
}

.about_image img{
  width: 100%;
   height:       auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta_section {
  padding: 4rem 0;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   	color: white;
     text-align: center;

}

.cta_content h2 {
 font-size: 2.5rem;
    margin-bottom: 1.5rem;

}

.cta_content p

{
         font-size: 1.2rem;
    margin-bottom: 2rem;
         max-width     :600px;
   margin-left: auto;
   margin-right: auto;
				 line-height: 1.6;
}

.contact_section {
    padding: 5rem 0;
  background: #fff;
}

.contact_section h2 {
    text-align: center;
   font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 3rem;
}

.contact_wrapper
{
  display: grid;
	 grid-template-columns: 1fr 1fr;
                    gap  :     3rem;
     }

.contact_info h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 2rem;
}

.contact_item 
 {
    margin-bottom     :        2rem;
}

.contact_item strong {
   color: #2c5aa0;
	display: block;
  margin-bottom: 0.5rem;
}

.contact_form {
      background: #f8fafc;
   padding     :   2rem;
  border-radius  :    10px;
}

.form_group {
  margin-bottom: 1.5rem;
}

.form_group label {
  display: block;
   margin-bottom: 0.5rem;
    color: #333;
  font-weight: 500;
}

.form_group input,
.form_group select,
.form_group textarea {
   width  :   100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus		{
  border-color: #2c5aa0;
  outline: none;
}

.site_footer {

   background: #1a365d;

    color: white;

    padding: 3rem 0 1rem 0;

}

.footer_content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
     margin-bottom: 2rem; 

}

.footer_logo {
   height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
    margin-bottom   :     1rem;
}

.footer_section h4 {
  margin-bottom: 1rem;
   color: #64b5f6;
}

.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 0.5rem;
} 

.footer_links a  
  {
   color: #b0c4de;
       text-decoration: none;
    transition: color 0.3s ease;
}

.footer_links a:hover {
   color: white;
}

.footer_bottom {
  border-top    :1px solid #2d3748;
    padding-top: 1rem;
                    text-align: center;
          color: #b0c4de;
}@media (max-width: 768px) {
    .navigation_links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .navigation_links.active {
        left: 0;
    }

    .burger_menu {
        display: flex;
    }

    .burger_menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger_menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger_menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero_content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .text_content h1 {
        font-size: 2.2rem;
    }

    .hero_buttons {
        justify-content: center;
    }

    .about_content {
        grid-template-columns: 1fr;
    }

    .stats_row {
        justify-content: center;
    }

    .contact_wrapper {
        grid-template-columns: 1fr;
    }

    .cta_content h2 {
        font-size: 2rem;
    }

    .cta_content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav_wrapper {
        padding: 1rem;
    }

    .text_content h1 {
        font-size: 1.8rem;
    }

    .hero_description {
        font-size: 1.1rem;
    }

    .features_section h2,
    .contact_section h2 {
        font-size: 2rem;
    }

    .stats_row {
        flex-direction: column;
        gap: 1rem;
    }
}.about_hero {
    margin-top: 80px;
    padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
     text-align: center;
}

.about_hero_content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  line-height: 1.2;
}  

.about_lead {
    font-size     :   1.3rem;
  max-width: 800px;
   margin  : 0 auto;
   line-height: 1.6;
   opacity: 0.95;
}



.our_story {
   background: #fff;
	 padding    :5rem 0;
}

.story_content {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: start;
}

.story_text h2 {
  font-size: 2.3rem;
   color   :       #1a365d;
   margin-bottom: 2rem;
}

.story_text p  
  {
    color: #4a5568;
   margin-bottom: 1.5rem;
    font-size: 1.1rem;
   line-height: 1.7;
}

.story_image img {
  width: 100%;
    height :     auto;
   border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.our_approach {
	    padding: 5rem 0;
  background: #f8fafc;
     }

.our_approach h2 {
   text-align: center;
   font-size: 2.5rem;
        color: #1a365d;
   margin-bottom: 3rem;
}

.approach_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.approach_item {
   background: white;
    padding    :        2rem;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.approach_item:hover {
  transform: translateY(-5px);
}

.approach_number {
	position: absolute;
   top: -15px;
  left: 2rem;
    background: #2c5aa0;
    color :       white;
  width: 40px;
   height: 40px;
   border-radius: 50%;
		display: flex;
   align-items: center;
    justify-content: center;
      font-weight: bold;
  font-size: 1.1rem;
}

.approach_item h3 {
   margin-top: 1rem;
   margin-bottom: 1rem;
	color: #1a365d;
   font-size    : 1.3rem;
}

.approach_item p {
      color     :        #4a5568;
  line-height: 1.6;
}

.team_section {
   padding: 5rem 0;
   background: white;

}

.team_section h2 {
    font-size: 2.5rem;
  text-align: center;
   margin-bottom: 2rem;
    color   :#1a365d;


     } 

.team_intro {

	    max-width: 800px;
 margin: 0 auto 3rem auto;
    text-align: center;


}

.team_intro p {
 font-size:        1.2rem; 
	    color: #4a5568; 
	    line-height: 1.7;
}

.team_highlights {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;

}

.highlight_item {


   text-align: center;
    padding: 1.5rem;
}

.highlight_item img {
    width: 100%;
    height   :   200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.highlight_item h3 {
   color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight_item p {
    color: #4a5568;
  line-height: 1.6;
}

.numbers_section {
   padding: 5rem 0; 
    background    :  #f8fafc;
}

.numbers_section h2 {

	 text-align: center;
  font-size: 2.5rem;
         color     :       #1a365d;
  margin-bottom     :    3rem;

}

.numbers_grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;
}

.number_item {
    text-align: center;
   background: white;
   padding: 2rem;
        border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.big_number

{
  display: block;
  font-size: 3rem;
	font-weight:        bold;
   color: #2c5aa0;
    margin-bottom   :       0.5rem;
}

.number_label {
   display: block;
  font-weight: 600;
    color: #1a365d;
        margin-bottom: 1rem;
    font-size: 1.1rem;
}

.number_item p {
   color: #4a5568;
    line-height: 1.6;
   font-size :        0.95rem;
}

.methodology_section {
    padding: 5rem 0;
    background: white;
}

.methodology_content {
     display: grid;
  grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;

}



.methodology_text h2 {
	font-size    :       2.3rem;
			color: #1a365d;
  margin-bottom: 2rem;
}

.methodology_text h3 {
  color: #2c5aa0;
  margin-top: 2rem;
   margin-bottom: 1rem;
  font-size: 1.3rem;
}

.methodology_text p
	{
  color:      #4a5568;

       margin-bottom: 1.5rem;

    line-height: 1.7;

	font-size: 1.05rem;
	
}

.methodology_image img {
    width: 100%;
    height     :   auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta_about {
   padding: 4rem 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color    : white;
  text-align :   center;
}

.cta_about h2 {
   font-size     :2.5rem;
     margin-bottom: 1.5rem;
}

.cta_about p {
   font-size: 1.2rem;
   margin-bottom: 2rem;
    max-width: 600px;
  margin-left: auto;
     margin-right   :       auto;
   line-height: 1.6;
}

.thankyou_hero {
  margin-top: 80px;
         padding: 5rem 0;
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
    text-align: center;
}

.thankyou_content h1    {


   font-size: 2.8rem; 
	   margin-bottom: 1.5rem;
     }

.thankyou_message {
  font-size: 1.3rem;
	max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

.success_icon {
  margin-bottom: 2rem;
}

.checkmark {
    display: inline-block;
   width: 80px;
   height: 80px;
    position: relative;
}


.checkmark_circle {
 position: absolute;
  top: 0;
	left: 0;
    width: 80px;
    height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 3px solid white;
  animation: checkmark-circle 0.6s ease-in-out;
}

.checkmark_stem {
 position: absolute;
  width:     20px;
  height: 3px;
          background: white;
   left: 25px;
  top: 40px;
  transform: rotate(45deg);
  animation     :   checkmark-stem 0.4s ease-in-out 0.3s both;
}

.checkmark_kick {
  position     :        absolute;
  width: 12px;
   height: 3px;
	background: white;
  left: 35px;
    top: 45px;
  transform: rotate(-45deg);
    animation: checkmark-kick 0.2s ease-in-out 0.5s both;
}@keyframes checkmark-circle {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes checkmark-stem {
    0% { width: 0; }
    100% { width: 20px; }
}

@keyframes checkmark-kick {
    0% { width: 0; }
    100% { width: 12px; }
}.next_steps {
	 padding: 5rem 0;
    background:      white;
}

.next_steps h2 {
  text-align: center;
    font-size     :    2.5rem;
   color: #1a365d;
	margin-bottom: 3rem;
}

.steps_timeline {

   max-width  :       800px;
  margin: 0 auto;
   position: relative;
	}


.steps_timeline::before {
  content: '';

  position: absolute;

  left: 30px;

  top:    0;

  bottom: 0;

   width: 2px;

  background: #e2e8f0;
}

.step_item


{
	   display: flex;
   margin-bottom   :       3rem;
					position: relative;


}

.step_number {
   width: 60px;
  height: 60px;
  background  :   #2c5aa0;
     color: white;
   border-radius: 50%;
	display: flex;
   align-items: center;
    justify-content: center;
   font-weight: bold;
  font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink   :      0;
   z-index: 1;
   position: relative;
}

.step_content h3 {
        color: #1a365d;
   margin-bottom     :  0.5rem;
  font-size: 1.3rem;
}

.step_content p {
  color: #4a5568;
  line-height: 1.6;
    margin-bottom: 0.5rem;
}

.step_time {
   color   :        #2c5aa0;
    font-size: 0.9rem;
    font-weight: 600; 

}

.testimonial_preview {
    padding:      5rem 0;
   background: #f8fafc;
}

.testimonial_preview h2     {
   text-align: center;
   font-size :    2.5rem;
       color: #1a365d;
    margin-bottom  :       3rem;
}

.testimonials_grid {
   	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:  2rem;
	}

.testimonial_card {

	  background: white;
	padding     :        2rem;
      border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;}

.testimonial_card::before  {
  content: '"';
    position:        absolute;
   top: -10px;
   left: 20px;
	font-size: 4rem;
   color: #2c5aa0;
  opacity: 0.3;
}

.testimonial_card p {
   color:     #4a5568;
    line-height: 1.7;
  margin-bottom: 1.5rem;
    font-style: italic;
	
}

.testimonial_author strong {
   display: block;
    color: #1a365d;
    margin-bottom: 0.2rem;
}

.testimonial_author span {
  color: #718096;
  font-size: 0.9rem;
}

.resources_section {
	padding: 5rem 0;

    background: white;
}

.resources_section h2 {
  text-align: center;
   font-size: 2.5rem;
   color: #1a365d;
    margin-bottom: 2rem;
}

.resources_intro {
   text-align: center;
   max-width: 700px;
  margin: 0 auto 3rem auto;
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
}

.preparation_questions {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
	
}

.question_group {
    background     :    #f8fafc;
     padding: 2rem;
   border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.question_group h3 {
     color: #1a365d;
    margin-bottom: 1rem;
  font-size   :      1.3rem;

     }

.question_group ul {
               list-style: none;
   padding: 0;
}

.question_group li {
  color: #4a5568;
   margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
   line-height: 1.5;
}

.question_group li::before {
  content: '?';
	 position: absolute;
		 left: 0;
	       color: #2c5aa0;
	  font-weight: bold;
}

.emergency_contact {
    padding: 4rem 0;
  background: #fed7d7;
   border-top: 3px solid #e53e3e;
}  

.emergency_info h2 {
  color: #742a2a; 
    margin-bottom: 1rem; 
    font-size: 2rem;
}

.emergency_info p {
       color: #742a2a;
  margin-bottom: 2rem;
    font-size   :  1.1rem;
   line-height: 1.6;


} 

.emergency_details {

  display: flex;
    gap    :  3rem;
  flex-wrap: wrap;

}


.contact_method strong {
   display: block;
  color: #742a2a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact_method span {
  color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
}@media (max-width: 768px) {
    .about_hero_content h1 {
        font-size: 2rem;
    }
    
    .about_lead {
        font-size: 1.1rem;
    }
    
    .story_content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .methodology_content {
        grid-template-columns: 1fr;
    }
    
    .thankyou_content h1 {
        font-size: 2.2rem;
    }
    
    .thankyou_message {
        font-size: 1.1rem;
    }
    
    .steps_timeline::before {
        display: none;
    }
    
    .emergency_details {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .approach_grid {
        grid-template-columns: 1fr;
    }
    
    .numbers_grid {
        grid-template-columns: 1fr;
    }
    
    .big_number {
        font-size: 2.5rem;
    }
    
    .step_item {
        flex-direction: column;
        text-align: center;
    }
    
    .step_number {
        margin: 0 auto 1rem auto;
    }
}