* {
      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;


}

.nav-wrapper {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	padding: 1.2rem 0;
    position: sticky;
   top: 0;
   z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.nav-content-holder {
  max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
   display: flex;
   justify-content: space-between;
  align-items: center;
}

.brand-section .logo-link {
   display: block;
}

.brand-logo {
	     height: 52px; 
               width: auto;
	}

.menu-trigger {
  display: none;
  background: none;
    border: none;
  cursor: pointer;
   flex-direction: column;
    gap :     5px;
}

.burger-line {
	width: 28px;
  height   :    3px;
   background: #fff;
   transition: all .3s ease;
}

.nav-links-container {
   display: flex;
  gap    :   2.5rem;
   align-items: center;
}

.nav-item {
  text-decoration: none;
      font-size: 1.05rem;
  position: relative;
  transition: color .3s ease;
   color: #ffffff;
  font-weight: 500;
}

.nav-item:hover
	{
   color: #ffd700;
}

.nav-item::after {
  content: '';
    position: absolute;
  bottom: -5px;
   left: 0;
  width: 0;
    height: 2px;
   background: #ffd700;
    transition: width .3s ease;
}



.nav-item:hover::after {
   width: 100%;
}

.contact-link {
  background: #ffd700;
    color: #1e3c72;
	padding: .6rem 1.5rem;
  border-radius: 25px;
   font-weight: 600; 

}

.contact-link:hover {
    background: #ffed4e;
   color   :  #1e3c72;
}

.contact-link::after {
  display: none;
}

.hero-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               padding: 5rem 0;
  color    :  white;

} 

.hero-inner {
   max-width  :       1320px;

	   margin: 0 auto;

	        padding: 0 2rem;

	       display: grid;

	   grid-template-columns: 1fr 1fr;

		gap: 4rem;

	   align-items: center;
}

.hero-text-zone h1 {
        margin-bottom: 1.5rem;
   line-height: 1.2;
  font-size: 3.2rem;
}

.hero-description {


	font-size:  1.25rem;
    margin-bottom: 2rem;
    opacity: .95;
}



.primary-action-btn {
	display: inline-block;
  background: #ffd700;
  color: #1e3c72;
    padding: 1rem 2.5rem;
  text-decoration: none;
   border-radius: 30px;
   font-weight  :        700;
    font-size: 1.1rem;
    transition: all .3s ease;
  box-shadow: 0 6px 20px rgba(255,215,0,.4);
}

.primary-action-btn:hover {
   background: #ffed4e; 
  transform: translateY(-3px); 
  box-shadow: 0 8px 25px rgba(255,215,0,.5);


}

.hero-visual-zone {
   position: relative;
} 

.hero-image {
    width: 100%;
   height: auto;
  border-radius     :     15px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
}

.intro-segment {
    padding: 5rem 0;
  background: #f8f9fa;
}

.segment-container  
  {
   max-width     :       1320px;
   margin: 0 auto;
	 padding: 0 2rem;
}

.section-heading {
    margin-bottom: 1.5rem;
  font-size: 2.5rem;
  text-align: center;
  color: #1e3c72;
	}

.intro-text {
    margin: 0 auto 3rem;
   color   :        #555;
   font-size: 1.15rem;
  max-width: 900px;
  text-align: center;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
   margin-top: 3rem;
}

.feature-card {
  background     :white;
  padding: 2rem;
  border-radius :  12px;
  box-shadow: 0 5px 20px rgba(0,0,0,.08);
  transition: transform .3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}


.feature-title {
   font-size: 1.5rem;
  color: #2a5298;
          margin-bottom: 1rem;
}

.feature-info    {
  color: #666;
	line-height: 1.7;
}

.visual-showcase {
    padding: 5rem 0;
   background   :     white;
}

.showcase-wrapper {
        gap: 4rem;
               display: grid;
  max-width: 1320px;
   align-items: center;
    grid-template-columns: 1fr 1fr;
  padding: 0 2rem;
    margin: 0 auto;


}

