* {
    box-sizing: border-box;
   margin  :      0;
    padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

	                    line-height: 1.6;

	   color    : #333;

	  background-color: #fafafa;
}

.main-header		{
   position: fixed;
  top: 0;
   width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
	 z-index: 1000;
    transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navigation-wrapper {
    max-width: 1200px;
   margin: 0 auto;
	padding: 0 20px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
   align-items: center;
  padding: 15px 0;
}

.site-logo {
  height: 45px;
                    width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
   gap: 40px;
}

.nav-menu a {
    text-decoration: none;
	color: #333;
   font-weight: 500;
    transition    :       color 0.3s ease;
   position: relative;
}

.nav-menu a::after {
  content: '';
   position: absolute;
  bottom: -5px;
  left: 0;
  width   :     0;
	 height: 2px;
 background-color: #2c5aa0;
   transition: width 0.3s ease;
}

.nav-menu a:hover::after {


    width: 100%;
	}

.nav-menu a:hover {
    color: #2c5aa0;
}

.burger-menu {
          display: none;
  flex-direction: column;
  cursor    :        pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    -o-transition: all 0.3s ease;
    background-color: #333;
	transition: all 0.3s ease;
   -moz-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-banner {
		display:        flex;
  align-items     :    center;
    min-height: 100vh;
  padding: 120px 20px 80px;
      max-width: 1200px;
    margin: 0 auto;
    gap: 60px; 


}

.hero-content {
    flex   :   1;
}

.hero-content h1    {
   font-size: 3.5rem;
  font-weight   :  700;
    color: #1a1a1a;
	 margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
               font-size: 1.25rem;
   color: #666;
	 margin-bottom  :        40px;
   line-height: 1.5;


}

.hero-actions {
   gap: 20px;
     flex-wrap: wrap;
    display: flex;
}

.primary-cta, .secondary-cta {
    padding: 16px 32px;
   text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.primary-cta {
  background-color: #2c5aa0;
    color: white;
}

.primary-cta:hover {
               background-color: #1e3d6f;
  transform: translateY(-2px);
} 

.secondary-cta {
   background-color: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.secondary-cta:hover {
   color: white;
    background-color: #2c5aa0;
}

.hero-visual {
        flex: 1;
	
}

.hero-visual img {
    width: 100%;
   height: auto;
	border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefits-showcase {
   padding:    100px 20px;
  background-color     :    #f8f9fa;
}

.content-container {
  margin: 0 auto;
  max-width: 1200px;
}

.benefits-showcase h2 {
    text-align: center;
   font-size: 2.5rem;
  color: #1a1a1a;
   margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :       40px;
}

.benefit-card {
   background: white;
	padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.benefit-card h3 {
   font-size :        1.5rem;
       color: #2c5aa0;
   margin-bottom: 20px;
}

.services-overview {
	  padding: 100px 20px;
	}

.section-header {
    text-align: center; 
	    margin-bottom: 80px; 

}

.section-header h2 {
     font-size    :      2.5rem;
   color  :     #1a1a1a;
  margin-bottom: 20px;}

.section-header p   {
    font-size: 1.2rem;
   color: #666;
}

.services-layout {
        display :        flex;
  flex-direction: column;
   gap: 60px;
}

.service-item {
  gap: 50px;
    align-items: center;
   display: flex;
}

.service-item:nth-child(even) {
   flex-direction   :       row-reverse;
}

.service-item img {
	 flex    :  1;
   max-width: 500px;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-content
	{
   flex: 1;
}


.service-content h3 {
  font-size   : 2rem;
   color: #2c5aa0;
    margin-bottom: 20px;
}

.service-content p {
                    margin-bottom: 25px;
  font-size: 1.1rem;
	line-height: 1.6;
}

.service-content ul {
   list-style: none;
	
}

.service-content li {

		 padding: 8px 0;
   position :   relative;
	padding-left: 25px;
}

.service-content li::before {
  content: '✓';
   position: absolute;
   left: 0;
	 color: #2c5aa0;
  font-weight: bold;
}

.methodology-section {
  padding: 100px 20px;
   background-color: #f8f9fa;

}

.methodology-content {
  display: flex;
  gap: 60px;
    align-items: center;
}

.methodology-text {
		 flex: 1;


}

.methodology-text h2 {

  font-size :      2.5rem;

	   color: #1a1a1a;

	   margin-bottom: 30px;

}

.process-steps {
  margin-top: 40px;
}

.step {
  display: flex;
 gap  :      20px;
  margin-bottom     :   30px;
  align-items: flex-start;
}

.step-number {
  background-color: #2c5aa0;
  color     : white;
    width: 40px;
       height   :    40px;
	 border-radius: 50%;
  display: flex;
    align-items: center;
   justify-content: center;
	font-weight: bold;
    flex-shrink: 0;
}

.step h4
	{
   margin-bottom: 10px;
  color: #2c5aa0;
}

.methodology-visual  
  {
  flex: 1;
    -ms-flex: 1;
   -webkit-flex: 1;
}

.methodology-visual img
{
   width: 100%;
  height: auto;
  border-radius   :       12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cta-section {


  padding: 100px 20px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
         color: white;
         text-align: center;

}

.cta-content h2 {
  font-size   :2.5rem;
   margin-bottom: 25px;
}

.cta-content p {
   font-size: 1.2rem;
    margin-bottom: 40px;
               max-width     :  800px;
  margin-left: auto;
 margin-right: auto;
   opacity: 0.9; 

}

.cta-button {
  background-color:       white;

	    color: #2c5aa0;

	    padding     :      18px 40px;

	    text-decoration: none;

	   border-radius: 8px;

	   font-weight: 600;

	  font-size: 1.1rem;

	    transition: all 0.3s ease;

	   display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.contact-section {
  padding     :      100px 20px;
}

.contact-wrapper {
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 80px;
     align-items: start;
}

.contact-info h2 {
      font-size  :      2.5rem;
  color: #1a1a1a;
    margin-bottom: 25px;
}

.contact-details {
	margin-top: 40px;
}

.contact-item {
    margin-bottom: 20px; 



}

.contact-item strong {
  display: block;
	   color: #2c5aa0;
	  margin-bottom: 5px;
}

.contact-form {
    background :  white;
    padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row  {
	display     :grid;
    grid-template-columns: 1fr 1fr;
  gap    :   20px;
    margin-bottom: 20px;
}

.form-group    {
   margin-bottom  :       25px;
}

.form-group label {
  display: block;
   margin-bottom: 8px;
  font-weight     :       500;
   color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
    border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus  
  {
   outline: none;
         border-color: #2c5aa0;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
	 border-color     :   #e74c3c;
}

.submit-button {
  background-color   :      #2c5aa0;
  color: white;
    padding: 16px 40px;
    border: none;
        border-radius  :        8px;
	font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
      width: 100%;
}

.submit-button:hover {
    background-color: #1e3d6f;
  transform: translateY(-2px);
}

.error-message {
  background-color: #fee;
    color: #e74c3c;
  padding: 12px;
  border-radius: 6px;
   margin-bottom: 20px;
    border-left: 4px solid #e74c3c;
}

.site-footer {
    background-color: #1a1a1a;
      color: white;
  padding: 60px 20px 30px; 
	
}

.footer-content {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
}

.footer-logo {
    height: 50px;
   width: auto;
   margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-section h4    {
   margin-bottom: 20px;
   color: #2c5aa0;
}

.footer-section ul {
	  list-style: none;

}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
   color: #ccc;
    text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
	    color: white;}

.footer-bottom {
   max-width: 1200px;
	margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
    margin-top: 40px;
    color: #ccc;
}

.benefit-card,
.service-item,
.step {
   opacity :  0;
  transform: translateY(30px);
   transition: all 0.6s ease;
}

.benefit-card.visible,
.service-item.visible,
.step.visible {
    opacity :       1;
  transform: translateY(0);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }
    
    .methodology-content {
        flex-direction: column;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-cta,
    .secondary-cta {
        text-align: center;
        width: 100%;
    }
}.about-hero {
       padding: 140px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   text-align: center;


}

.about-hero-content h1 {
 margin-bottom: 30px;
  font-weight :       700;
   font-size: 3rem;
 color :       #1a1a1a;
}



.hero-description {

	  margin: 0 auto;
  max-width: 800px;
    line-height: 1.6;
   font-size: 1.3rem;
  color: #666;
	}

.company-story {

	  padding: 100px 20px;


}

.story-layout {
    display: flex;
  gap: 60px;
   align-items: center;
}

.story-content {
  flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
   margin-bottom: 30px;
}

.story-content p

{
   font-size: 1.1rem;
  color: #444;
    margin-bottom: 25px;
   line-height: 1.7;
}

.story-image {

	  flex: 1;
     }

.story-image img {
	width: 100%;
    height :        auto;
      border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-vision {
    padding   :  100px 20px;
  background-color: #f8f9fa;
}

.mv-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mv-item {
  background: white;
    padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.mv-item:hover {

	  transform: translateY(-5px);

}

.mv-item h3 {
  font-size: 1.8rem;
  color: #2c5aa0;
   margin-bottom: 20px;
}

.mv-item p {
  line-height: 1.6;
	color: #555;
}

.values ul {
       list-style: none;
	 padding: 0;
}

.values li {
   padding: 10px 0; 
    position: relative; 
    padding-left: 25px; 
	 color: #555;
}

.values li::before {
  content: '✓';
    position: absolute;
  left: 0;
    color :     #2c5aa0;
   font-weight: bold;
}

.expertise-areas {
    padding: 100px 20px;
}

.expertise-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
  margin-bottom: 60px;
} 

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.expertise-card {
  background: white;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
     }

.expertise-card:hover {
  transform: translateY(-8px);
}

.expertise-card img {


  width: 100%;
     height: 250px;
    object-fit: cover;


}

.expertise-content {
      padding: 30px;

}

.expertise-content h4 {
  font-size: 1.5rem;
   color: #2c5aa0;
   margin-bottom: 15px;
}

.methodology-deep {
                    padding: 100px 20px;
    background-color: #f8f9fa;
}

.methodology-layout {
   display: flex;
     gap: 60px;
           align-items    :     flex-start;
}

.methodology-text {
   flex: 1;
}



.methodology-text h2     {
  font-size: 2.5rem;
   color   :    #1a1a1a;
  margin-bottom: 30px; 

}

.methodology-text p		{
  font-size: 1.1rem;
    line-height  :       1.7;
    margin-bottom: 40px;
    color: #444;
}

.methodology-principles   {
   display: flex;
   flex-direction    :column;
  gap: 30px;
}

.principle {

	  padding: 25px;
		background: white;
	    border-radius: 8px;
	          border-left: 4px solid #2c5aa0;}

.principle h4 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

.methodology-visual {
  flex: 1;
}

.methodology-visual img {
   width: 100%;

  height: auto;

  border-radius   :    12px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.results-showcase

{
                    padding: 100px 20px;

  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);

          color: white;

                    text-align: center;
}

.results-showcase h2 {
  font-size: 2.5rem;
    margin-bottom: 60px;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap: 40px;
   max-width   :      1000px;
  margin: 0 auto;
}

.stat-item {
  display     :     flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
    font-size: 3rem;
  font-weight: 700;
    color: white;
  margin-bottom: 10px;
}

.stat-label {
     font-size: 1.1rem;
                    opacity: 0.9;
    text-align: center;
	
}

.why-choose-us {
    padding     :100px 20px;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
  margin-bottom: 60px;
}

.reasons-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap    :    30px;
}

.reason-item {
    border-radius: 12px;
    background :   #f8f9fa;
   padding: 30px;
  text-align: center;
}

.reason-item h4 {


	color: #2c5aa0;
   margin-bottom: 15px;
   font-size: 1.3rem;
}

.cta-about {
    padding: 100px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-about h2 {
	font-size: 2.5rem;
    color: #1a1a1a;
	margin-bottom: 25px;
}

.cta-about p {
   font-size: 1.2rem;
         color: #666;
    margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou-hero		{
   padding: 140px 20px 80px;
    text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%); 
	
}

.thankyou-content


{
   max-width: 600px;
 margin: 0 auto;
}

.success-icon {
  margin-bottom: 40px;
}

.checkmark {
  width: 80px;
    height: 80px;
                    border-radius: 50%;
  display: block;
   stroke-width: 3;
    stroke: #2ecc71;
   stroke-miterlimit: 10;
  margin: 0 auto;
    position: relative;
	background: white;
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.checkmark-circle {
   stroke-dasharray: 166;
  stroke-dashoffset: 166;
    stroke-width: 3;
	stroke-miterlimit: 10;
   stroke: #2ecc71;
    fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
   position: absolute;
 top: 0;
  left: 0;
	width: 100%;
   height: 100%;
    border-radius: 50%;
  border: 3px solid #2ecc71;
}

.checkmark-stem 
 {
   stroke-dasharray: 48;
   stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  position: absolute;
  top     :       50%;
  left: 35%;
    width: 15px;
  height: 3px;
    background: #2ecc71;
  transform: rotate(45deg);
}

.checkmark-kick {
                    stroke-dasharray     : 78;
  stroke-dashoffset: 78;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    position: absolute;
    top: 45%;
  left: 45%;
  width: 25px;
  height: 3px;
    background: #2ecc71;
  transform: rotate(-45deg);
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}.thankyou-content h1 {
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
		 font-size: 3rem;
}

.thankyou-message {

	    font-size: 1.2rem;
	                    color: #666;
	   line-height: 1.6;


}

.next-steps		{
  padding: 100px 20px; 

}

.next-steps h2 {

	    text-align :        center;
   font-size: 2.5rem;
   color: #1a1a1a;
  margin-bottom: 60px;


}

.steps-timeline {

   margin: 0 auto;
  max-width     :       800px;
     }

.timeline-item

{
  display: flex;

    gap :    30px;

  margin-bottom: 40px;

    align-items: flex-start;
}

.timeline-marker {
   width: 50px;
	   height: 50px;
	   background: #2c5aa0;
	  color: white;
	   border-radius: 50%;
	  display: flex;
	      align-items   : center;
		 justify-content: center;
	    font-weight: bold;
	  font-size: 1.2rem;
	  flex-shrink: 0;
}

.timeline-content h3   {
	    color: #2c5aa0;
  margin-bottom: 10px;
	 font-size: 1.3rem; 
	


}

.timeline-duration {
   display: inline-block;
  font-size: 0.9rem;
    color: #2c5aa0;
	background   :  #e8f2ff;
   margin-top: 10px;
    padding: 5px 15px;
  border-radius: 20px;
  font-weight     :    600;
}

.what-to-expect     {
  padding: 100px 20px;
                    background-color: #f8f9fa;
}

.expect-layout {
   display: flex;
	gap: 60px;
    align-items    :center;
}

.expect-content{
  flex: 1;
}

.expect-content h2 {
   font-size: 2.5rem;

	   color: #1a1a1a;

	   margin-bottom: 30px;
}

.expect-items {
  display: flex;

	  gap: 25px;

	                    flex-direction: column;
}

.expect-item {
   padding: 25px;
   background: white;
                    border-radius: 8px;
   border-left: 4px solid #2c5aa0;
}

.expect-item h4


{


   color: #2c5aa0;
          margin-bottom: 10px;


}

.expect-visual {
  flex: 1;
}

.expect-visual img {

	   width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);


}

.resources-section {
  padding: 100px 20px;
}

.resources-section h2 {
    color: #1a1a1a;
    margin-bottom    :       25px;
  text-align: center;
  font-size     :        2.5rem;
}

.resources-intro {
    text-align: center;
    font-size: 1.2rem;
 color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
   margin-right: auto;

}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 40px;
}



.resource-item {
   background: white;
  border-radius: 12px;
               overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-5px);
}

.resource-item img {
      width: 100%;
	 height: 200px;
   object-fit: cover;
}

.resource-content {
   padding: 30px;
	}

.resource-content h4 {
   color: #2c5aa0;
    margin-bottom: 15px;
  font-size: 1.3rem;
}

.resource-link {
    color: #2c5aa0;
  text-decoration: none;
    font-weight: 600;
 transition: color 0.3s ease;
}

.resource-link:hover {
  color: #1e3d6f;
}

.contact-reminder {
  padding: 100px 20px;
      background-color    :#f8f9fa;
   text-align    :  center;
}

.reminder-content h2 {
   font-size   :   2.5rem;

	   color: #1a1a1a;

	         margin-bottom    :    25px;
}

.reminder-content p {
   font-size: 1.2rem;
   color: #666;
    margin-bottom: 40px;
}

.contact-info-quick	{
			display: flex;
    gap: 60px;
  justify-content: center;
   flex-wrap: wrap;
}

.contact-info-quick .contact-item {
    text-align: left; 
	
}

.contact-info-quick .contact-item strong {
   display: block;
   color: #2c5aa0;
    margin-bottom: 5px;
  font-size: 1.1rem;
}

.navigation-section {
  padding: 60px 20px;
	 text-align     :       center;
}

.nav-options {
   gap :  20px;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
}

.nav-button {


   padding: 16px 32px;
	          text-decoration: none;
	  border-radius: 8px;
	 font-weight: 600;
	  transition: all 0.3s ease;
	   display: inline-block;
	}

.nav-button.primary {
  background-color: #2c5aa0;
  color: white;
}

.nav-button.primary:hover {
  background-color: #1e3d6f;
  transform: translateY(-2px);
}

.nav-button.secondary {
    background-color: transparent;
    color: #2c5aa0;
          border: 2px solid #2c5aa0; 

}

.nav-button.secondary:hover{
    background-color: #2c5aa0;
   color: white;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-layout,
    .methodology-layout,
    .expect-layout {
        flex-direction: column;
    }
    
    .mv-grid,
    .expertise-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-info-quick {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-options {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}.policySection {
    background: #f8f9fa;
  padding: 80px 2rem;
}

.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;
    }
}