* {
      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;
}

.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(0,0,0,0.1);
}

.nav_wrapper {
  max-width: 1200px;
  margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items :    center;
  padding: 0 2rem;
}



.nav_logo {
               height: 45px;
	width: auto;
}

.menu_items {
     display: flex;
  gap    : 2.5rem;
}

.nav_link {
   color  :white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
    font-size: 1.1rem;
}

.nav_link:hover {
   color  :      #ffd700;
  transform: translateY(-2px);
}

.burger_menu 
 {
     display: none;
    flex-direction: column;
       cursor: pointer;
  gap: 4px;
}

.burger_line {
  width: 25px;
   height: 3px;
  background-color: white;
          transition: 0.3s; 

}

.mobile_nav {
  display: none;
  background: rgba(102, 126, 234, 0.95);
  position: fixed;
    top: 77px;
	left: 0;
   width     :       100%;
      padding: 1rem 0;
    z-index: 999;
}

.mobile_nav.active {
   display: block;
}

.mobile_link {
   display: block;
	color: white;
    text-decoration    :  none;
        padding: 0.75rem 2rem;
    font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile_link:hover {
  background-color: rgba(255,255,255,0.1);
}

.hero_section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  min-height  :   100vh;
   display: flex;
      align-items: center;
  padding-top: 77px; 
	
}

.hero_content_wrapper {
  max-width: 1200px;
  margin: 0 auto;
	display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
  padding: 0 2rem;
}

.hero_text_area h1 {


    font-size     :3.5rem;
  color: white;
    margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
     }

.hero_description {
  color: rgba(255,255,255,0.9);
  font-size  :    1.3rem;
   margin-bottom    :      2rem;
    line-height: 1.7;
}

.hero_buttons {
    display :        flex;
   gap: 1.5rem;
}

.primary_button {
    background: #ff6b6b;
         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(255,107,107,0.3); 

}

.primary_button:hover {
   background: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255,107,107,0.4);
}

.secondary_button {
	    background     :transparent;
    color: white;
  padding: 1rem 2rem;
  text-decoration     :    none;
    border: 2px solid white;
   border-radius: 50px;
  font-weight: 600;
   transition: all 0.3s ease;


}

.secondary_button:hover		{
    background   :        white;
   color  :       #f5576c;
  transform: translateY(-3px);
}

.hero_image_container{
  display: flex;
       justify-content: center;
}

.hero_image {
                    width  :  100%;
   max-width: 500px;
    height: auto;
   border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);

}

.content_container {
	 max-width: 1200px;
  margin: 0 auto;
	padding: 0 2rem;
}

.expertise_showcase {
      padding: 5rem 0;
   background     :      white;
}

.expertise_showcase h2 {
   text-align: center;
    font-size: 2.8rem;
   margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.benefits_grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap  :      2.5rem;
   margin-top: 3rem;}

.benefit_card {
     background: #f8f9ff;
  padding: 2.5rem;
   border-radius: 15px;
  text-align    :  center;
    transition: all 0.3s ease;
   border :   1px solid #e3e8ff;
}

.benefit_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102,126,234,0.15);
}

.benefit_card h3 {
    font-weight: 600;
   margin-bottom: 1rem;
    font-size: 1.6rem;
  color: #667eea;
}

.benefit_card p {
   color: #666;
               font-size: 1.1rem;
  line-height: 1.7;
} 

.services_area {
  padding: 5rem 0;
    background: #f8f9fa;
}

.services_area h2


{
	text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
  color:       #333;
	 font-weight: 700;
}

.services_layout {
  display: grid;
  gap: 3rem;
}

.service_item 
 {
	 display: grid;
  grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
  align-items: center;
   background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
}

.service_item:hover


{
  transform: translateY(-5px);

  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service_item:nth-child(even) {
  grid-template-columns: 1.5fr 1fr;
}

.service_item:nth-child(even) .service_image
	{
    order: 2;
}

.service_item:nth-child(even) .service_content {

	    order: 1;}

.service_image {
     width: 100%;
   height: 300px;
  object-fit: cover;}

.service_content {
  padding: 2.5rem;
}

.service_content h3 {
	 font-size: 1.8rem;
     color: #333;
     margin-bottom: 1rem;
             font-weight: 600;
}  

.service_content p {
	 color   :        #666;
  margin-bottom  :      1.5rem;
   font-size: 1.1rem;
   line-height: 1.6;
}

.service_features {
    list-style: none;
}

.service_features li {
    padding: 0.5rem 0;
    color: #667eea;
   font-weight     :    500;
     position: relative;
  padding-left: 1.5rem;
}

.service_features li:before {
    left: 0;
  color: #4CAF50;
   font-weight: bold;
    position: absolute;
  content: '✓';
}

.transformation_section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
}

.transformation_content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
   gap: 3rem;
  align-items   :center;
}