.showcase-img {
   width: 100%;
	 border-radius    : 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.showcase-title {
   font-size: 2.2rem;
   color: #1e3c72;
  margin-bottom  :     1.5rem;
}

.showcase-text {
   font-size: 1.08rem;
  color:    #555;
   margin-bottom     :  1.2rem;
   line-height: 1.8;
}

.services-overview {
    padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-container {
    max-width: 1320px;
   margin: 0 auto;
   padding: 0 2rem;
}

.centered  {
   text-align: center;
}

.services-layout {

		 display  :grid; 
	  grid-template-columns: repeat(3, 1fr); 
		gap: 2.5rem; 
	  margin-top: 3rem;
}

.service-box {
    background: white;
    border-radius    :    12px;
    overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
  transition: all .3s ease;
}

.service-box:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
}

.service-image  {
  width: 100%;
       height: 240px;
      object-fit: cover;
}



.service-details
	{
    padding: 2rem;
}

.service-name {
   font-size:   1.6rem;
    color: #2a5298;
  margin-bottom: 1rem;
}

.service-description {
    color: #666;
  line-height: 1.7;
}

.cta-section

{
        padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
 color: white;
}

.cta-content-wrapper {
  max-width: 900px;
   padding: 0 2rem;
   margin: 0 auto;
}

.cta-headline {
	 font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.cta-subtext {
    font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: .95;
}

.cta-button-large {
    display: inline-block;
  background: #ffd700;
    color: #1e3c72;
  padding: 1.2rem 3rem;
  text-decoration: none;
    border-radius: 35px;
  font-weight:  700;
    font-size: 1.15rem;
  transition: all .3s ease;
  box-shadow: 0 8px 25px rgba(255,215,0,.4);
}

.cta-button-large:hover {
  background: #ffed4e;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255,215,0,.5);
}

.testimonials-area {
    padding: 5rem 0;
  background: #f8f9fa;
} 

.testimonials-holder {
  max-width: 1320px;
    margin: 0 auto;
      padding: 0 2rem;
}

.testimonial-grid {
       display    :     grid;

	  grid-template-columns: repeat(3, 1fr);

	  gap    :        2.5rem;

	  margin-top: 3rem;


}

.testimonial-item {
          background  :   white;
 padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,.08);
  position:       relative;
}

.testimonial-quote {
        font-style: italic;
   color: #555;
  margin-bottom    : 1.5rem;
	line-height: 1.7;
   font-size: 1.05rem;
}

.testimonial-author {
     font-weight: 600;
   color:  #2a5298;


}

.contact-section {
	padding: 5rem 0;
    background: white;
}

.contact-wrapper {
    max-width    :        1320px;
  margin :        0 auto;
    padding: 0 2rem;
   display: grid;
   grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-heading {
   font-size: 2.2rem;
    color: #1e3c72;
      margin-bottom: 1.5rem; 

}

.contact-intro {
   font-size: 1.1rem;
  color: #555;
   margin-bottom: 2rem;
  line-height: 1.7;
}


.contact-details {
  flex-direction: column;
   display: flex;
   gap : 1.5rem;
}

.detail-item strong {
     color: #2a5298;
   display: block;
    margin-bottom: .5rem;

}

.detail-item p {
                    color: #666;
}

.main-contact-form {
   background: #f8f9fa;
	   padding: 2.5rem;
	    border-radius: 12px;
	  box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.form-group {
 margin-bottom: 1.5rem;
}

.form-label {
    display: block;
     margin-bottom: .5rem;
                       color: #2c3e50;
       font-weight: 600;
}

.form-control {
    font-size: 1rem;
	 width: 100%;
   border :      2px solid #ddd;
         transition: border-color .3s ease;
    padding: .9rem;
  border-radius: 8px;
}

.form-control:focus {
    border-color: #667eea;
  outline: none;
}


.textarea-field     {
		 resize: vertical;
    min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	   color: white;

	   padding: 1rem 2.5rem;

	  border: none;

	    border-radius: 30px;

	  font-size: 1.1rem;

	  font-weight   :  600;

		cursor: pointer;

	  transition: all .3s ease;

	  box-shadow: 0 5px 15px rgba(102,126,234,.3);
}

.submit-btn:hover {
	  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102,126,234,.4);
}

.site-footer {
   background: #1a1a2e;
    color: white;
    padding: 3rem 0 1.5rem;
} 

.footer-content {
  max-width: 1320px;
       margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
   margin-bottom: 2rem;
}



.footer-logo {

	  height     :  48px;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);

     }

.footer-description {
    color: #b8b8b8;
    line-height: 1.6;
}

.footer-heading {
	font-size   :      1.2rem;
   margin-bottom: 1rem;
  color: #ffd700;
} 

.footer-links {
  list-style    :    none;
}



.footer-links li {
  margin-bottom: .7rem;
     }


.footer-links a {
  color: #b8b8b8;
 text-decoration: none;
    transition: color .3s ease;
}

.footer-links a:hover {
   color :        #ffd700;
}

.footer-column p {
   color: #b8b8b8;
	line-height: 1.6; 
	
}

.footer-bottom {
   max-width: 1320px;
    margin   :0 auto;
          padding: 1.5rem 2rem 0;
    border-top:  1px solid #333;
   text-align: center;
		color: #888;
}@media (max-width: 968px) {
    .menu-trigger {
        display: flex;
    }
    
    .nav-links-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e3c72;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }
    
    .nav-links-container.active {
        max-height: 400px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
    }
    
    .hero-text-zone h1 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero-text-zone h1 {
        font-size: 1.8rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}.page-hero-section {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%); 
	   padding:      4rem 0; 
	  color   :#fff; 
	          text-align: center;
}

