* {
	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: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
    width: 100%;
   top: 0;
    z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.1);
	}


.nav-container {
  align-items: center;
   margin: 0 auto;
  padding: 1rem 2rem;
  justify-content: space-between;
    max-width: 1200px;
   display: flex; 
	
}

.site-logo {
	   height    :       45px;
  width: auto; 


}

.nav-menu {
   display: flex;
}

.menu-list {
   display: flex;
   list-style: none;
	 gap: 2rem; 

}

.nav-link {
        text-decoration     :    none;
   color: #333;
    font-weight: 500;
    transition     :     color 0.3s ease;
    position    :     relative;
}

.nav-link:hover, .nav-link.active {
   color: #2c5aa0;
}

.nav-link.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: all 0.3s ease;


}

.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-wrapper {
   margin-top: 80px;
    padding: 4rem 2rem;
  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: 3rem;
  align-items    : center;
}

.hero-content h1 {
    font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
       font-size  :     1.2rem;
 margin-bottom     :2rem;
   opacity: 0.9;


}

.hero-actions {
    display: flex;
                    gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
       padding: 12px 28px;
  text-decoration: none;
   border-radius: 6px;
                    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #ff6b6b;
   color: white;
}

.cta-primary:hover {
   background: #ff5252;
  transform: translateY(-2px);
}

.cta-secondary {
  border: 2px solid rgba(255,255,255,0.8);
	color: white;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.1);

}

.hero-image img {
    width: 100%;
    border-radius :12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
} 

.services-showcase{
   padding: 5rem 2rem;
  background: white;
}

.content-wrapper {
        max-width   :       1200px;
   margin: 0 auto;
    text-align: center;

}

.services-showcase h2 
 {
       font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:      2rem;
  margin-top: 2rem;
}

