*
	{
   margin     :       0;
    padding: 0;
  box-sizing: border-box;
}

body	{
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	 line-height: 1.6;
                    color: #2d3748;
   background: #ffffff;
}

.navbar-wrapper  
  {
      position: fixed;
    top: 0;
      width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
	 border-bottom: 1px solid #e2e8f0;
}

.primary-navigation {
    width: 100%;

}

.nav-container {
  align-items: center;
                    display: flex;
    margin     :   0 auto;
   padding: 1rem 2rem;
    max-width: 1200px;
  justify-content: space-between;
}

.brand-section .company-logo {
  height: 45px;
  width: auto;
}

.nav-links-desktop {
  display: flex;
	 gap: 2rem;
}

.nav-item


{
    text-decoration     :       none;
          color: #4a5568;
  font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
   color: #3182ce;
}

.nav-item.active::after {
  content: '';
        background: #3182ce;
  left: 0;
   height: 2px;
   width: 100%;
    position: absolute;
   bottom: -5px;
}

.mobile-menu-trigger {

	   display: none;
  flex-direction: column;
    cursor: pointer;
   gap: 4px;
	}

.burger-line {
	 width: 25px;
    height: 3px;
    background: #4a5568;
  transition: all 0.3s ease;
}

.mobile-nav-overlay {
   display     :        none;
               position: fixed;
	top: 70px;
  left: 0;
   width: 100%;
  height: calc(100vh - 70px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.mobile-nav-content {
    padding: 2rem;
       display: flex;
        flex-direction: column;
       gap: 1.5rem;
}

.mobile-nav-link {


    text-decoration: none;
   color: #4a5568;
      font-size: 1.1rem;
		font-weight: 500;
   transition: color 0.3s ease;


}

.mobile-nav-link:hover {
  color: #3182ce;
}

.content-wrapper {
    margin-top: 70px;
} 

.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
    padding  :  6rem 0;
  min-height: 80vh;
  display: flex;
	 align-items: center;
}

.hero-content-container {
  max-width: 1200px;
   margin    : 0 auto;
    padding: 0 2rem;
  display: grid;
    grid-template-columns :        1fr 1fr;
   gap: 4rem;
	align-items: center;
}

.main-headline {
    font-size: 3.5rem;
	font-weight: 700;
   line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
       margin-bottom: 2.5rem;
   opacity: 0.9;
}

.hero-actions {
   display: flex;
  gap: 1rem;
   flex-wrap: wrap;
}

.primary-cta-button,
.secondary-cta-button {
   padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
	 font-weight: 600;
   transition    :        all 0.3s ease;
    display: inline-block;
}

.primary-cta-button {
  background: #fff;
   color: #3182ce;
}

.primary-cta-button:hover {
    background: #f7fafc; 
  transform: translateY(-2px);}

.secondary-cta-button {
    background: transparent;
	color: white;
    border :        2px solid white;
}

.secondary-cta-button:hover {
  background: white;
  color : #3182ce;
}  

.hero-image {
    width: 100%;
  height: auto;
  border-radius  :12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.services-overview {
    padding:    6rem 0;
   background: #f7fafc;
}

.services-container {
   max-width:1200px;
    margin: 0 auto;
   padding: 0 2rem;
}

.section-header {
       text-align :      center;
    margin-bottom: 4rem; 
	
}

.section-title {
  font-size: 2.5rem;
      font-weight: 700;
   color  : #2d3748;
    margin-bottom: 1rem;
}

.section-subtitle {
   font-size:        1.1rem;
	      color    :   #718096;
	  max-width: 600px;
	   margin  :      0 auto;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
}

.service-card {
  background: white;
   border-radius: 12px;
        overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%; 
  height: 200px; 
   object-fit: cover;
}

.service-content {
          padding: 1.5rem;
}

.service-name
	{
   font-size: 1.3rem;
  font-weight: 600;
    margin-bottom: 0.75rem;
  color: #2d3748;
}

.service-description {
  color   :        #718096;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
               padding: 4rem 0;
 color: white;
}

.cta-container   {
    max-width: 800px;
    margin: 0 auto;
	 padding: 0 2rem;
  text-align: center;
}

.cta-headline {
  font-size: 2.5rem;
  font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
  font-size : 1.1rem;
	 margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-action-btn {


   background: white;
   color: #3182ce;
   padding: 15px 40px;
	 border-radius: 8px;
  text-decoration    :   none;
  font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;
     }

.cta-action-btn:hover {
 background :       #f7fafc;
  transform: translateY(-2px);
}

.about-preview {

   padding     :   6rem 0;
    background: white;
	}

.about-container {
   max-width: 1200px;

       margin: 0 auto;

               padding: 0 2rem;

  display: grid;

  grid-template-columns: 2fr 1fr;

   gap: 4rem;

  align-items: start;
}  

.about-heading {
    font-size: 2.5rem;
  font-weight    : 700;
                    margin-bottom: 1.5rem;
    color: #2d3748;
}

.about-description,
.about-extra {

	   margin-bottom: 1.5rem;
   font-size: 1.1rem;
               color: #4a5568;
   line-height: 1.7;
} 

.about-link {
  color: #3182ce;
    text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
	transition     :border-color 0.3s ease;
}

.about-link:hover
	{
 border-bottom-color: #3182ce;

}

.about-stats {
    display    :flex;
    flex-direction: column;
    gap   :2rem;
}

.stat-item {
    text-align: center;
   padding: 1.5rem;
  background    : #f7fafc;
   border-radius    :   8px;
	 border-left :   4px solid #3182ce;
	
}

.stat-number {
        display: block;
    font-size: 2.5rem;
   font-weight: 700;
      color: #3182ce;
}  

.stat-label {
  display: block;
    font-size:       0.9rem;
    color: #718096;
   margin-top: 0.5rem;
}  

.contact-section {
    padding: 6rem 0;
  background: #2d3748;
  color: white;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: start; 
	
}

.contact-title {
    font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
}

.contact-description {

  font-size: 1.1rem;
  line-height: 1.7;
   margin-bottom: 2rem;
   opacity: 0.9;
     }

.contact-details {
   display: flex;
  flex-direction: column;
    gap: 1rem;
}

.contact-item {
    font-size: 1rem;
   opacity: 0.9; 

}

.contact-form {
      background: white;
	padding:  2rem;
  border-radius: 12px;
    color :     #2d3748;
}

.form-group {
   margin-bottom     :       1.5rem;
}



.form-label {
    display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
  color: #4a5568;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
   padding: 12px;
	 border: 2px solid #e2e8f0;
   border-radius: 6px;
         font-size   :      1rem;
   transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
   outline: none;
    border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-textarea {
  resize: vertical;
    min-height: 100px;
}

.form-submit-btn  
  {
  background     :       #3182ce;
    color: white;
   padding: 15px 30px;
   border: none;
    border-radius: 6px;
  font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%; 
	
}

.form-submit-btn:hover {
	  background: #2c5aa0;
  transform: translateY(-1px);



}

.site-footer {


    padding: 3rem 0 1rem;
   color   :  white;
    background: #1a202c;

}

.footer-content {
  grid-template-columns: 1fr 2fr 1fr;
    padding: 0 2rem;
   gap: 3rem;
  max-width     :  1200px;
    display:   grid;
   margin: 0 auto;
}

.footer-logo {
                    height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}  

.footer-navigation {

  display :grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem;


}

.footer-nav-title,
.footer-contact-title {
          font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
    color: #cbd5e0;
}

.footer-nav-list {
   list-style: none;
	display: flex;
    flex-direction:        column;
    gap:    0.5rem;
}


.footer-nav-link 
 {
  color: #a0aec0;
    text-decoration: none;
  transition: color 0.3s ease;
}


.footer-nav-link:hover {
  color: white;
}

.footer-contact-item {


               color: #a0aec0;
    margin-bottom: 0.5rem;
               font-size: 0.95rem; 


}

.footer-bottom {
    border-top: 1px solid #2d3748;
    margin-top: 2rem;
    padding-top: 1rem;
   text-align   :        center;
}

.footer-copyright {
  color: #718096;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-links-desktop {
        display: none;
    }
    
    .mobile-menu-trigger {
        display: flex;
    }
    
    .mobile-menu-trigger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-trigger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-trigger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .main-headline {
        font-size: 2.5rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
        margin: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-banner {
        padding: 4rem 0;
    }
    
    .hero-content-container {
        padding: 0 1rem;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .services-container,
    .about-container,
    .contact-wrapper {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta-button,
    .secondary-cta-button {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-headline {
        font-size: 2rem;
    }
    
    .about-heading {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}.about-hero-section {
  background: linear-gradient(120deg, #2d3748 0%, #4a5568 100%);
  color: white;
   padding: 5rem 0;
    margin-top: 70px;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
   display: grid;
   grid-template-columns: 1fr 1fr;
 gap: 3rem;
  align-items: center;
}

.about-main-title {


    font-size: 3rem;
      font-weight: 700;
     margin-bottom: 1.5rem;
       line-height: 1.2;

}

.about-hero-text {
	 font-size: 1.1rem;
  line-height: 1.7;
   opacity: 0.9;
}

.about-banner-img {
  width: 100%;
   height: auto;
                    border-radius   :        10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.company-story-section  {


   padding   :      5rem 0;
  background: #f7fafc;
     }

.story-wrapper {
  max-width: 900px;
  margin  : 0 auto;
    padding: 0 2rem;
}

.story-heading {
    font-size: 2.5rem;
	font-weight :    700;
    text-align: center;
  margin-bottom: 3rem;
    color: #2d3748;
}

.story-timeline {
  position: relative;
  padding-left    :      30px;
}


.story-timeline::before {
  content: '';
    position: absolute;
          left: 15px;
        top: 0;
	bottom: 0;
  width: 2px;
    background: #3182ce;
}

.timeline-item
{
   position:      relative;
    margin-bottom     :      3rem;
  display: flex;
   gap: 2rem;
                    align-items  :  flex-start;
}

.timeline-item::before {


  content: '';
  position: absolute;
   left: -22px;
    top: 8px;
   width: 12px;
   height: 12px;
  background: #3182ce;
    border-radius: 50%;
    border:        3px solid white;
    box-shadow: 0 0 0 3px #3182ce;
	}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3182ce;
   min-width: 80px;
}

.timeline-title {
    font-size: 1.3rem;
     font-weight:   600;
  margin-bottom: 0.5rem;
   color: #2d3748;
}

.timeline-description


{

		color: #4a5568;
  line-height: 1.6;
	}

.team-approach-section {
   padding: 5rem 0;
  background:       white;
}

.approach-container {
   max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
      display: grid;
    grid-template-columns: 1fr 1fr;
	 gap: 4rem;
    align-items: center; 
	
}

.approach-title {
    font-size: 2.5rem;
    font-weight: 700;
   margin-bottom: 1.5rem;
    color: #2d3748;
}

.approach-description {
  font-size: 1.1rem;
   line-height: 1.7;
		color: #4a5568;
   margin-bottom: 2rem;
}

.approach-features {
    display: flex;
	   flex-direction: column;
	  gap: 1.5rem;
}

.feature-item {
  padding: 1.5rem;
    background: #f7fafc;
   border-radius   :    8px;
  border-left: 4px solid #3182ce;
}

.feature-name {
   font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
   color: #2d3748;
}

.feature-text {
   color: #718096;

	  line-height: 1.6;
}

.approach-image {
   width: 100%;
   height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.values-mission-section {
   padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.values-container {
    max-width: 1000px;
  margin: 0 auto;
      padding: 0 2rem;
}  

.values-grid {


	display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
	}

.value-card {
  background: rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.value-title {
               font-size    :  1.8rem;
	font-weight: 700;
  margin-bottom: 1.5rem;
}

.value-content {
   font-size: 1.1rem;
   line-height    :      1.7;
   opacity: 0.9;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li{


   padding: 0.5rem 0;

	                    padding-left: 1.5rem;

	      position: relative;

		font-size: 1.05rem;

	   line-height: 1.6;


}

.values-list li::before
	{
  content: '✓';
    position: absolute;
     left: 0;
   color: #90cdf4;
               font-weight: bold;
}

.expertise-section  
  {
  background: #f7fafc;
    padding: 5rem 0;
}

.expertise-wrapper {
  max-width     :      1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

.expertise-heading {
  font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
	margin-bottom   :       3rem;
    color     :     #2d3748; 
	
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap     :   2rem;
}

.expertise-item {
	 background: white;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-img {
  width: 100%;
   height   :      200px;
      object-fit: cover;
}  

.expertise-content {
    padding: 1.5rem;
}

.expertise-name {
   font-size :        1.3rem;
    font-weight: 600;
  margin-bottom: 0.75rem;
        color: #2d3748;
} 

.expertise-desc

{
  color: #718096;
  line-height: 1.6;
}

.credentials-section {
  padding: 4rem 0;
  background: white;

}

.credentials-container {
   max-width: 1000px;
  margin: 0 auto;
   padding: 0 2rem;
  text-align: center; 

}

.credentials-title {
   font-weight: 700;
	          color: #2d3748;
	  margin-bottom: 3rem;
	   font-size: 2.5rem;
}

.credentials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}  

.credential-stat
{
   padding: 2rem;
    background: #f7fafc;
   border-radius: 10px;
   border-top     :    4px solid #3182ce; 
	
}

.stat-figure {
   display   :     block;
    font-size: 2.5rem;
   font-weight: 700;
  color    : #3182ce;
  margin-bottom: 0.5rem; 

}

.stat-description {
  font-size: 0.95rem;
  line-height: 1.4;
    color: #718096;
   display: block;
}

.about-cta-section {
    padding: 4rem 0;
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
   color: white;
   text-align: center;
     }

.about-cta-container {
   max-width: 800px;
    margin: 0 auto;
	padding: 0 2rem;
}

.about-cta-title {

    font-size :       2.5rem;
 font-weight:     700;
  margin-bottom:     1rem;
	}

.about-cta-text {
    font-size: 1.1rem;
	margin-bottom: 2rem;
               opacity: 0.9;
}

.about-cta-button {
   background: white;

    color   :      #3182ce;

    padding: 15px 40px;

  border-radius: 8px;

  text-decoration: none;

   font-weight: 600;

        transition: all 0.3s ease;

    display: inline-block;
}

.about-cta-button:hover {
       background:  #f7fafc;
  transform: translateY(-2px);
	}

.thankyou-main-section {
    padding: 4rem 0;
   background: #f7fafc;
}

.thankyou-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap :  3rem;
}

.thankyou-content {
      background: white;
   padding: 3rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thankyou-icon-wrapper {

  text-align :       center; 
  margin-bottom: 2rem;
     }

.success-checkmark  {
    width  :    80px;
   height: 80px;
  border-radius: 50%;
        background: #48bb78;
   margin: 0 auto;
    position: relative;
  transform: rotate(45deg);
}

.check-icon

{
   position :      absolute;
    top: 50%;
   left     :   50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.check-line {
	display: block;
  background: white;
   border-radius: 2px;
  position: absolute;
}

.check-tip {
   width: 3px;
     height: 15px;
  top     :      19px;
   left: 6px;
}

.check-long     {
  width: 3px;
	height: 25px;
   top: 24px;
   right: 6px;
}

.thankyou-headline {

	   font-size: 2.5rem;
   font-weight: 700;
   text-align: center;
  margin-bottom: 1.5rem;
  color: #2d3748;

}

.thankyou-message {
    font-size  : 1.1rem;
   line-height: 1.7;
        text-align: center;
    color: #4a5568;
  margin-bottom: 3rem;
}

.details-heading	{
    color: #2d3748;
   margin-bottom: 2rem;
     font-weight: 600;
   font-size: 1.8rem;
}

.next-steps {
 display: flex;
  flex-direction: column;
   gap: 1.5rem;
          margin-bottom: 3rem;
}

.step-item {
  display: flex;
  gap: 1rem;
    align-items:       flex-start;

}

.step-number {
  width: 40px;
    height: 40px;
   background: #3182ce;
  color: white;
  border-radius: 50%;
   display    :     flex;
  align-items: center;
    justify-content  :     center;
    font-weight: 700;
  flex-shrink: 0;
}


.step-content {
  flex: 1;
}

.step-title {
   font-size: 1.2rem;
   font-weight  :        600;
    margin-bottom: 0.5rem;
   color: #2d3748;
}

.step-description {
   color: #718096;
  line-height: 1.6;
}

.thankyou-additional-info {
  background: #f7fafc;
   padding: 2rem;
    border-radius: 10px;
  margin-bottom: 2rem; 

}

.info-heading {
   font-size: 1.5rem;
   font-weight: 600;
    margin-bottom: 1rem;
   color: #2d3748;
}

.info-text {

	    color: #4a5568;
   line-height: 1.6;
     }

.thankyou-actions {
  display: flex;
  gap: 1rem;
    justify-content: center;
  flex-wrap  :  wrap;
}

.primary-action-btn,
.secondary-action-btn {

    padding: 12px 30px;
	 border-radius    :    8px;
  text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;


	}

.primary-action-btn {
	background: #3182ce;
  color: white;
}

.primary-action-btn:hover {
   background: #2c5aa0;
  transform: translateY(-2px);
}

.secondary-action-btn {
  background: transparent;
   color: #3182ce;
	border: 2px solid #3182ce;
}

.secondary-action-btn:hover {
   background     :  #3182ce;
   color :   white;
}

.thankyou-sidebar {
   display: flex;
	flex-direction: column;
		 gap: 2rem;
}

.contact-reminder,
.urgency-notice {
   background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	
}

.reminder-title,
.notice-title {
  font-size: 1.3rem;
    font-weight: 600;
   margin-bottom: 1rem;
  color: #2d3748;
}

.contact-detail {
	 margin-bottom: 1rem;

    color: #4a5568;

    line-height: 1.6;
}

.notice-text {
    color: #4a5568;
  line-height: 1.6;
}

.thankyou-testimonial {
   padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.testimonial-wrapper {

	   max-width: 1000px;
         margin: 0 auto;
  padding: 0 2rem;
   display: grid;
   grid-template-columns:     2fr 1fr;
  gap: 3rem;
    align-items: center;

}

.testimonial-quote {
    font-size: 1.3rem;
  line-height: 1.7;
  font-style: italic;
    margin-bottom: 1.5rem;
  opacity     :      0.95;
}

.testimonial-author {
   font-size: 1rem;
  font-weight: 600;
	opacity :0.8;
}

.testimonial-img {


  width: 100%; 
   height    :     auto; 
	border-radius: 10px; 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

}@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .approach-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content {
        padding: 2rem;
    }
    
    .thankyou-headline {
        font-size: 2rem;
    }
    
    .next-steps {
        gap: 1rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-action-btn,
    .secondary-action-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .testimonial-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-container,
    .approach-container,
    .thankyou-container {
        padding: 0 1rem;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .story-heading,
    .approach-title,
    .expertise-heading,
    .credentials-title,
    .about-cta-title,
    .thankyou-headline {
        font-size: 1.8rem;
    }
    
    .thankyou-content {
        padding: 1.5rem;
    }
    
    .credentials-stats {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}.cookies-section,
.privacy-section {

	  padding: 5rem 0;
   background: #f7fafc;


}

.cookies-container,
.privacy-container {
  max-width: 1000px;
                    margin: 0 auto;
    padding: 0 2rem;
}

.cookies-heading,
.privacy-heading {
	 font-size: 2.5rem;
  font-weight: 700;
   text-align: center;
    margin-bottom: 3rem;
   color: #2d3748;
}

.cookies-text,
.privacy-text {
  font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
   margin-bottom: 2rem;
}@media (max-width: 768px) {
    .cookies-section,
    .privacy-section {
        padding: 3rem 0;
    }

    .cookies-heading,
    .privacy-heading {
        font-size: 2rem;
    }

    .cookies-container,
    .privacy-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .cookies-heading,
    .privacy-heading {
        font-size: 1.8rem;
    }

    .cookies-text,
    .privacy-text {
        font-size: 1rem;
    }
}