* {
    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;
}

.main-navigation {
    background: #1a1a2e;
   padding: 1.2rem 0;
  position: sticky;
   top: 0;
	z-index  :      1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}



.nav-wrapper {
	max-width     :     1400px;
    margin: 0 auto;
		 padding: 0 2rem;
  display: flex;
	 justify-content: space-between;
    align-items: center;
}

.brand-section {
   flex: 0 0 auto;
}

.site-logo {
	 width: auto;
   height: 45px;
}

.nav-links {
   display: flex;
   list-style: none;
   gap: 2.5rem;
	
}

.nav-links a {
 color    :  #f8f9fa;
       text-decoration: none;
	font-weight: 500;
  transition: color 0.3s;
     font-size: 1.05rem;
}

.nav-links a:hover {
   color: #e74c3c;
}

.menu-toggle {
  display    :      none;
   flex-direction    :     column;
  cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
   width     :   28px;
    height   :     3px;
	background: #f8f9fa;
	transition: all 0.3s;


}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 2rem;
   display: grid;
   grid-template-columns    :        1fr 1fr;
       gap     :     4rem;
  align-items: center;
    max-width: 1400px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
    color : #ffffff;
  margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.25rem;
  color: #f1f1f1;
         margin-bottom: 2rem;
}

.hero-actions {
  gap: 1.5rem;
   display: flex;
}

.primary-btn, .secondary-btn {
  padding:      0.9rem 2rem;
	text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
   transition    :    all 0.3s;
   display: inline-block;
}

.primary-btn {
    background: #e74c3c; 
	  color: #fff;
}

.primary-btn:hover {
    background: #c0392b;
  transform: translateY(-2px);
}

