* {
  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;
}

.primary-navigation    {
	  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
    width: 100%;
   top: 0;
  z-index    :      1000;
    border-bottom: 1px solid #e1e8ed;}

.navigation-wrapper {
  max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
  display    :       flex;
   justify-content: space-between;
   align-items: center;
	 height: 70px;
}

.company-logo   {
	  height: 45px;
  width: auto;


}

.main-menu {
    display: flex;
}

.menu-items {
  display: flex;
   list-style: none;
 gap: 35px;
}

.nav-link {
   text-decoration: none;
    color: #34495e;
     font-weight: 500;
    transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #3498db; 

}

.nav-link.active::after {
    height  :  2px;
	 position: absolute;
   left: 0;
  content: '';
    width: 100%;
    bottom: -5px;
	background: #3498db;
}

.menu-toggle

{
   display: none;
  flex-direction     :     column;
	 background:  none;
    border: none;
                    cursor: pointer;
  padding :   5px;
}

.burger-line {

	    width: 25px;
   height: 3px;
                    background: #34495e;
  margin     :       3px 0;
   transition: 0.3s;
}

.hero-section {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
   display: grid;
        grid-template-columns: 1fr 1fr;
       gap: 60px;
   align-items: center;
}

.main-headline {
 font-weight: 700;
   font-size: 3.2rem;
   line-height: 1.2;
	margin-bottom: 24px;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
   opacity: 0.9;
    line-height: 1.7;
}

.cta-buttons {
  display: flex;
   gap: 20px;
   flex-wrap: wrap;
}

.primary-btn, .secondary-btn 
 {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
 border-radius    :   8px;
   text-decoration: none;
	transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background: #e74c3c;
	 color: white;
   border: 2px solid #e74c3c;
}

.primary-btn:hover 
 {
  -moz-transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -ms-transform: translateY(-2px);
	border-color  :       #c0392b;
    background: #c0392b;
}

.secondary-btn {
    background: transparent;

	   color: white;

	   border: 2px solid white;
}

.secondary-btn:hover {
 background     : white;
   color: #667eea;
}

.hero-image{
   width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.services-overview {
  padding: 100px 20px;
  background: #f8f9fa;
}

.content-container {
	max-width: 1200px;
    margin: 0 auto;
	}

.section-title {
    text-align: center;

  font-size: 2.5rem;

  color: #2c3e50;

  margin-bottom: 60px;

    font-weight: 600;
}

.services-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
	}

.service-card {
    background    :white; 
  padding: 40px 30px; 
    border-radius: 15px; 
  box-shadow: 0 8px 25px rgba(0,0,0,0.08); 
   text-align: center; 
   transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
      height: 220px;
   object-fit: cover;
  border-radius: 10px;
    margin-bottom   :       25px;
}

.service-card h3 {
	 font-size: 1.5rem;
    color: #2c3e50;
   margin-bottom: 15px;
	font-weight: 600;
}

.service-card p {
   color: #7f8c8d;
    line-height: 1.6;
}

.cta-section {
   padding: 80px 20px;
  background: linear-gradient(45deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.cta-wrapper {
	max-width    :     800px;
    margin: 0 auto;
   text-align: center;
}

.cta-content h2 {
    font-size: 2.3rem;
	   margin-bottom: 20px;
	   font-weight     :       600;
}  

.cta-content p {
    font-size: 1.1rem;
      margin-bottom: 35px;
    opacity: 0.9;
}

.cta-primary-btn  {

	    background: #e74c3c;
  color    :   white;
  padding: 18px 35px;
    font-size: 1.1rem;
   font-weight: 600;
 text-decoration: none;
   border-radius: 8px;
	 transition: all 0.3s ease;
    display: inline-block; 
	

}

.cta-primary-btn:hover    {
    background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.methodology-section {
  padding: 100px 20px;
        background: white;
	}

.method-container
	{
	max-width: 1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns  :   1fr 1fr;
     gap: 60px;
		 align-items: center;
}

.method-text h2 {
          font-size: 2.3rem;
   color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.method-text p {
                    font-size: 1.1rem;
  color    : #7f8c8d;
   line-height     : 1.7;
 margin-bottom: 30px;
}

.method-benefits {
  list-style: none;
}

.method-benefits li {
    padding: 12px 0;
   padding-left   :  25px;
  position: relative;
       color: #34495e;
    font-weight: 500;
}

.method-benefits li::before {
  content: '✓'; 
	    position: absolute; 
	  left: 0; 
	    color: #27ae60; 
	    font-weight     :    bold; 
	    font-size: 1.2rem;
}

.method-image {
   width: 100%;
   height: auto;
		 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-section {


	padding: 100px 20px;
  background: #f8f9fa;
     }

.contact-container {
    max-width: 700px;
       margin    :0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
   font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
   font-weight: 600;
}



.contact-header p {
  font-size: 1.1rem;
   color: #7f8c8d;
}

.contact-form {
  background: white;
    padding: 45px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 25px;
}

.form-group label


{
		display: block;
   margin-bottom     :   8px;
     color: #2c3e50;
    font-weight: 500;

}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
   padding: 12px 15px;
               border:    2px solid #e1e8ed;
    border-radius: 8px;
  font-size: 1rem;
  transition   :     border-color 0.3s ease;
    font-family: inherit;

}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #3498db;
					outline     :    none;

}

.form-group textarea {
	resize: vertical;
    min-height :        120px;
}

.form-submit-btn {
   background: #3498db;
  color: white;
    border: none;
    padding: 15px 40px;
   font-size     :      1.1rem;
  font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
  transition: all 0.3s ease;
                    width   :   100%;
}

.form-submit-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.site-footer {
  background: #2c3e50;
     color: white;
    padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
}

.footer-main {
   display   :  flex; 
	    justify-content: space-between; 
	    align-items: flex-start; 
	  margin-bottom: 40px;
}

.footer-logo {
	 height: 40px;
    width   :auto;
  filter: brightness(0) invert(1);
}

.footer-info {
  display : flex;

	gap: 60px;

   align-items: flex-start;
}

.contact-details p {
	margin-bottom: 8px;
    color: #bdc3c7;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
  margin-bottom  :      8px;
}

.footer-nav a {
  transition: color 0.3s ease;
    color: #bdc3c7;
   text-decoration: none;
}

.footer-nav a:hover {
   color     : white;
}

.footer-bottom {
  text-align: center;
   padding-top: 25px;
       border-top: 1px solid #34495e;
   color: #95a5a6;
}@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.main-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-menu.active {
display: flex;
}

.menu-items {
flex-direction: column;
gap: 15px;
}

.hero-content {
grid-template-columns: 1fr;
gap: 40px;
text-align: center;
}

.main-headline {
font-size: 2.5rem;
}

.cta-buttons {
justify-content: center;
}

.method-container {
grid-template-columns: 1fr;
gap: 40px;
}

.services-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.footer-main {
flex-direction: column;
gap: 30px;
text-align: center;
}

.footer-info {
flex-direction: column;
gap: 30px;
text-align: center;
}

.contact-form {
padding: 30px 25px;
}
}

@media (max-width: 480px) {
.hero-section {
padding: 100px 15px 60px;
}

.main-headline {
font-size: 2rem;
}

.hero-description {
font-size: 1rem;
}

.primary-btn, .secondary-btn {
padding: 12px 25px;
font-size: 1rem;
}

.section-title {
font-size: 2rem;
}

.services-overview, .methodology-section, .contact-section {
padding: 60px 15px;
}

.contact-form {
padding: 25px 20px;
}
}.about-hero {
	 padding :      120px 20px 60px;
	  background: linear-gradient(140deg, #34495e 0%, #2c3e50 100%);
	   color: white;
	   text-align: center;
}

.about-hero-content {
  max-width   :       800px;
  margin: 0 auto;
}

.about-main-title {


    font-size: 3rem;
	font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;

}

.about-subtitle {
   font-size: 1.3rem;
    opacity: 0.9;
   line-height: 1.6;
}

.our-story {
    padding: 100px 20px;
	background: white;
}

.story-container {
    max-width: 1200px;
   margin:        0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
   align-items:center;
}


.story-content h2 {
                    font-size: 2.4rem;
  color: #2c3e50;
	 margin-bottom: 30px;
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    color: #7f8c8d;
   line-height: 1.7;
   margin-bottom: 25px;
}

.mission-values {
  display   :   grid;
  grid-template-columns   :   1fr 1fr;
  gap: 30px;
    margin-top: 40px;
}

.value-item {


  background: #f8f9fa;
        padding: 25px;
  border-radius: 10px;
  border-left    :     4px solid #3498db;
}

.value-item h3 {


    margin-bottom   : 10px;
  color: #2c3e50;
    font-size: 1.3rem;
   font-weight: 600;


}

.value-item p {
                    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.story-img {
    width   :     100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.expertise-section {
      padding: 100px 20px;

	  background: #f8f9fa;
}

.expertise-wrapper {
	text-align: center;
   margin: 0 auto;
  max-width: 1200px;
}

.expertise-title {
  font-size: 2.5rem;
 color: #2c3e50;
  margin-bottom: 60px;
	font-weight: 600;
}

.expertise-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px; 
}

.expertise-card {
    background: white;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	text-align: left;
    transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.expertise-content h3 {
   color    :    #2c3e50;
   font-size: 1.4rem;
       margin-bottom: 15px;
	font-weight: 600;
}  

.expertise-content p {
   color     :   #7f8c8d;
  line-height: 1.6;
    font-size: 1rem;
}

.methodology-deep
	{
  padding: 100px 20px;
     background: white;
}

.method-deep-container  {
  max-width :     1200px;
   margin: 0 auto;
	display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

}

.method-text-side h2 {
     font-size: 2.3rem;
	 color: #2c3e50;
   margin-bottom: 20px;
  font-weight: 600;
}

.method-text-side > p {
   font-size: 1.1rem;

	    color: #7f8c8d;

	   line-height: 1.7;

	   margin-bottom: 40px;
}

.method-steps {
   display: flex;
   flex-direction: column;
    gap: 25px;
     }

.step-item {
    gap :     20px;
  align-items: flex-start;
    display: flex;
}

.step-number {
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
          width: 40px;
   height:      40px;
    border-radius   :      50%;
   display: flex;
  align-items: center;
   justify-content: center;
   font-weight: bold;
    font-size: 1.1rem;
		flex-shrink: 0;
}

.step-content h4 {
   font-weight: 600;
    font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 8px; 
	
}

.step-content p {
  color: #7f8c8d;
  font-size: 1rem;
   line-height: 1.5;
  margin: 0;


}

.method-deep-img {
   width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.impact-section {
    padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white; 
	
}

.impact-container {
   max-width: 1200px;
	 margin: 0 auto;
}

.impact-container h2 {
  text-align: center;

    font-size: 2.5rem;

  margin-bottom: 50px;

  font-weight: 600;
}

.impact-stats {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 40px;
  margin-bottom: 70px;
  text-align: center;
}

.stat-item {

	  background: rgba(255, 255, 255, 0.1);
      padding: 30px 20px;
     border-radius   :      12px;
     backdrop-filter: blur(10px);
	}

.stat-number
{
    display: block;
   font-size: 3rem;
    font-weight:    700;
  color     :    #fff;
  margin-bottom: 10px;
}

.stat-label		{
	font-size: 1.1rem;
  opacity: 0.9;
}


.impact-content {
	display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 60px;
  align-items: center;
}

.impact-text h3 
 {
   font-size: 2rem;
   margin-bottom: 20px;
  font-weight :        600;
}

.impact-text p {
  font-size: 1.1rem;
    line-height: 1.7;
  opacity: 0.9;
   margin-bottom: 20px;
}

.impact-img


{
 width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
	
}  

.philosophy-section {
	padding :  100px 20px;
	 background: #f8f9fa;
}

.philosophy-wrapper {
  max-width: 1000px;
   margin :     0 auto;
  text-align: center; 

}

.philosophy-wrapper h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight:   600;
}

.philosophy-main {
  font-size: 1.4rem;
  color: #34495e;
   font-style: italic;
    margin-bottom: 50px;
	line-height: 1.6;
    font-weight     :   500;
}

.philosophy-principles {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align  :     left;
	
}

.principle-item {
    background: white;
  padding: 30px;
    border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.principle-item h4 {

   color: #2c3e50;

		 font-size: 1.3rem;

	 margin-bottom: 15px;

	    font-weight: 600;

}

.principle-item p {
	 line-height: 1.6;

  font-size: 1rem;

  color     :   #7f8c8d;
}

.commitment-section {
  padding: 100px 20px;
   background:        white;
}

.commitment-container {


    max-width: 1200px; 
	  margin: 0 auto; 
		display: grid; 
	   grid-template-columns: 1fr 1fr; 
	  gap: 60px; 
	   align-items: center;

}

.commitment-content h2 {
	  font-size: 2.3rem;
	    color: #2c3e50;
	  margin-bottom     :    25px;
	  font-weight: 600;
     }

.commitment-content > p {
  font-size     :    1.1rem;
  color    :#7f8c8d;
   line-height: 1.7;
   margin-bottom : 40px;
}

.commitment-points   {
   display: flex;
				flex-direction: column;
	  gap: 25px;
}

.commitment-point {
  padding:       20px;
    border-left: 4px solid #e74c3c;
    background: #f8f9fa;
  border-radius: 8px;
}

.commitment-point h4 {
   color: #2c3e50;
	font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.commitment-point p {

    color: #7f8c8d;
    line-height :        1.6;
  margin: 0;}

.commitment-img {


   width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	}

.thankyou-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.thankyou-container {
    max-width: 1200px;
     margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.success-icon {
   text-align: center;
   margin-bottom: 30px;

}

.checkmark-circle {
   width: 80px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
  display:       inline-flex;
    align-items:     center;
  justify-content  :       center;
    position :   relative;
}

.checkmark {
  width     : 30px; 
	   height :       15px; 
	  border-left    :    3px solid white; 
	  border-bottom: 3px solid white; 
	  transform: rotate(-45deg);
}

.thankyou-title {
  font-size: 2.8rem; 
	        font-weight: 700; 
	   line-height: 1.3; 
	    margin-bottom: 20px;
}

.thankyou-subtitle {
      font-size: 1.2rem;
  opacity   :    0.9;
    line-height: 1.6;
  margin-bottom: 40px;

}

.next-steps-box {
  background: rgba(255, 255, 255, 0.1);
   padding: 35px;
    border-radius: 15px;
  backdrop-filter: blur(10px);
}

.next-steps-box h2


{
  font-size: 1.8rem;
  margin-bottom: 30px;
    font-weight  : 600;
}

.steps-timeline {


  display: flex;
  flex-direction: column;
    gap: 25px;
     }

.timeline-step {
	 display    :flex;
  align-items: flex-start;
    gap: 20px;
}

.step-marker {
    width    :    35px;
  height: 35px;
   border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
    color    : white;
    display: flex;
  align-items: center;
    justify-content: center;
    font-weight : bold;
	flex-shrink    :        0;
}

.timeline-step.active .step-marker {
    background:#fff;
        color: #27ae60;
}  

.step-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
    font-weight: 600;
}

.step-info p {
     font-size  : 1rem;
  opacity   :0.9;
   margin-bottom: 5px;
  line-height: 1.5;
}

.step-status {
  font-size    :      0.9rem;
  background: rgba(255, 255, 255, 0.2);
   padding: 4px 12px;
               border-radius    :   15px;
  font-weight: 500;
} 

.timeline-step.active .step-status
	{
   background: #fff;

	    color: #27ae60;
}

.thankyou-image {
	width: 100%;
       height    :     auto;
    border-radius     :12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.preparation-section {
    padding: 100px 20px;
	background: white;
}

.prep-container
{
	max-width: 1200px;
	margin: 0 auto;
  text-align: center;
}

.prep-container h2
	{
		 font-size: 2.5rem;
  color: #2c3e50;
        margin-bottom : 20px;
    font-weight     :        600;
}

.prep-intro {
 font-size: 1.1rem;
  color   : #7f8c8d;
       line-height: 1.7;
  margin-bottom: 50px;
  max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.preparation-grid    {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  text-align: left;
}

.prep-card {
    background: #f8f9fa;
    padding: 30px;
  border-radius: 12px;
    border-top: 4px solid #3498db;
}

.prep-card h3 {
   color: #2c3e50;
  font-size  :     1.4rem;
  margin-bottom  :      15px;
	font-weight :    600;
} 

.prep-card p{
  color: #7f8c8d;
    line-height: 1.6;
   font-size: 1rem;
}

.testimonial-preview {
       padding: 100px 20px;
   background: #f8f9fa;
	}

.testimonial-container {
   margin: 0 auto;
    text-align: center;
  max-width: 1000px; 

}

.testimonial-container h2 {
    font-size: 2.5rem;
   color: #2c3e50;
 margin-bottom: 50px;
   font-weight    :600;
}

.testimonial-content {
	   background: white;
    padding: 40px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   margin-bottom: 40px;
	}

.testimonial-quote {
    font-size: 1.3rem;
	color: #34495e;
   font-style: italic;
    line-height: 1.6;
   margin-bottom: 25px;
   position: relative;
}

.testimonial-quote::before {
	  content: '"'; 
	  font-size: 4rem; 
	 color: #3498db; 
	    position  :    absolute; 
	  left: -20px; 
	    top: -10px; 
	   font-family: Georgia, serif;}

.testimonial-author {


  text-align: right;
     }

.author-name    {
  font-weight: 600;
  color: #2c3e50;
   display     : block;
  margin-bottom  :  5px;
}

.author-title {
   font-size     : 0.9rem;
   color   :      #7f8c8d;
}

.testimonial-stats    {
    display: grid;
   grid-template-columns: 1fr 1fr;
	gap :       30px;
    max-width :      500px;
   margin: 0 auto;
}

.stat-highlight {
    background: white;
       padding    :       25px;
   border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.stat-highlight .stat-number {
    display   :      block;
     font-size: 2.5rem;
     font-weight: 700;
     color: #3498db;
      margin-bottom  : 8px;
}

.stat-highlight .stat-text {
   color: #7f8c8d;
	font-size: 1rem;
}

.resources-section {
 padding: 100px 20px;
  background: white;
}

.resources-wrapper {
   max-width: 1200px;
   margin: 0 auto;
	
}

.resources-wrapper h2 {
    text-align: center;
   font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
	font-weight:        600;
}

.resources-content

{
    display: grid; 
    grid-template-columns: 1fr 1fr; 
  gap: 60px; 
    align-items     :      center;
}

.resource-text h3   {
 font-size: 2rem;
          color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.resource-text > p {
    font-size: 1.1rem;
                    color: #7f8c8d;
   line-height :      1.7;
	margin-bottom    :30px;
}

.action-tips h4     {

	   color: #2c3e50;
    font-size: 1.3rem;
   margin-bottom:     15px;
  font-weight: 600;
     }

.action-tips ul {
  padding-left: 20px;
}

.action-tips li    {

  color: #7f8c8d;
  margin-bottom: 10px;
    line-height: 1.6;}

.resource-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-section {
    padding: 100px 20px;
      background: #f8f9fa;
	text-align: center;
}

.contact-info-wrapper {
  max-width: 800px;
   margin: 0 auto; 
	
}

.contact-info-wrapper h2 {

	      font-size: 2.3rem;
    color: #2c3e50;
          margin-bottom: 20px;
    font-weight  :600;
}

.contact-info-wrapper > p {
   font-size: 1.1rem;
    color: #7f8c8d;
    line-height   :  1.6;
  margin-bottom: 50px;
}

.contact-methods {
  display     :  grid;
   grid-template-columns: 1fr 1fr;
    gap: 40px;
   margin-bottom: 50px;
   text-align: left;
}

.contact-method {
   background: white;
    padding: 30px;
 border-radius :    12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-method h3 {


   color     :   #2c3e50;

	               font-size: 1.4rem;

	 margin-bottom: 15px;

	    font-weight   :     600;
}


.contact-detail {
  color: #34495e;
    font-size :      1.1rem;
      font-weight :500;
   margin-bottom: 8px;
	}

.contact-note {
  color: #7f8c8d;
  font-size: 0.95rem;
   line-height: 1.5;
}

.back-navigation {
        display: flex;
  gap: 20px;
                    justify-content    :  center;
    flex-wrap: wrap;
}  

.back-home-btn, .learn-more-btn {
     padding: 15px 30px;
  text-decoration: none;
    border-radius: 8px;
    font-weight :       600;
    transition  : all 0.3s ease;
  display     :       inline-block;
}

.back-home-btn {
	background: #3498db;

	    color: white;
}



.back-home-btn:hover {
   background: #2980b9;
  transform: translateY(-2px);
}

.learn-more-btn {
   color: #34495e;
     border: 2px solid #bdc3c7;
  background: transparent;
} 

.learn-more-btn:hover {
   border-color: #7f8c8d;
	color: #2c3e50;
}@media (max-width: 768px) {
.about-main-title {
font-size: 2.2rem;
}

.about-subtitle {
font-size: 1.1rem;
}

.story-container {
grid-template-columns: 1fr;
gap: 40px;
}

.mission-values {
grid-template-columns: 1fr;
gap: 20px;
}

.method-deep-container {
grid-template-columns: 1fr;
gap: 40px;
}

.thankyou-container {
grid-template-columns: 1fr;
gap: 40px;
text-align: center;
}

.thankyou-title {
font-size: 2.2rem;
}

.impact-stats {
grid-template-columns: 1fr;
gap: 20px;
}

.impact-content {
grid-template-columns: 1fr;
gap: 40px;
}

.philosophy-principles {
grid-template-columns: 1fr;
gap: 20px;
}

.commitment-container {
grid-template-columns: 1fr;
gap: 40px;
}

.resources-content {
grid-template-columns: 1fr;
gap: 40px;
}

.contact-methods {
grid-template-columns: 1fr;
gap: 20px;
}

.testimonial-stats {
grid-template-columns: 1fr;
gap: 20px;
}

.back-navigation {
flex-direction: column;
align-items: center;
}

.preparation-grid {
grid-template-columns: 1fr;
gap: 20px;
}
}

@media (max-width: 480px) {
.about-hero {
padding: 100px 15px 50px;
}

.about-main-title {
font-size: 1.9rem;
}

.our-story, .expertise-section, .methodology-deep, .impact-section, 
.philosophy-section, .commitment-section, .thankyou-hero, 
.preparation-section, .testimonial-preview, .resources-section, 
.contact-info-section {
padding: 60px 15px;
}

.expertise-grid, .preparation-grid {
grid-template-columns: 1fr;
}

.thankyou-title {
font-size: 1.8rem;
}

.next-steps-box {
padding: 25px 20px;
}

.contact-method {
padding: 20px;
}
}.policySection {

    padding: 80px 2rem;
  background :#f8f9fa;


}

.policyContainer {
   max-width: 800px;
  margin    :  0 auto;
  text-align: left;
}

.policyContainer h2 {
                    font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
   font-weight    :       700;
}

.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;
  }
}