.transformation_text h2 {
  font-size: 2.8rem;
    margin-bottom: 2rem;
   font-weight: 700;
}

.transformation_text p {
   font-size: 1.2rem;
               line-height: 1.7;
   margin-bottom: 1.5rem;
   opacity: 0.95;
}

.transform_image {
   width:      100%;
        border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);


}

.cta_section {
	    padding: 4rem 0;
  background: #ff6b6b;
	text-align: center;
    color: white;}

.cta_content h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta_content p {
   font-size: 1.3rem;
       margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta_button {
  background: white;
   color: #ff6b6b;
  padding: 1.2rem 2.5rem;
   text-decoration: none;
    border-radius: 50px;
   font-weight: 700;
  font-size: 1.1rem;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.contact_section  {
  padding: 5rem 0;
   background: #f8f9fa;
}

.contact_section h2 {
	  text-align: center;
          font-size: 2.8rem;
    margin-bottom   :   3rem;
   color :        #333;
   font-weight  :   700;


}

.contact_layout {
    grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
    display   :grid;
}

.contact_info h3 {
  color  :      #667eea;
  font-size: 1.6rem;
  margin-bottom: 2rem;
    font-weight   :600;
}

.contact_item {
    margin-bottom: 2rem;
}

.contact_item strong {
   display: block;
   font-size: 1.2rem;
                    margin-bottom: 0.5rem;
 color    :  #333;
}

.contact_item p {
  color: #666;
  font-size: 1.1rem;
   line-height: 1.6;
}

.contact_form {
 background: white;
  padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form_group {
   margin-bottom: 1.5rem;
}

.form_group label {

		 display: block;
   margin-bottom: 0.5rem;
   color: #333;
    font-weight: 600; 

	}

.form_group input,
.form_group select,
.form_group textarea {

   width: 100%;
         padding: 1rem;
       border: 2px solid #e0e6ed;
    border-radius: 10px;
		font-size: 1rem;
   transition: all 0.3s ease;
  font-family: inherit;
     }

.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);
}

.form_submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
  padding: 1.2rem 2.5rem;
   border: none;
  border-radius: 50px;
                    font-size: 1.1rem;
  font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
  width: 100%;
}

.form_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102,126,234,0.3);}

.main_footer {


  background: #2c3e50;
   color: white;
  padding: 3rem 0 1rem;}

.footer_content {
  max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    padding: 0 2rem;
                    margin-bottom: 2rem;
}

.footer_logo {
  height: 40px;
    width :    auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer_description {
  color: rgba(255,255,255,0.8);
   line-height: 1.6;
}

.footer_section h4 {


   margin-bottom: 1rem;
  color: #ffd700;
   font-weight: 600;
	}

.footer_links {
  list-style: none;
}

.footer_links li {
   margin-bottom: 0.5rem;
}

.footer_links a {
  color: rgba(255,255,255,0.8);
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer_links a:hover {

   color: #ffd700;
	}

.footer_bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
               padding-top: 1rem;
               text-align  :   center;
    max-width: 1200px;
    margin: 0 auto;
   padding-left: 2rem;
    padding-right: 2rem;
	}

.footer_bottom p {
  color: rgba(255,255,255,0.6);
  font-size    :    0.9rem;
}@media (max-width: 768px) {
    .burger_menu {
        display: flex;
    }
    
    .menu_items {
        display: none;
    }
    
    .burger_menu.active .burger_line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger_menu.active .burger_line:nth-child(2) {
        opacity: 0;
    }
    
    .burger_menu.active .burger_line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero_content_wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero_text_area h1 {
        font-size: 2.5rem;
    }
    
    .hero_buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .service_item {
        grid-template-columns: 1fr;
    }
    
    .service_item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service_item:nth-child(even) .service_image,
    .service_item:nth-child(even) .service_content {
        order: 0;
    }
    
    .transformation_content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact_layout {
        grid-template-columns: 1fr;
    }
    
    .benefits_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav_wrapper {
        padding: 0 1rem;
    }
    
    .content_container {
        padding: 0 1rem;
    }
    
    .hero_text_area h1 {
        font-size: 2rem;
    }
    
    .hero_description {
        font-size: 1.1rem;
    }
    
    .expertise_showcase h2,
    .services_area h2,
    .contact_section h2 {
        font-size: 2rem;
    }
    
    .transformation_text h2 {
        font-size: 2rem;
    }
    
    .cta_content h2 {
        font-size: 1.8rem;
    }
}.about_hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.about_hero_content h1 {

	    font-size: 3.2rem;
    margin-bottom: 1.5rem;
   font-weight: 700;
	}

.about_hero_desc {
  font-size: 1.4rem;
   max-width: 800px;
   margin: 0 auto;
  line-height: 1.7;
    opacity  :       0.95;
}

.story_section {
   padding: 5rem 0;
	background: white;
     }

.story_layout {
   display: grid;
  grid-template-columns   : 1.2fr 1fr;
   gap: 3rem;
    align-items: center;
}

.story_text h2 {


  font-size: 2.6rem;
   color    :       #333;
   margin-bottom: 2rem;
   font-weight: 700;}

.story_text p {
  font-size     :  1.1rem;
      color     :   #555;
   line-height: 1.8;
	margin-bottom: 1.5rem;
}

.story_image {
    width    :      100%;
	border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.values_section {
    padding: 5rem 0;
    background: #f8f9fa; 

}

.values_section h2{
  text-align: center;
	   font-size: 2.8rem;
	      color: #333;
	   margin-bottom: 3rem;
	   font-weight: 700;
}

.values_grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;


}

.value_item {
   background: white;
   padding: 2.5rem;
   border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.value_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102,126,234,0.15);
}