.secondary-btn {


    background: transparent;
 color: #fff;
    border: 2px solid #fff;}

.secondary-btn:hover {
  background: #fff;
    color: #667eea;
}

.hero-visual img		{
   width: 100%;
      border-radius: 12px;
     box-shadow: 0 10px 40px rgba(0,0,0,0.3);

}

.intro-block {
      padding: 80px 2rem;
	 background    :      #f8f9fa;
     }

.container-fluid {
   max-width:       1400px;
    margin: 0 auto;
}

.intro-grid   {
    display: grid;
   grid-template-columns    :    1.2fr 1fr;
    gap: 4rem;
   align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.1rem;
          color: #555;
  margin-bottom: 1.2rem;
}

.intro-image img {
  width: 100%;
   border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.services-showcase 
 {
  padding: 80px 2rem;
    background: #ffffff;
}

.section-heading {
                    font-size: 2.5rem; 
   text-align: center; 
  color: #2c3e50; 
  margin-bottom: 3rem;}

.services-grid {
    display: grid;

  grid-template-columns: repeat(3, 1fr);

    gap:       2.5rem;

    margin-top: 3rem;
}

.service-card {


   padding: 2.5rem;
  background: #f8f9fa;
		 border-radius: 8px;
       transition: transform 0.3s, box-shadow 0.3s;


}

.service-card:hover
	{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
  margin-bottom: 1.5rem; 
	
}

.icon-circle {
   width: 60px;
   height  :     60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
   display: flex;
   align-items: center;
	 justify-content: center;
  color: #fff;
   font-size: 1.8rem;
  font-weight: bold;
}

.service-card h3 {
   font-size: 1.6rem;
   color: #2c3e50;
  margin-bottom: 1rem;
}

.service-card p {
  color: #555;
                    line-height: 1.7;
}

.methodology-section{
    padding: 80px 2rem;
   background: #ecf0f1;
}

.method-layout
{
   display: grid;
  align-items  :     center;
    grid-template-columns: 1fr 1.3fr;
   gap: 4rem;
} 

.method-visual img  
  {
	  width: 100%;
  border-radius: 8px;
  -moz-border-radius: 8px;

}

.method-content h2 {
     font-size: 2.5rem;
     margin-bottom: 1.5rem;
    color: #2c3e50;

}

.method-content > p {
    font-size: 1.1rem;
        color: #555;
    margin-bottom: 2rem;


}

.method-steps {
    display: flex;
    flex-direction  :    column;
   gap: 1.5rem;
}

.step-item {
   background: #fff;

	        padding: 1.5rem;

		border-radius: 6px;

	      border-left: 4px solid #e74c3c;

}

.step-item h4 {
   font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-item p {
                       color  :#666;
	}

.cta-banner {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   padding: 60px 2rem;
    text-align: center;
  color: #fff;}

.cta-content h2

{
   font-size: 2.8rem;
    margin-bottom: 1.5rem;
} 

.cta-content p {

    font-size: 1.2rem;
  margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

}

.cta-button {
	display: inline-block;
	 padding: 1rem 2.5rem;
    background: #fff;
  color: #e74c3c;
   text-decoration: none;
  border-radius: 6px;
      font-weight: 700;
    font-size: 1.1rem;
  transition: all 0.3s;
}  

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.benefits-section

{
  padding: 80px 2rem;
   background: #fff;
}

.benefits-layout {
    display: grid;
   grid-template-columns  :       1fr 1.3fr;
  gap: 4rem;
    margin-top   :     2rem; 

}

.benefit-image img {
  width: 100%;
   border-radius:   8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.benefit-list {
  display: flex;
   flex-direction: column;
   gap: 2rem; 

}

.benefit-point h3 {
   color: #2c3e50;
    font-size: 1.5rem;
   margin-bottom     :    0.8rem;
}

.benefit-point p {
         color: #666;
  line-height: 1.7;
}

.process-timeline {
    padding: 80px 2rem;
    background: #f8f9fa;
}

.timeline-wrapper {

		display: grid;
  grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
    margin-top: 3rem;
}

.timeline-step {
    background: #fff;
 padding: 2rem;
      border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
}

.step-number {
      font-size: 3rem;
    font-weight     :     bold;
  color: #667eea;
  margin-bottom: 1rem;
}

.timeline-step h3 {
    font-size: 1.4rem;
  color: #2c3e50;
    margin-bottom: 1rem; 

}

.timeline-step p {
    color: #666;
    line-height: 1.6;
}



.testimonial-block {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
  color: #fff;
	
}

.testimonial-content h2 {
               margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.testimonials-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  padding:     2rem;
    border-radius: 8px;
  backdrop-filter: blur(10px);
}

.quote {
   font-size: 1.05rem;
    line-height: 1.8;
  margin-bottom: 1.5rem;
   font-style     :       italic; 

}

.author {
  font-weight: 600;
    color: #e74c3c;
}

.image-gallery {
   padding: 80px 2rem;
    background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
	margin-top: 2rem;
}

.gallery-item img {

    width: 100%;
   height: 300px;
  object-fit:cover;
   border-radius: 8px;
  transition: transform 0.3s; 

     }

.gallery-item img:hover {


  transform: scale(1.05);
     }

.contact-section {

 padding: 80px 2rem;
    background:#ecf0f1;}

.contact-layout   {
    display: grid;
   grid-template-columns: 1fr 1.5fr;
                    gap: 4rem;

}

.contact-info h2 {
  font-size: 2.5rem;
   color: #2c3e50;
	margin-bottom: 1.5rem;
}

.contact-info p {
   color: #555;
  line-height :      1.7;
	 margin-bottom: 2rem;
}

.info-block {
 margin-bottom: 1.5rem;
}

.info-block h4


{
	font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom :0.5rem;
}

.info-block p {
	color: #666;
		margin-bottom: 0;
}

.contact-form-wrapper {
  background: #fff;
   padding     :      2.5rem;
    border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
  font-weight: 600;
  color: #2c3e50;
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {


    width: 100%;

	    padding: 0.8rem;

	  border: 2px solid #ddd;

	    border-radius: 4px;

	         font-size: 1rem;

	   font-family: inherit;

	  transition: border-color 0.3s;
     }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; 
  border-color   :      #667eea;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
   border   :       none;
               border-radius: 6px;
   font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
	transition:        transform 0.3s; 

}

.submit-btn:hover {
  transform: translateY(-2px);
}

.site-footer {
   background: #1a1a2e;
		 color: #f8f9fa;
	   padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width: 1400px;
   margin: 0 auto;
       display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
   margin-bottom: 2rem;
}

.footer-logo {
    height: 40px; 
          margin-bottom: 1rem; 
  filter: brightness(0) invert(1);
	
}

.footer-desc    {
  color: #bbb;
	    line-height: 1.7;
}

.footer-section h4 {
	 font-size: 1.2rem;
   margin-bottom: 1rem;
    color :  #fff;
}

.footer-links {
   list-style: none;
}

.footer-links li {
   margin-bottom: 0.7rem;
}

.footer-links a {
    color: #bbb;
   text-decoration: none;
  transition: color 0.3s;
}  

.footer-links a:hover {
    color: #e74c3c;
}

.footer-section p 
 {
    color: #bbb;
  line-height: 1.7;

}

.footer-bottom {
    max-width: 1400px;
   margin: 0 auto;
	padding-top: 2rem;
   border-top: 1px solid #333;
  text-align: center;
  color: #888;
}@media screen and (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .method-layout {
        grid-template-columns: 1fr;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
    }
    
    .timeline-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-section {
        padding: 40px 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .timeline-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.about-hero {
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 100px 2rem 80px;
  text-align    :       center;
  color: #fff;
	}

.about-hero-content h1   {
        font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.about-hero-text {
  font-size: 1.3rem;
       max-width: 900px;
       margin: 0 auto;
       line-height     :1.8;
      color: #ecf0f1;
}


.mission-statement {
    padding  :  80px 2rem;
    background: #fff;
}

.mission-grid {
   display: grid;
	grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
  align-items: center;
}

.mission-text h2 {
  font-size: 2.6rem;
   color: #2c3e50;
	margin-bottom     :        1.5rem;
}

.mission-text p {
    font-size: 1.1rem;
  color: #555;
   margin-bottom: 1.3rem;
    line-height: 1.8;
}

.mission-image img    {
  width: 100%;
  border-radius     :8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.values-section {
   padding : 80px 2rem;

		background :     #f8f9fa;
}

.values-grid {
	display  :grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
    margin-top: 2.5rem;
	
}

.value-box {
	background: #fff;
	padding: 2.5rem;
   border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s;
}

.value-box:hover {
  transform: translateY(-5px);
}

.value-box h3 {
                       font-size: 1.7rem;
   color: #e74c3c;
    margin-bottom: 1rem;
     }

.value-box p {
    color: #666;
   line-height: 1.7;
}

.story-origin {
   padding: 80px 2rem;
	   background: #fff;
}

.origin-layout {
    display: grid;
	 grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
   align-items     :        center;
}

.origin-visual img {


  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);


}

.origin-content h2 {
   margin-bottom :   1.5rem;
  color: #2c3e50;
    font-size: 2.5rem;
}

.origin-content p {


	 font-size    : 1.1rem;
  color: #555;
    line-height: 1.8;
    margin-bottom: 1.3rem;
	}

.expertise-showcase

{
  padding: 80px 2rem;
   background: #ecf0f1;
}

.expertise-intro {
      font-size: 1.2rem;
  color: #555;
    text-align: center;
    max-width: 1000px;
  margin: 0 auto 3rem;
	 line-height: 1.8;
}

.expertise-areas {
               display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 2rem;
   margin-top: 2rem;
}

.area-item {
  background   :     #fff; 
	  padding: 2rem; 
	    border-radius    :  8px; 
	   border-left :        5px solid #667eea;
}

.area-item h4 {
                    font-size: 1.5rem;
    color:    #2c3e50;
    margin-bottom    :   0.8rem;
}

.area-item p {
	 color: #666;
  line-height: 1.7;
}

.approach-details {
   padding: 80px 2rem;
  background: #fff;
}

.approach-grid {
  display: grid;
    grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-text h2    {
	font-size: 2.5rem;
	 color: #2c3e50;
  margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    color: #555;
   line-height: 1.8;
  margin-bottom: 1.3rem;
}

.approach-list
{


  list-style: none;
  padding-left: 0;
    margin: 1.5rem 0;}

.approach-list li {
   padding: 0.8rem 0 0.8rem 2.5rem;
  position: relative;
  color: #555;
  font-size: 1.05rem;
}

.approach-list li:before     {
  content: "→"; 
		 position: absolute; 
	  left: 0; 
	      color: #e74c3c; 
	    font-weight: bold; 
	   font-size:       1.3rem;
}

.approach-image img  {
    width: 100%;
   border-radius  :    8px;
}

.commitment-section {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.commitment-box {
	     max-width: 1200px;
  margin: 0 auto;
    color: #fff;
   text-align: center;
     }

.commitment-box h2 {
          font-size: 2.8rem;
 margin-bottom: 1.5rem;
}

.commitment-box > p {
     font-size: 1.2rem;

   margin-bottom: 1.5rem;

    line-height: 1.8;


}

.promise-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
   margin-top: 3rem;
}

.promise-item {
  background: rgba(255,255,255,0.15);
    padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.promise-item h4 {
        margin-bottom: 1rem;
	font-size: 1.5rem;
}

.promise-item p {
   line-height: 1.7;
}

.final-cta {
	padding:  80px 2rem;
   background: #f8f9fa;
}

.final-cta-content {
  text-align :   center;
    max-width: 900px;
  margin: 0 auto;
}

.final-cta-content h2 {
    font-size:       2.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.final-cta-content p {
   font-size: 1.2rem;
       color: #555;
   margin-bottom: 2.5rem;
  line-height: 1.8;
}

.thankyou-hero    {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 100px 2rem 80px;
  text-align: center;
  color: #fff;
   min-height: 60vh;
   display   : flex;
   align-items: center;
    justify-content: center;
}

.thankyou-wrapper
{
  max-width: 900px;
        margin: 0 auto;


}

.success-icon {
 margin-bottom: 2rem;
}

.checkmark-circle {
    position: relative;
	height     :     120px;
          margin: 0 auto;
  width: 120px;
}

.checkmark {
    width: 120px;
	  height: 120px;
	   border-radius: 50%;
	          display: block;
	    stroke-width: 3;
		stroke: #fff;
	    stroke-miterlimit: 10;
	        box-shadow    :  inset 0 0 0 #27ae60;
	    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle-path {
  stroke-dasharray: 166;
      stroke-dashoffset: 166;
    stroke-width: 3;
   stroke-miterlimit: 10;
          stroke: #fff;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {

    transform-origin: 50% 50%;
  stroke-dasharray :     48;
   stroke-dashoffset   :48;
   stroke:     #fff;
					stroke-width: 3;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0 0 0 60px #fff;
    }
}.thankyou-wrapper h1  {
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.thankyou-message {
    font-size: 1.3rem; 
	    line-height   :        1.8; 
	  margin-bottom: 3rem;
}

.next-steps {

	  margin-top: 4rem; 
	   text-align: center;

}

.next-steps h2 {
	font-size: 2.2rem;
  margin-bottom   :      2.5rem;
}

.steps-container {

	   display:     grid;
  grid-template-columns: repeat(3, 1fr);
      gap: 2rem;}

.step-box {

	  background: rgba(255,255,255,0.2);
    padding: 2rem;
	border-radius: 8px;
  backdrop-filter: blur(10px);
	}

.step-num {


    align-items: center;
  background     :       #fff;
	margin: 0 auto 1.5rem;
   color: #27ae60;
    height: 50px;
               width: 50px;
   font-weight: bold;
   justify-content: center;
    display: flex;
  font-size: 1.8rem;
  border-radius: 50%;


}

.step-box h3


{

	  font-size: 1.4rem;
   margin-bottom :    1rem;


}

.step-box p     {
   line-height: 1.7;
}

.thankyou-info {

    padding   :      80px 2rem;
  background: #fff;

}

.info-content h2 {
    font-size: 2.5rem;
	 text-align: center;
  color  : #2c3e50;
    margin-bottom:       1rem;
}

.info-content > p {
    text-align: center;
   font-size: 1.2rem;
   color:       #555;
  max-width: 800px;
   margin: 0 auto 3rem;
}

.info-cards  {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width     :        1000px;
  margin: 0 auto;
}

.info-card {


   background: #f8f9fa;
   padding: 2.5rem;
   border-radius: 8px;
  text-align: center;


}

.info-card h3 {
  margin-bottom:    1rem;
  font-size: 1.6rem;
    color: #2c3e50;
}

.info-card p {

	    color: #666;
   line-height: 1.7;
    margin-bottom: 1.5rem;
	}

.info-link {
  padding: 0.8rem 2rem;
   background: #667eea;
  color: #fff;
    transition: background 0.3s;
   display: inline-block;
   border-radius: 6px;
  font-weight: 600;
    text-decoration: none;

}

.info-link:hover {
    background: #764ba2;
}

.preparation-tips {
  padding    :        80px 2rem;
    background: #f8f9fa;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.tip-item {
  background: #fff;
  padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.tip-item h4 {
            font-size: 1.4rem;
  color: #27ae60;
   margin-bottom: 1rem;

}

.tip-item p {
    color: #666;
	 line-height     :1.7;
}

.contact-reminder		{
	 padding: 80px 2rem;
  background: #fff;


}

.reminder-box {
  max-width: 900px;
    margin: 0 auto;
    text-align: center; 
	
}

.reminder-box h2 {
   font-size    :2.5rem;
   color: #2c3e50;
   margin-bottom     :1.5rem;
}

.reminder-box > p {
   font-size :1.2rem;
  color: #555;
	 margin-bottom: 3rem;
         line-height: 1.8;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  max-width: 700px;
	margin: 0 auto;
}

.detail-item {
   background: #f8f9fa;
    padding: 2rem;
   border-radius: 8px;
}

.detail-item h4 {
   font-size: 1.3rem;
    color: #2c3e50;
	margin-bottom: 0.8rem;
}

.detail-item p {
   color: #666;
   line-height: 1.7;
   font-size: 1.05rem;
	
}

.testimonial-snippet {
   padding: 80px 2rem;
    background: #ecf0f1;
}

.snippet-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
	max-width: 1100px;
  margin: 0 auto;
}

.snippet-card {
          background: #fff;
	 padding: 2.5rem;
   border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.snippet-card p {
  font-size: 1.1rem;
  color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.snippet-author {

		 font-weight: 600;
   color: #27ae60;}@media screen and (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .origin-layout {
        grid-template-columns: 1fr;
    }
    
    .expertise-areas {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .snippet-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-text {
        font-size: 1.1rem;
    }
    
    .thankyou-wrapper h1 {
        font-size: 2rem;
    }
    
    .thankyou-message {
        font-size: 1.1rem;
    }
    
    .checkmark-circle {
        width: 90px;
        height: 90px;
    }
    
    .checkmark {
        width: 90px;
        height: 90px;
    }
}.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;
    }
}