.page-hero-content
{
  max-width: 1320px;
   margin: 0 auto;
    padding: 0 2rem;
}

.page-main-title {
	 font-size :    3rem; 
			 margin-bottom: 1rem;
}

.page-hero-text {
    font-size: 1.3rem;
  opacity: .9;

}

.story-segment {


    padding: 5rem 0;
    background: #ffffff;
}

.story-wrapper {
    max-width: 1320px;
  margin: 0 auto;
               padding: 0 2rem;
   display:        grid;
  grid-template-columns:  1.2fr 1fr;
  gap: 4rem;
    align-items    :     center;
}

.story-headline {
  font-size: 2.3rem;
 color: #1e3c72;
  margin-bottom: 1.5rem;
}

.story-paragraph {
	    font-size: 1.08rem;
  color: #555;
   line-height: 1.8;
   margin-bottom: 1.3rem;


}

.story-img {
   width: 100%;
	    border-radius: 15px;
	  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.mission-values-block
	{
    padding: 5rem 0;
    background: #f8f9fa;
}

.mission-container {


	padding: 0 2rem;
    max-width: 1320px;
         margin: 0 auto;


}

.centered-heading {
	font-size     :        2.5rem;
       color: #1e3c72;
   text-align: center;
    margin-bottom: 3rem;
}

.values-layout {
    display    :      grid;
  grid-template-columns: repeat(3, 1fr);
					gap  :       2.5rem;
}

.value-box {

	background: white;
       padding: 2.2rem;
   border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.09);


}

.value-name {
  font-size: 1.6rem;
  color: #2a5298;
    margin-bottom: 1rem;
}

.value-text {
   color: #666;
	 line-height: 1.7;
}

.approach-section 
 {
   padding: 5rem 0;

	    background   : white;
}

.approach-content-holder {
  max-width: 1320px;
   margin: 0 auto;
    padding: 0 2rem;
    display: grid;
          grid-template-columns   :   1fr 1.3fr;
    gap: 4rem;
}

