* {
	 margin:0;
  padding: 0;
	 box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
   line-height: 1.6;
    color: #333;
   background-color: #fafafa;
}

.container {
    max-width: 1200px;
	 margin: 0 auto;
  padding     :   0 20px;
}

.navigation-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
  top     :       0;
   width: 100%;
    z-index: 1000;
   border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
    display: flex;
    justify-content: space-between;
   align-items    : center;
   height: 70px;
}

.brand-zone {

   display: flex;
  align-items: center;}

.logo-img {
    height: 45px;
   width: auto;
}

.nav-links {
   list-style: none;
    display: flex;
   gap: 2rem;
}

.nav-link {
   text-decoration: none;
         color: #475569;
   font-weight: 500;
     transition: color 0.3s ease;
  padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
  background-color: rgba(37, 99, 235, 0.1);
}

.menu-toggle {
   display: none;
   flex-direction: column;
    cursor: pointer;
   padding: 5px;
}

.bar {

    height: 3px;
  transition: 0.3s;
  width  :    25px;
  margin     :     3px 0;
    background-color     :      #475569;


}

.hero-section {
    padding: 120px 20px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {

    max-width: 1200px;
   margin: 0 auto;
  display: grid;
	grid-template-columns: 1fr 1fr;
        gap: 4rem;
  align-items  :       center;


}

.main-heading {
	font-size :  3.5rem;
  font-weight: 700;
    color: #1e293b;
   margin-bottom: 1.5rem;
   line-height: 1.1;
}

.hero-description {
	font-size: 1.25rem;
   color: #64748b;
	margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
       display: flex;
   gap: 1rem;
                    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {

  padding: 1rem 2rem;
   -webkit-border-radius: 8px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  border-radius: 8px;
    text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
    display   :        inline-block;


}

.primary-btn {
   background   :   #2563eb;
    color: white;
	 border: 2px solid #2563eb;
}

.primary-btn:hover 
 {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.secondary-btn {
	background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.secondary-btn:hover
{
   background: #2563eb;
    color: white;
  transform: translateY(-2px);
}

.hero-image {
    width: 100%;
   height: auto;
  border-radius    :       12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

}

.services-overview {
  padding: 80px 20px;
    background: white;
	
}

.section-title 
 {
  text-align: center;
   font-size: 2.5rem;
  color: #1e293b;
                    margin-bottom: 3rem;
    font-weight: 700; 

}

.services-grid
	{
       display:     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 2rem;
	}

.service-card {
   background: white;
       padding: 2.5rem;
          border-radius: 12px;
      text-align: center;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid #f1f5f9;
}

.service-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	
}

.service-icon-area  {
	margin-bottom: 1.5rem;
}

.service-visual {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 50%;
   margin: 0 auto;
   display:    flex;
   align-items: center;
   justify-content: center;
	
}

.service-card h3 {
   font-size: 1.5rem;
  color  :        #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;

}

.service-card p {
	color: #64748b;
  line-height: 1.6;
}

.methodology-showcase {
  padding: 80px 20px;

  background: #f8fafc;
}

.methodology-content    {
   display: grid;
    align-items: center;
    gap    :     4rem;
          grid-template-columns: 1fr 1fr;
}

.method-description h2 {
   font-size   :2.5rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.method-intro {
	  font-size: 1.25rem;
          color: #64748b;
    margin-bottom: 2.5rem;
	line-height: 1.7;

}

.features-list {
  display: flex;
  flex-direction: column;
    gap     :       1.5rem;
}

.feature-item h4 {
   color: #1e293b;
  font-size: 1.25rem;
    margin-bottom: 0.5rem;
   font-weight: 600;
}

.feature-item p {
  color: #64748b;
         line-height: 1.6;
}

.method-image {
    width:       100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); 

}

.training-programs {
   padding: 80px 20px;
    background: white;
}

.programs-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
   background: white;
  border-radius: 12px;
  overflow    :     hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.program-card:hover {
  transform: translateY(-5px);
}


.program-card.featured {
                    border   :      2px solid #2563eb;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

.program-image {
  height: 200px;
	overflow: hidden;
}

.program-img	{
    width: 100%;
  height: 100%;
   object-fit: cover;
}

.program-details {
   padding: 2rem;
}

.program-details h3 {
	 font-size: 1.5rem;
     color    :#1e293b;
    margin-bottom: 1rem;
  font-weight: 600;
}

.program-details p {
    color: #64748b;
   line-height: 1.6;
   margin-bottom: 1.5rem;
}

.program-benefits {
  list-style : none;
  padding: 0;
}

.program-benefits li    {
    color: #64748b;
   padding: 0.5rem 0;
	position: relative;
    padding-left: 1.5rem;
}

.program-benefits li:before {
  content: "✓";
         color: #10b981;
  font-weight  :    bold;
    position: absolute;
    left: 0;

}

.cta-section {
                    padding: 80px 20px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
     color: white;
    text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
	font-size: 1.25rem;
    margin-bottom   :   3rem;
    opacity: 0.9;
   max-width    :    800px;
   margin-left: auto;
  margin-right:    auto;
}

.cta-stats {
	  display: flex;
    justify-content: center;
  gap: 3rem;
     margin-bottom: 3rem;
    flex-wrap: wrap;


}

.stat-item {
   text-align: center;
}

.stat-number {
  display: block;
    font-size: 3rem;
         font-weight: 700;
   margin-bottom :0.5rem;
}

.stat-label {
  font-size: 1rem;
     opacity: 0.8;
}

.cta-button	{
    background: white;
        color: #2563eb;
	 padding: 1.25rem 2.5rem;
   border-radius   :      8px;
	text-decoration: none;
  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.3);
}

.contact-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.contact-wrapper {

   display: grid;
    grid-template-columns: 1fr 1fr;
               gap: 4rem;
	}

.contact-info h2 {
   font-size: 2.5rem;
            color: #1e293b;
       margin-bottom: 1.5rem;
       font-weight: 700;
}

.contact-info p 
 {
	font-size: 1.25rem;
   color: #64748b;
 margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
  display: flex;
          flex-direction: column;
  gap: 1.5rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
  font-weight: 600;
  font-size   :     1.25rem;
    color: #1e293b; 

}

.contact-item p {
   color    :   #64748b;
    line-height: 1.6;
   margin: 0;
	
}

.contact-form {
   background: white;
	padding: 2.5rem;
   border-radius    :12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {

   margin-bottom: 1.5rem;}

.form-row {
    grid-template-columns: 1fr 1fr;
  display :       grid;
  gap: 1rem;
}

.form-group label {

  font-weight    : 500;
   color: #374151;
   margin-bottom: 0.5rem;
	 display: block;


}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus

{
  outline: none;
    border-color   : #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
   padding: 1rem 2rem;
                    width: 100%;
   cursor: pointer;
  border-radius: 8px;
	transition: all 0.3s ease;
  border: none;
    font-size: 1.1rem;
    background: #2563eb;
    font-weight: 600;
   color: white;
}

.submit-btn:hover {
	 background: #1d4ed8;

  transform: translateY(-2px);
}

.site-footer {
    background: #1e293b;
   padding: 60px 20px 20px;
   color: white;
}

.footer-content {
       display: grid;
   grid-template-columns: 1fr 2fr;
    gap: 3rem;
   margin-bottom: 2rem;
}

.footer-brand p {
   margin-top: 1rem;
  opacity     :  0.8;
  line-height: 1.6;


}

.footer-logo{
   height: 40px;

    width     :   auto;

  filter: brightness(0) invert(1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1rem;
   color: white;
    font-weight: 600;
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: 0.5rem;

}

.link-group a {
  color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
  transition: color 0.3s ease;
} 

.link-group a:hover {
          color: white;
}

.footer-bottom {
	  border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
   text-align  :   center;
	 opacity: 0.8;
     }@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .primary-btn, .secondary-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card, .contact-form {
        padding: 1.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }
}.about-hero {
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color    :   white;
	text-align: center;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-subtitle {
   font-size: 1.5rem;
   opacity: 0.9;
	 max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

.company-story {
	padding: 80px 20px;
         background: white;
}

.story-layout {
    display: grid;
   grid-template-columns: 2fr 1fr;
        gap: 4rem;
   align-items :      start;
}


.story-content h2 {
  font-weight: 700;
    color    :       #1e293b;
   font-size: 2.5rem;
	margin-bottom     :    1.5rem;
}

.story-intro {
     font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 3rem;
    line-height: 1.7;
}

.timeline-section {

	  position: relative;


}

.timeline-section::before {
  content: '';
    position: absolute;
    left: 20px;
    top: 0;
   bottom    :       0;
  width:     2px;
   background: #e2e8f0;
}

.timeline-item {
    display: flex;
   margin-bottom    :     3rem;
       position: relative;
}

.timeline-year {
  display   :flex;
  background: #2563eb;
   border-radius: 20px;
       position: relative;
   align-items: center;
    font-weight :       600;
	margin-right: 2rem;
  color: white;
  z-index: 2;
    height:    40px;
  justify-content: center;
   width  : 80px;
}

.timeline-content h4 {
   color :      #1e293b;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
   font-weight: 600;
}

.timeline-content p {
  color: #64748b;
   line-height: 1.6;
}

.story-image {
   width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
    top: 100px;
}

.methodology-deep {
  padding: 80px 20px;
    background: #f8fafc;
}

.methodology-grid {
  display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.method-card {
  background: white;
   border-radius :      12px;
   overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease; 

}

.method-card:hover {
  transform: translateY(-5px);
}

.method-header
{
	  background: linear-gradient(135deg, #2563eb, #1d4ed8);

	  color: white;

	  padding     :  1.5rem;

}

.method-header h3     {
   font-size: 1.5rem;

     font-weight: 600;

  margin: 0;
	}

.method-content {
   padding: 2rem;
}

.method-content p {
    color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.method-features {
  list-style     : none;
    padding: 0;
}

.method-features li {
    color: #64748b;
  padding: 0.5rem 0;
    position: relative;
  padding-left     :       1.5rem;
}

.method-features li:before {
  content: "→";
				 color: #2563eb;
	 font-weight   :        bold;
   position: absolute;
   left: 0;
}

.team-expertise {
    padding: 80px 20px;
       background: white;
}

.expertise-layout {
  align-items: center;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.expertise-item {
   margin-bottom: 2.5rem; 
	
} 

.expertise-item h3 {
    color  : #1e293b;
  font-size: 1.5rem;
   margin-bottom: 1rem;
    font-weight: 600;
	
}

.expertise-item p     {
    color: #64748b;
  line-height: 1.6;
}

.expertise-image {


  width: 100%;
               height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);


}

.achievements-showcase {
  padding     :      80px 20px;
	background: #f8fafc;
}

.achievements-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.achievement-card {
    background   :  white;
 padding: 2.5rem;
   border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition   :       transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-number {
   font-size: 3rem;
   font-weight: 700;
    color: #2563eb;
   margin-bottom: 1rem;
}

.achievement-card h4 {
  color: #1e293b;
   font-size: 1.25rem;
    margin-bottom:      1rem;
  font-weight: 600;
}

.achievement-card p {
  color: #64748b;
	line-height: 1.6;
}

.company-values {
	 padding  :80px 20px;
  background: white;
}

.values-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: center;
}

.value-item {
   margin-bottom: 2.5rem;
}  

.value-item h3 {
  color     : #1e293b;
       font-size: 1.5rem;
     margin-bottom: 1rem;
   	font-weight: 600; 

}

.value-item p {
	 color   :      #64748b;
  line-height:   1.6;
}

.values-image {
   width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-hero {
    padding: 120px 20px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.thankyou-content {
    gap: 4rem;
   margin: 0 auto;
	max-width: 1200px;
    grid-template-columns: 2fr 1fr;
  align-items: center;
    display: grid;
}

.thankyou-icon {
    text-align: center;
  margin-bottom: 2rem;
}

.success-checkmark {
   width: 80px;
   height: 80px;
  border-radius: 50%;
    display: block;
  stroke-width: 2;
  stroke:     #10b981;
   stroke-miterlimit: 10;
   margin: 0 auto 2rem;
    box-shadow: inset 0px 0px 0px #10b981;
   animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.success-checkmark .check-icon {
    width: 56px;
     height    :   56px;
   position: relative;
 border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #10b981;
  margin: 8px;
}

.success-checkmark .check-icon .icon-line	{
   height: 3px;
    background-color: #10b981;
    display: block;
   border-radius: 2px;
   position: absolute;
   z-index     : 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
   top    :       46%;
     left: 14px;
      width: 25px;
     transform: rotate(45deg);
      animation: icon-line-tip .75s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 38%;
   right: 8px;
   width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long .75s;
}

.success-checkmark .check-icon .icon-circle {
   top: -4px;
  left: -4px;
  z-index: 10;
   width: 60px;
               height: 60px;
  border-radius: 50%;
  position: absolute;
    box-sizing: content-box;
  border: 4px solid rgba(16, 185, 129, .2);
}

.success-checkmark .check-icon .icon-fix {
   top: 8px;
   width: 5px;
    left: 26px;
  z-index: 1;
    height: 85px;
    position: absolute;
  transform: rotate(-45deg);
  background-color: #f8fafc;
}@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}.thankyou-title {
    font-size: 3rem;
    font-weight: 700;
   color: #1e293b;
   margin-bottom: 1.5rem;
    line-height: 1.1;
}

.thankyou-subtitle 
 {
               font-size   :  1.25rem;
        color: #64748b;
  margin-bottom: 3rem;
    line-height: 1.7;
}

.next-steps {
       margin-bottom: 3rem;
}

.next-steps h3 {
  color: #1e293b;
	font-size:      1.75rem;
  margin-bottom: 2rem;
					font-weight   : 600;
}

.steps-grid {
    display: grid;
  grid-template-columns  : 1fr;
    gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items    :     flex-start;
   gap: 1rem;
}

.step-number {
    background: #2563eb;
  color: white;
    width: 40px;
    height    :     40px;
   border-radius: 50%;
   display:    flex;
    align-items: center;
  justify-content: center;
  font-weight    :  600;
   flex-shrink: 0;
}

.step-content h4 {
       color: #1e293b;
   font-size: 1.25rem;
  margin-bottom: 0.5rem;
    font-weight: 600;

}

.step-content p {
    color: #64748b;
   line-height: 1.6;
}

.additional-info {
  margin-bottom: 3rem;
}

.additional-info h3 {
    color: #1e293b;
    font-size: 1.5rem;
   margin-bottom: 1rem;
   font-weight: 600;
}

.additional-info p {
   color: #64748b;
  line-height: 1.6;
}

.thankyou-actions {
	 display: flex;
    gap: 1rem;
   flex-wrap: wrap;
}

.thankyou-image {
  width: 100%;
	height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-reminder {
   border-top: 1px solid #e2e8f0;

	  background    :    white;

	    padding: 60px 20px;
}

.reminder-content {
   text-align: center;
  max-width: 600px;
	margin: 0 auto;
}

.reminder-content h3 {

	    color: #1e293b;
  font-size: 1.75rem;
  margin-bottom: 1rem;
    font-weight: 600;
}

.reminder-content p {
   color: #64748b; 
	  font-size: 1.1rem; 
	   margin-bottom: 2rem; 
	    line-height: 1.6;
}

.contact-info-quick {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.contact-detail h4 {
   color: #1e293b;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
	font-weight     :       600;
}

.contact-detail p

{
    color: #64748b;
  line-height: 1.6;
    margin: 0;
}@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.25rem;
    }

    .story-layout,
    .expertise-layout,
    .values-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image,
    .expertise-image,
    .values-image {
        position: static;
    }

    .methodology-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .timeline-section::before {
        left: 15px;
    }

    .timeline-year {
        width: 60px;
        height: 30px;
        font-size: 0.9rem;
        margin-right: 1rem;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .thankyou-title {
        font-size: 2.5rem;
    }

    .thankyou-subtitle {
        font-size: 1.1rem;
    }

    .thankyou-actions {
        justify-content: center;
    }

    .contact-info-quick {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .method-card,
    .achievement-card {
        padding: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        align-self: flex-start;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}.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;
    }
}