.service-card {

	          background: #f8f9fa;
  padding: 2.5rem 2rem;
   border-radius: 10px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

.service-card:hover
	{
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
	  font-size: 1.5rem;
   margin-bottom: 1rem;
    color: #2c5aa0;


}

.service-card p {
  color: #666;
    line-height   :     1.7;
}

.expertise-area {
    padding: 5rem 2rem;
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
   color: white;
}

.dual-content {
    max-width     :     1200px;
   gap: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
   margin: 0 auto;
   align-items: center;
}

.content-left h2 {
   font-size: 2.3rem;
  margin-bottom: 1.5rem;
}


.content-left p    {
   font-size: 1.1rem;
         margin-bottom    :       2rem;
      opacity: 0.9;
}

.achievement-stats {
    display: flex;
	 gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
  font-size: 2.5rem;
    font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
 font-size: 0.9rem;
    opacity     :   0.8;
}

.content-right img {
   width: 100%;
  border-radius: 15px;
}

.consultation-cta {
	   padding: 4rem 2rem;
  background: #2c3e50;
   color :  white;

     }

.cta-container {
	    max-width: 1000px;
   margin:  0 auto;
    text-align: center;

}

.cta-container h2     {

    font-size: 2.5rem;
   margin-bottom: 1rem;
     }

.cta-container p {
	  font-size:  1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-large {


   border-radius: 8px;
	 color :     white;
  transition: all 0.3s ease;
  font-size: 1.1rem;
    display: inline-block;
  text-decoration: none;
                    padding: 15px 35px;
  font-weight: 600;
    background: #ff6b6b;

}

.cta-button-large:hover {
  background: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.methodology-section {
   padding: 5rem 2rem;
    background: white;
}

.method-container {
  margin  : 0 auto;
    max-width  :   1200px; 
	
}

.methodology-section h2 {
   font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    text-align: center;
}

.step-item {
   display: grid; 
    grid-template-columns: 1fr 1fr; 
   gap: 3rem; 
	align-items: center; 
    margin-bottom     :     4rem;
}

.step-item.reverse {
    grid-template-columns: 1fr 1fr; 

}

.step-item.reverse .step-content {

    order: 1;


}

.step-item.reverse .step-visual {
    order: 2;
}

.step-visual img {
    width: 100%; 
   border-radius    :       12px;
}

.step-content h3 
 {
   font-size: 1.8rem;
    margin-bottom: 1rem;
  color: #2c5aa0;
}

.step-content p {
    color: #666;
    line-height: 1.7;
  font-size: 1.1rem;
}

.contact-section {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-container {
  max-width: 800px;
   margin: 0 auto;
}

.contact-intro


{
     text-align: center;
   margin-bottom: 3rem;
    color: white;
}

.contact-intro h2 {

   font-size: 2.5rem;
  margin-bottom   :  1rem;
	}

.contact-intro p		{
    font-size: 1.2rem;
   opacity: 0.9;
}

.contact-form {
     background: rgba(255, 255, 255, 0.95);
   padding:       3rem;
    border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
   margin-bottom: 1.5rem;
}  

.form-group {
	display: flex;

	flex-direction: column;
}

.form-group label {
         margin-bottom: 0.5rem;
    font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-size: 1rem;
    border: 2px solid #e0e6ed;
  border-radius: 6px;
   padding: 12px 15px;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: #2c5aa0;
}

.form-submit {
  background: #ff6b6b;
   color  :      white;
	 padding: 15px 30px;
    border     :   none;
   border-radius: 6px;
	font-size: 1.1rem;
    font-weight :   600;
  cursor: pointer;
   transition: all 0.3s ease;
  width: 100%;

}

.form-submit:hover {

	   background: #ff5252;
  transform: translateY(-2px); 
	
	}

.site-footer {
   background    :   #1a1a1a;
  color: white;
                    padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width: 1200px;
  margin: 0 auto;
	
}

.footer-main {
	  display: grid;
  grid-template-columns     :     2fr 1fr 1fr 1fr;
    gap: 3rem;
   margin-bottom: 2rem;}

.footer-logo {

    height    :   40px;
    margin-bottom    :     1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
   color: #ccc;
      line-height: 1.6;


}

.footer-contact h4,
.footer-navigation h4,
.footer-legal h4 {
     margin-bottom: 1rem;
	color: #ff6b6b;}

.contact-address,
.contact-phone     {
   color: #ccc;
  margin-bottom: 0.5rem;

}

.footer-links,
.legal-links		{
    list-style    :       none;
}

.footer-links li,
.legal-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.legal-links a  {
    color   :   #ccc;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.legal-links a:hover {
   color: #ff6b6b;
}

.footer-bottom {
    border-top   :    1px solid #333;
  padding-top: 1rem;
  text-align: center;
   color: #999; 

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }
    
    .menu-list {
        flex-direction: column;
        gap: 0;
        padding: 0 2rem;
    }
    
    .menu-list li {
        padding: 0.5rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .dual-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-item,
    .step-item.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-item.reverse .step-content,
    .step-item.reverse .step-visual {
        order: unset;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievement-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-wrapper {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-showcase,
    .expertise-area,
    .consultation-cta,
    .methodology-section,
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
}.about-hero
	{
  margin-top:  80px;
    padding: 4rem 2rem;
  background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
   max-width: 1200px;
    margin-left: auto;
   margin-right: auto;
}

.about-hero-content h1 {
  font-size: 3rem;

    color :       #2c3e50;

	margin-bottom: 1.5rem;

    line-height: 1.1;
}

.about-lead {
    font-size: 1.2rem;
    color: #555;
  line-height: 1.7;
}

.about-hero-visual img {
   width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.our-story {
  background: white;
    padding: 5rem 2rem;
}

.story-container {
	 grid-template-columns: 1.2fr 1fr;
    display: grid;
   max-width: 1200px;
  margin: 0 auto;
   gap: 4rem;
    align-items: center;
}

.story-text h2
	{
    color: #2c5aa0;
    font-size: 2.3rem;
	 margin-bottom: 2rem;
}

.story-text p {

   font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom  :  1.5rem;
   color: #444;

}

.founding-principles {

    display: grid;
  grid-template-columns: 1fr 1fr;
    gap  :  2rem;
  margin-top: 3rem;


	}

.principle-item h3 {
                    color    :       #ff6b6b;
  margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.principle-item p 
 {

   font-size: 0.95rem;
  color: #666;
	}

.story-image img     {
    width: 100%;
    border-radius: 12px;
}

.methodology-deep  {
   	padding: 5rem 2rem;
         background: #f8f9fa;
     }

.method-wrapper {
    max-width: 1100px;
        margin: 0 auto;
	text-align: center;
}

.methodology-deep h2 {
        font-size: 2.5rem;
    color    :      #2c3e50;
      margin-bottom: 3rem;
} 

.method-phases  
  {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 2rem;


}

.phase-block {
   background: white;
   padding: 2rem;
		 border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

.phase-block:hover {
  transform: translateY(-5px);
}

.phase-number {
  position: absolute;
   top: -15px;
    left    :       2rem;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
       width: 40px;
                    height: 40px;
    border-radius: 50%;
    display: flex;
	 align-items: center;
	justify-content    :   center;
    font-weight: bold;
  font-size   :1.1rem;
}

.phase-block h3 {
	    margin: 1rem 0;
  color     :     #2c5aa0;
	 font-size     :     1.3rem;
	}

.phase-block p {
   color  :  #666;
   line-height: 1.6;
} 

.results-impact {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color    :   white;
}

.impact-container {
  max-width   :  1200px;
   margin    :        0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;
}

.impact-text h2 {
   font-size: 2.4rem;
   margin-bottom :     1.5rem;
}

.impact-text p{
  font-size:1.1rem;
  margin-bottom: 3rem;
   opacity: 0.9;
}

.success-metrics	{
   display: grid;

	       grid-template-columns  :        1fr 1fr;

	    gap  : 2rem;


}

.metric-group {
    text-align: center;
  background: rgba(255,255,255,0.1);
        padding: 1.5rem;
   border-radius: 8px;
}

.metric-value {

	               display: block;
    font-size: 2.2rem;
    font-weight: bold;
   margin-bottom: 0.5rem;
	}

.metric-description {
	   font-size: 0.9rem;
   opacity: 0.8;
	}

.impact-visual img {

    border-radius: 12px;
   width: 100%;
}

.values-section {
    padding   :    5rem 2rem;
   background: white;
}

.values-wrapper {
  max-width: 1200px;
    margin: 0 auto;
   text-align: center;
}

.values-section h2 {
	font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom    :       3rem;
	
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.value-card {
    background: #f8f9fa;
  padding     :      2.5rem 2rem;
    -moz-transition: all 0.3s ease;
   -webkit-border-radius     :  10px;
	-webkit-transition: all 0.3s ease;
   border-radius: 10px;
  text-align: left;
	border-left: 4px solid #ff6b6b;
   transition: all 0.3s ease;
}

.value-card:hover {
     transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-card h3 {
  color   :  #2c5aa0;
   margin-bottom: 1rem;
   font-size: 1.4rem;
}

.value-card p {
  line-height: 1.7;
    color: #666;
}

.expertise-areas {
   padding: 5rem 2rem;
   background: #f8f9fa; 
	
}


.expertise-container {
  max-width: 1200px; 
    margin  :   0 auto;
}

.expertise-areas h2 {
    text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;
}

.expertise-columns{
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.expertise-col {
   background: white;
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;}  

.expertise-col:hover    {
  transform: translateY(-5px);
}

.expertise-col img {
    width: 100%;
    height    :      250px;
         object-fit: cover;
}

.expertise-content {
	 padding    :       2rem;
}

.expertise-content h3 {
	 color: #2c5aa0;
    margin-bottom: 1rem;
    font-size    : 1.5rem;
}

.expertise-content p {
  color: #666;
    line-height :   1.7;
}

.about-cta {
    padding: 4rem 2rem;
  background: #2c3e50;
   color: white;
  text-align: center; 

}

.cta-wrapper {
        max-width: 800px;
    margin: 0 auto;
	
}

.about-cta h2 {
  font-size: 2.5rem;
	 margin-bottom: 1.5rem;
}

.about-cta p {
   font-size     :       1.2rem;
    margin-bottom: 2rem;
  opacity   :     0.9;

}

.cta-button  
  {
		background: #ff6b6b;
   color: white;
  padding: 15px 35px;
   text-decoration : none;
   border-radius: 8px;
    font-size: 1.1rem;
   font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {

	background: #ff5252;
  transform: translateY(-3px);

}

.thankyou-hero {
 margin-top: 80px;
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
    color: white;
}

.thankyou-container    {
   max-width: 800px;
	 margin: 0 auto;
}

.success-animation {
  margin-bottom: 2rem;


}

.checkmark-circle {
   width: 80px;
   height: 80px;
   border-radius  :50%;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 2rem;
    position: relative;
   animation: scaleIn 0.5s ease-in-out;
}

.checkmark {
     width: 25px;
  height: 15px;
  border: 3px solid white;
   border-top: none;
   border-right: none;
  transform: rotate(-45deg);
	position: absolute;
    top: 50%;
   left: 50%;
	margin-top: -10px;
               margin-left: -12px;
      animation  :      checkmarkDraw 0.3s ease-in-out 0.5s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { transform: rotate(-45deg) scale(0); }
    100% { transform: rotate(-45deg) scale(1); }
}.thankyou-hero h1 {
    font-size    :       3rem;
	margin-bottom: 1.5rem;
     }

.thankyou-message {
   font-size: 1.2rem;
   opacity: 0.9;
  line-height: 1.7;
}

.next-steps {
   padding: 5rem 2rem;
        background: white;
}

.steps-container {
   max-width: 1000px;
  margin: 0 auto;
}

.next-steps h2 {
	text-align: center;
  font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 4rem;
} 

.steps-timeline     {
	position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
    top: 60px;
  bottom: 60px;
                    width: 2px;
  background: #e0e6ed;


}

.step-item {
   display: flex;

		margin-bottom: 3rem;

	   position: relative;
}

.step-icon    {
   flex-shrink: 0;
   margin-right    :        2rem; 

}

.step-number {
    width: 60px;
 height: 60px;
   border-radius: 50%;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    display  :      flex;
        align-items    :       center;
	justify-content: center;
   font-weight: bold;
  font-size: 1.3rem;
  position: relative;
        z-index: 2;
}

.step-details h3 {
         color: #2c5aa0;
	margin-bottom: 0.8rem;
	font-size    :   1.4rem;
}

.step-details p {
   color: #666;
  line-height: 1.7;
   margin-bottom: 0.5rem;
}

.step-timing {
    font-size: 0.9rem;
  color: #ff6b6b;
  font-weight: 600;
}

.expectations

{
    padding: 5rem 2rem;
        background: #f8f9fa;
}

.expect-container {
    max-width: 1200px;
    margin: 0 auto;
  display: grid;
	 grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.expect-content h2 {
   font-size  : 2.3rem;
  color: #2c3e50;
     margin-bottom: 2rem;

}

.expect-item {
   margin-bottom: 2rem;
}

.expect-item h3 {
   color: #2c5aa0;
   margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.expect-item p {
  color: #666;
   line-height: 1.7;
}

.expect-visual img {
   width: 100%;
    border-radius: 12px;
}

.preparation-tips {
  padding: 5rem 2rem; 
	  background: white;
}  

.tips-wrapper {
    max-width: 1200px;
   margin: 0 auto;
   text-align: center;
}

.preparation-tips h2
{
 font-size: 2.5rem;
       color: #2c3e50;
    margin-bottom   :      1.5rem;
}

.tips-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.tips-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 2rem;
}

.tip-card {
    background: #f8f9fa;
   padding: 2rem;
                    border-radius     :       10px;
    text-align: left;
    border-top    :      3px solid #ff6b6b;
	transition: transform 0.3s ease;
}

.tip-card:hover {

	  transform: translateY(-3px);

}

.tip-card h3    {
    color: #2c5aa0;
    margin-bottom: 1rem;
     font-size: 1.3rem;
}

.tip-card p {
   color: #666;
    line-height: 1.6;
}



.emergency-contact {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  text-align     : center;
}

.emergency-wrapper {
   max-width: 800px;
   margin: 0 auto;
}

.emergency-contact h2 {
	 font-size: 2.2rem;
  margin-bottom: 1rem;


}

.emergency-contact p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
 opacity: 0.9;
}

.back-nav

{
  justify-content: center;
    flex-wrap  :     wrap;
   display: flex;
  gap: 1rem;
}

.back-button {
  background: rgba(255,255,255,0.2);
   color: white;
    padding: 12px 25px;
          text-decoration: none;
          border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.back-button:hover {
     background: rgba(255,255,255,0.3);
  transform: translateY(-2px); 


}

.back-button.secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
}

.back-button.secondary:hover {
  background: rgba(255,255,255,0.1);
}@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1rem;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founding-principles {
        grid-template-columns: 1fr;
    }
    
    .method-phases {
        grid-template-columns: 1fr;
    }
    
    .impact-container {
        grid-template-columns: 1fr;
    }
    
    .success-metrics {
        grid-template-columns: 1fr 1fr;
    }
    
    .expertise-columns {
        grid-template-columns: 1fr;
    }
    
    .expect-container {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline::before {
        left: 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-icon {
        margin-right: 1rem;
    }
    
    .thankyou-hero h1 {
        font-size: 2.5rem;
    }
    
    .back-nav {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-hero h1 {
        font-size: 2rem;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
    background: #f8f9fa;
    padding: 80px 2rem;
}

.policyContainer		{
   margin: 0 auto;
  text-align     :     left;
	max-width    :     800px;
}


.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;
    }
}