.approach-photo {
               width     :     100%;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

.approach-title {
   font-size: 2.2rem;
   color: #1e3c72;
  margin-bottom   :        1.5rem;
}

.approach-description {
   font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
   line-height: 1.7;
}

.approach-steps {
      display :       flex;
   flex-direction: column;
   gap: 2rem;
}

.step-item {
    display: flex;
    gap:    1.5rem;
    align-items: start;


}

.step-number {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
                    width :    55px;
  height: 55px;
    border-radius: 50%;
   display   :  flex;
          align-items:    center;
    justify-content: center;
   font-size: 1.4rem;
  font-weight: 700;
   flex-shrink: 0;


}

.step-title  {
  font-size    :     1.3rem;
	 color: #2a5298;
   margin-bottom: .5rem;
}

.step-desc {
     line-height   :    1.6;
  color: #666;
}

.stats-showcase {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.stats-container {
          max-width: 1320px;
   margin: 0 auto;
  padding: 0 2rem;
   text-align: center;


}

.stats-main-title {
     font-size: 2.5rem;
       margin-bottom: 3rem;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
   display: grid;
}

.stat-card {
  background: rgba(255,255,255,.15);
				 padding: 2.5rem 1.5rem;
   border-radius: 12px;
  backdrop-filter: blur(10px);
	transition: transform .3s ease;
}

.stat-card:hover {
	  transform: translateY(-8px);
  background: rgba(255,255,255,.22);
	}

.stat-value {
    font-size: 3rem; 
		font-weight: 700; 
	    margin-bottom: .5rem;
}

.stat-label {

   font-size: 1.1rem;
   opacity: .95;

}

.expertise-area {
    padding: 5rem 0;
   background: white;
}

.expertise-wrapper {

		max-width: 1320px;
  margin: 0 auto;
    padding: 0 2rem;
	}

.expertise-intro{
    text-align: center;
  font-size: 1.1rem;
	 color: #555;
	max-width: 800px;
         margin:     0 auto 3rem;
}

.expertise-columns {

   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap     :        3rem;
	}

.expertise-col	{
   text-align: center;
}

.expertise-image 
 {
   width: 100%;
  height: 220px;
  object-fit: cover;
   border-radius: 10px;
  margin-bottom:       1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
	
}

.expertise-heading

{
	font-size: 1.5rem;
     color: #2a5298;
    margin-bottom :  1rem;
}

.expertise-details {
   color: #666;
   line-height: 1.7;


}

.why-us-segment {
   padding: 5rem 0;
   background     :  #f8f9fa;
}

.why-us-holder {
  padding: 0 2rem;
  max-width: 1100px;
   margin     :  0 auto;
}

.why-heading {
  font-size: 2.5rem;
	color: #1e3c72;
   text-align: center;
  margin-bottom: 3rem;
}

.reasons-list {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.reason-element

{
		background: white;
    padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 5px 18px rgba(0,0,0,.08);
     }

.reason-title {
     font-size: 1.4rem;
  color: #2a5298;
   margin-bottom: .8rem;
}

.reason-explanation {
    color: #666;
	line-height: 1.7;
}

.cta-about-section {
  padding    :  4rem 0;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  text-align: center;
   color: white;
}  

.cta-about-wrapper {

	    max-width :      900px;
   margin: 0 auto;
        padding: 0 2rem; 

}

.cta-about-title {
	font-size: 2.5rem;
  margin-bottom: 1.2rem;
}


.cta-about-description {
    opacity: .95;
    margin-bottom     :       2rem;
   font-size: 1.15rem;
}

.cta-about-button {
   display: inline-block;
     background:      #ffd700;
   color: #1e3c72;
   padding: 1rem 2.5rem;
    text-decoration: none;
  border-radius: 30px;
   font-weight: 700;
  font-size  :      1.1rem;
    transition: all .3s ease;
}

.cta-about-button:hover {
   	background: #ffed4e;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
     }

.thankyou-main-section {

	         padding     :     5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 70vh;


}  

.thankyou-content-box {
   max-width: 900px;
   margin: 0 auto;
          padding: 3rem 2rem;
	 background: white;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
  text-align: center;
}

.thankyou-icon-wrapper {
                    margin-bottom: 2rem;
}

.success-checkmark {
    width: 90px;
     height: 90px;
    margin: 0 auto;
}

.check-icon {
    width: 90px;
   height: 90px;
  position: relative;
    border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4bb543;
}

.check-icon::before {

	  top: 3px;
  left: -2px;
  width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
	
}

.check-icon::after {
    top: 0;
   left: 30px;
  width: 60px;
    transform-origin: 0 50%;
   border-radius: 0 100px 100px 0;
    animation: rotate-circle .4s ease-in;
}

.icon-line	{
    height: 5px;
  background-color: #4bb543;
          display: block;
   border-radius: 2px;
	position: absolute;
    z-index: 10;
}

.icon-line.line-tip 
 {
  top: 46px;
   left: 14px;
    width: 25px;
  transform: rotate(45deg);
   animation: icon-line-tip .75s;
}

.icon-line.line-long {
   top: 38px;
  right: 8px;
	 width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long .75s;
}

.icon-circle {
      top: -4px;
   left: -4px;
   z-index: 10;
    width: 90px;
  height:     90px;
    border-radius: 50%;
  position: absolute;
   box-sizing: content-box;
  border: 4px solid rgba(76, 181, 67, .5);
}

.icon-fix {
    top: 8px;
  width: 5px;
    left: 26px;
  z-index: 1;
   height: 85px;
  position: absolute;
  transform: rotate(-45deg);
    background-color: white;
}@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@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: 0;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}.thankyou-heading {
	font-size: 2.5rem;
	   color: #1e3c72;
	  margin-bottom: 1rem;
}

.thankyou-message {
    font-size: 1.2rem;
    color: #555;
  margin-bottom: 1rem;
    line-height: 1.6;
}

.thankyou-submessage {
               font-size: 1.05rem;
    color: #777;
     margin-bottom: 2.5rem;
}

.thankyou-actions {
  display: flex;
	 gap: 1.5rem;
	justify-content: center;
  margin-bottom: 3rem; 

}

.btn-primary-thank {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
  border-radius: 30px;
   font-weight  : 600;
   transition: transform .3s ease;
}

.btn-primary-thank:hover {
  transform: translateY(-3px);
}

.btn-secondary-thank {
	 background: white;
   color: #667eea;
   padding: 1rem 2rem;
  text-decoration: none;
   border-radius     :   30px;
    font-weight: 600;
       border: 2px solid #667eea;
	transition: all .3s ease;
}

.btn-secondary-thank:hover {
	 background: #667eea;
    color: white;
}

.next-steps-block {
    margin-top: 3rem;
    text-align: left;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.next-steps-title {
   font-size: 2rem;
    color: #2a5298;
    margin-bottom: 2rem;
    text-align   :    center;
}

.steps-timeline {


  display: flex;
	 flex-direction: column;
       gap: 2rem;
	}

.timeline-step 
 {

   display: flex;
      gap: 1.5rem;
   align-items: start;

}

.step-marker {
    background: #667eea;
   color   : white;
    width :  50px;
  height: 50px;
  border-radius: 50%;
	display: flex;
  align-items:  center;
  justify-content: center;
    font-size: 1.3rem;
  font-weight: 700;
    flex-shrink: 0;
}

.step-heading {
   font-size: 1.3rem;
    color     :     #2a5298;
  margin-bottom: .5rem;
}

.step-text {
  color: #666;
		 line-height: 1.6;
}

.additional-resources     {
	                    margin-top: 3rem;
   text-align: left;
   padding: 2rem;
	 background: #f8f9fa;
    border-radius:   10px;
	
	}

.resources-title   {
  font-size :     1.8rem;
  color: #2a5298;
  margin-bottom: 1rem;
}

.resources-intro
{
    color: #555;
  margin-bottom:  1.5rem;
	line-height: 1.6;
}

.resources-list {

   list-style-position: inside;
   color: #666;
    line-height: 2;

}

.resources-list li {
   padding-left: 1rem;
}

.contact-info-section {
   padding: 4rem 0;
  background: white;
}

.contact-info-wrapper {

	    max-width: 800px;
    margin: 0 auto;
	padding: 0 2rem;
  text-align: center;
}

.contact-info-heading {
   font-size: 2rem; 
	  color: #1e3c72; 
	       margin-bottom: 1rem;
}

.contact-info-text {
   font-size  :       1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-methods {
             display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
    max-width: 600px;
  margin     :       0 auto; 
	
     }

.contact-method-item	{
  background: #f8f9fa;
   padding:      1.5rem;
   border-radius: 10px;
}


.contact-method-item strong
{
 color: #2a5298;
	display: block;
	margin-bottom: .5rem;
}

.contact-method-item p

{
    color: #666;
}@media (max-width: 968px) {
    .story-wrapper {
        grid-template-columns: 1fr;
    }
    
    .values-layout {
        grid-template-columns: 1fr;
    }
    
    .approach-content-holder {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-columns {
        grid-template-columns: 1fr;
    }
    
    .reasons-list {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-main-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-heading {
        font-size: 1.8rem;
    }
}.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 {
  font-size     :      1.1rem;
   margin-bottom   :        1.5rem;
    line-height: 1.7;
	 color: #7f8c8d;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}