.value_item h3 {
   color: #667eea;
               font-size: 1.5rem;
    margin-bottom: 1rem;
  font-weight: 600;
}

.value_item p {
   color: #666;

    line-height: 1.7;

   font-size: 1rem;
}

.team_section {
    padding: 5rem 0;
    background: white;
}

.team_section h2 {
  text-align: center; 
	    font-size: 2.8rem; 
	   color: #333; 
	  margin-bottom: 2rem; 
	                    font-weight   : 700; 

}

.team_intro {
               text-align: center;
	max-width: 700px;
  margin: 0 auto 4rem;
}

.team_intro p {
   color:   #555;
   font-size   :        1.2rem;
  line-height: 1.7;
}

.expertise_areas


{
       display: grid;
   gap: 3rem;
     }

.expertise_item {
    display: grid;
     grid-template-columns: 1fr 1.5fr;
    gap :        2.5rem;
  align-items: center;
   background: #f8f9ff;
  border-radius: 20px;
    overflow: hidden;
    padding :        2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.expertise_item:nth-child(even) {
	grid-template-columns: 1.5fr 1fr;
}

.expertise_item:nth-child(even) .expertise_img {
  order: 2;


}

.expertise_item:nth-child(even) .expertise_content {
 order: 1;
}

.expertise_img {
     width  : 100%;

	  height: 280px;

	   object-fit     :       cover;

	  border-radius: 15px;


}

.expertise_content h3 {
   color: #333;
  font-size: 1.8rem;
    margin-bottom: 1rem;
  font-weight: 600;
}

.expertise_content p {

    color: #555;
   margin-bottom: 1.5rem;
  line-height: 1.7;
   font-size: 1.1rem;
}

.expertise_list  
  {
    list-style: none;
}

.expertise_list li {
	 padding: 0.4rem 0;
    color: #667eea;
   font-weight: 500;
  position: relative;
    padding-left: 1.5rem;
}

.expertise_list li:before

{
    font-size: 1.2rem;
	 color: #ff6b6b;
   position: absolute;
    font-weight: bold;
  content: '•';
  left: 0;
}

.credentials_section {

		padding: 5rem 0;
  background  :  #f8f9fa;}

.credentials_section h2 {
  font-weight: 700;
  font-size: 2.8rem;
     color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.credentials_layout


{
    grid-template-columns :   1.3fr 1fr;
  gap: 3rem;
   align-items: center;
	 display: grid;}

.credentials_content h3 {
    color: #667eea;
   font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
    font-weight: 600;
}

.credentials_content h3:first-child {
    margin-top: 0;
}

.credentials_content p 
 {
  color: #555;
     line-height: 1.7;
    margin-bottom: 1.5rem;
   font-size: 1.1rem;

}

.credentials_img {
    width     :       100%;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.approach_section{
  padding: 5rem 0;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: white;
}

.approach_section h2 {
                    text-align: center;
  font-size: 2.8rem;
	 margin-bottom: 2rem;
    font-weight: 700;

}

.approach_content > p {
	text-align: center;
   font-size: 1.3rem;
  max-width: 800px;
	 margin: 0 auto 4rem;
                    line-height: 1.7;
  opacity: 0.95; 

}

.approach_steps
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step_item {
  background: rgba(255,255,255,0.1);
  padding   :        2rem;
  border-radius: 15px;
   text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.step_number {
  background: #ff6b6b;
  color: white;
    width: 60px;
	height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  font-size     :      1.5rem;
    font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step_item h3 {
    font-size: 1.4rem;
        margin-bottom: 1rem;
  font-weight: 600;
}

.step_item p {
   font-size: 1rem;
   line-height: 1.6;
 opacity: 0.9;
}

.thankyou_main {
  min-height: calc(100vh - 160px);
   padding: 120px 0 60px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.thankyou_container {
   align-items: center;
     margin: 0 auto;
  grid-template-columns: 1.2fr 1fr;
   display: grid;
    max-width: 1200px;
   gap :     3rem;
   padding: 0 2rem;
}

.thankyou_content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.thankyou_icon {
  text-align: center;
  margin-bottom: 2rem;
}

.success_checkmark {


    display: inline-block;
   width :       80px;
   height: 80px;
   position: relative;

}

.check_circle {
	-moz-border-radius: 50%;
    -moz-animation: scaleIn 0.3s ease-in-out;
   -webkit-animation: scaleIn 0.3s ease-in-out;
	width:    80px;
   height: 80px;
   border-radius     :   50%;
   -webkit-border-radius: 50%;
  background: #4CAF50;
    position: relative;
  animation: scaleIn 0.3s ease-in-out;
}

.check_stem {
		position    :       absolute;
  width: 3px;
   height: 12px;
  background: white;
    left: 32px;
	 top: 42px;
  transform: rotate(45deg);
    transform-origin: left bottom;
}

.check_kick {
   position: absolute;
    width: 3px;
   height: 6px;
   background: white;
  left: 28px;
    top: 44px;
  transform: rotate(-45deg);
   transform-origin: left bottom;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.thankyou_title 
 {
   color     :   #333;
  font-size: 2.8rem;
   text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}  

.main_message

{
    font-size: 1.2rem;
  color   :     #555;
   text-align: center;
   line-height: 1.7;
  margin-bottom     :    3rem;
}

.next_steps h2 {
  color: #667eea;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
   font-weight :    600;
}

.steps_list {
   display: grid;
  gap: 1rem;
   margin-bottom: 2.5rem;
}

.step_box {
  background: #f8f9ff;
  padding: 1.5rem;
   border-radius   : 10px;
    border-left: 4px solid #667eea;
}

.step_box strong
{
    color: #333;
    display: block;
  margin-bottom: 0.5rem;
    font-size :        1.1rem;
}

.step_box p {

	    color: #666;
   margin: 0;
    line-height: 1.6;
}

.thankyou_additional {
  background    :    #fff8f0;
  padding: 1.5rem;
    border-radius: 10px;
  margin-bottom: 2.5rem;
   border-left: 4px solid #ff6b6b;
}

.thankyou_additional h3 {
   font-size: 1.3rem;
    color     :#333;
    margin-bottom: 0.5rem;
  font-weight: 600;
}

.thankyou_additional p {
      margin: 0;
    line-height: 1.6;
    color: #666;
     }


.thankyou_actions {

    display: flex;
   gap    :    1rem;
    justify-content: center;
   flex-wrap: wrap;}

.thankyou_visual	{
   display: flex;
    justify-content: center;

}

.thankyou_image {
	   width: 100%;
  max-width: 400px;
    border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2); 

	}

.contact_reminder {
    padding: 4rem 0;
   background: white;
    text-align:   center;
}

.reminder_content h3 {
    font-weight: 600;
   color: #333;
    margin-bottom: 1rem;
   font-size: 2rem;
}

.reminder_content > p {
   color: #666;
   font-size: 1.1rem;
	 margin-bottom: 2.5rem;
}

.contact_details {
   display: flex;
  justify-content: center;
   gap: 3rem;
  flex-wrap: wrap;
}

.contact_details .contact_item {
  text-align: center;
}

.contact_details .contact_item strong {
  color: #667eea;
   font-size: 1.2rem;
   display    :  block;
  margin-bottom: 0.5rem;
}  

.contact_details .contact_item p {
       color  :     #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;}@media (max-width: 768px) {
    .about_hero_content h1 {
        font-size: 2.2rem;
    }
    
    .about_hero_desc {
        font-size: 1.1rem;
    }
    
    .story_layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story_text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .values_grid {
        grid-template-columns: 1fr;
    }
    
    .expertise_item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .expertise_item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .expertise_item:nth-child(even) .expertise_img,
    .expertise_item:nth-child(even) .expertise_content {
        order: 0;
    }
    
    .credentials_layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .approach_steps {
        grid-template-columns: 1fr;
    }
    
    .thankyou_container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou_content {
        padding: 2rem;
    }
    
    .thankyou_title {
        font-size: 2rem;
    }
    
    .contact_details {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .about_hero {
        padding: 100px 0 60px;
    }
    
    .about_hero_content h1 {
        font-size: 1.8rem;
    }
    
    .story_text h2,
    .values_section h2,
    .team_section h2,
    .credentials_section h2,
    .approach_section h2 {
        font-size: 1.8rem;
    }
    
    .thankyou_title {
        font-size: 1.6rem;
    }
    
    .thankyou_actions {
        flex-direction: column;
        align-items: center;
    }
}.policySection {
   padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
   max-width: 800px;
  margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
   color: #2c3e50;
  font-weight: 700;
   margin-bottom :     1.5rem;
    font-size: 2.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;
    }
}