* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.main-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navigation-wrap {
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.brand-section {
    flex-shrink: 0;
}

.company-logo {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover, .nav-item.active {
    color: #3498db;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3498db;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.content-wrapper {
    margin-top: 70px;
}

.hero-area {
    padding: 80px 20px;
    background: linear-gradient(rgba(52, 73, 94, 0.8), rgba(44, 62, 80, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 L1000,100 L0,100 Z" fill="%23ecf0f1"/></svg>');
    background-size: cover;
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.primary-button {
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.secondary-button {
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-button:hover {
    background: #fff;
    color: #2c3e50;
}

.hero-visual {
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.features-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-container h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    margin-bottom: 20px;
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    margin: 0 auto;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.approach-section {
    padding: 100px 20px;
    background: #fff;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-text h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.approach-text > p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #7f8c8d;
    line-height: 1.6;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.point-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-number {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2em;
    flex-shrink: 0;
}

.point-text h4 {
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.point-text p {
    color: #7f8c8d;
    line-height: 1.5;
}

.approach-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-overview {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-container h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: #e74c3c;
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.contact-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 10px;
}

.contact-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 80px;
}

.contact-value {
    color: #7f8c8d;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.site-footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 1.2em;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #2c3e50;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-item {
        padding: 15px 0;
        font-size: 1.2em;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-area {
        padding: 60px 20px;
    }
    
    .features-section,
    .approach-section,
    .services-overview,
    .contact-section {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2.2em;
    }
    
    .features-container h2,
    .approach-text h2,
    .services-container h2,
    .contact-info h2,
    .cta-content h2 {
        font-size: 2em;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .hero-actions {
        gap: 15px;
    }
    
    .primary-button,
    .secondary-button {
        padding: 12px 25px;
        font-size: 0.95em;
    }
}.about-hero {
   padding  :      120px 20px 80px;
  background: linear-gradient(135deg, #34495e, #2c3e50);
  color: #fff;
   text-align: center;
}

.about-hero-content {

	   max-width: 800px;
   margin: 0 auto;


}

.about-hero h1		{
 font-size: 3em;
           margin-bottom: 30px;
       font-weight: 700;
}

.about-hero-text  {
  font-size: 1.3em;
   line-height: 1.6;
     opacity: 0.9;
}

.mission-section {
  padding: 100px 20px;
   background    :     #fff;
}

.mission-container {
   max-width: 1200px;
    margin: 0 auto;
}

.mission-content {
       display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
}

.mission-text h2 {
   font-size: 2.5em;
  margin-bottom: 30px;
   color: #2c3e50;
    font-weight    :   700;
}

.mission-text p {
  font-size: 1.1em;
   line-height: 1.7;
  color: #7f8c8d;
    margin-bottom: 20px;
}

.mission-image {
    width: 100%;
                    height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
	
}

.values-section {
    padding: 100px 20px;
   	background     :        #f8f9fa;
}

.values-container {


               max-width: 1200px;
  margin: 0 auto;
    text-align: center;


}

.values-container h2 {

	  font-size: 2.5em;
  margin-bottom: 60px;
   color: #2c3e50;
   font-weight: 700;
     }

.values-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;}

.value-item {
  background: #fff;
   padding: 40px 30px;
  border-radius     : 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-icon{
         margin-bottom: 25px;
}

.icon-shape {
   	width: 70px;
  height  :70px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 20px;
    margin: 0 auto;
    position: relative;}

.icon-shape::after {
  content: '';
    position: absolute;
                    top: 50%;
   left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
    height: 30px;
  background: #fff;
          border-radius: 8px; 

}

.value-item h3
	{
   font-size: 1.5em;
  margin-bottom     :  15px;
  color: #2c3e50;
  font-weight: 600;
}

.value-item p {
   color: #7f8c8d;
   line-height: 1.6;
}

.expertise-section  {
    padding: 100px 20px;
  background: #fff;
}

.expertise-wrapper {
		 max-width: 1200px;
   margin: 0 auto;
}  

.expertise-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}  

.expertise-text h2 {
   font-size: 2.5em;
  margin-bottom: 40px;
   color: #2c3e50;
    font-weight: 700;
}

.expertise-stats {
	 display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	 gap: 30px;
    margin-bottom: 30px;
}

.stat-item     {
  text-align: center;
   padding: 20px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 15px;
  color: #fff;
}

.stat-number {
  font-weight: 700;
  display     :  block;
  font-size :2.5em;
  margin-bottom: 5px;
}

.stat-label {


    font-size: 0.9em;
	    opacity: 0.9;


}

.expertise-text p {
    font-size: 1.1em;
  line-height: 1.7;
       color: #7f8c8d;
}

.expertise-image {

		width :       100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
     }

.approach-methodology {
   padding: 100px 20px;
  background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
}  

.methodology-container

{
  max-width: 1200px;
    margin: 0 auto;
    text-align: center; 
	
}

.methodology-container h2 {
    font-size: 2.5em;

  margin-bottom   :       60px;

    color: #2c3e50;

	font-weight: 700;
}

.methodology-steps  
  {
   display :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;

}

.step-item {


    background: #fff;
    padding  :    40px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    text-align :       left;




}

.step-number {
   position: absolute;
    top: -20px;
  left: 30px;
  width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    border-radius: 50%;
	display: flex;
  align-items: center;
  justify-content: center;
      font-weight: 700;
    font-size: 1.3em;
}

.step-content h3 {
   margin-top : 15px;
    margin-bottom: 15px;
  color: #2c3e50;
    font-weight: 600;
  font-size: 1.3em;
}

.step-content p {
          color: #7f8c8d;
    line-height: 1.6;
}

.why-choose-us {
  padding: 100px 20px;
  background: #fff;
}

.why-choose-container {
    max-width: 1200px;
  margin: 0 auto;
}



.why-choose-content {
  display: grid;
	         grid-template-columns: 1fr 1fr;
	 gap: 60px;
	    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5em;
    margin-bottom   :        40px;
  color: #2c3e50;
  font-weight: 700; 
	
}

.reasons-list {
   display: flex;
   flex-direction: column;
  gap: 25px;
}

.reason-item h4 {
  color: #2c3e50;
   font-weight: 600;
    margin-bottom: 10px;
	font-size: 1.2em;
}

.reason-item p {
   color: #7f8c8d;
   line-height: 1.6;
}

.why-choose-image {
   width:      100%;
     height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
} 

.team-section {
  padding    :  100px 20px;
  background: #f8f9fa;
}

.team-container {
  max-width: 1200px;
    margin: 0 auto;
   text-align:       center;
}

.team-container h2 {
    font-size: 2.5em;
                    margin-bottom: 30px;
    color: #2c3e50;
  font-weight: 700;
}

.team-intro {
	 font-size: 1.2em;
   color: #7f8c8d;
    margin-bottom: 60px;
  max-width: 700px;
          margin-left: auto;
    margin-right   :auto;
   line-height: 1.6;
}

.team-highlight {
   background :        #fff;
  border-radius: 15px;
	padding: 50px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap :    50px;
   align-items     : center;
    text-align: left;
}

.team-content h3 {
  font-size: 2em;
   margin-bottom: 20px;
  color: #2c3e50;
	font-weight: 600;
}

.team-content p {
    font-size: 1.1em; 
	      line-height  :1.7; 
	    color: #7f8c8d; 
	  margin-bottom: 30px;
}

.team-expertise {

	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   gap: 15px;
	}

.expertise-item {
  background: linear-gradient(135deg, #e74c3c, #c0392b);

   color: #fff;

    padding: 15px 20px;

  border-radius: 25px;

   text-align: center;

   font-weight: 500;

  font-size   : 0.9em;
}

.team-image {
  width: 100%;
     height: auto;
      border-radius: 15px;
}

.cta-about {
               padding    :80px 20px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
  text-align: center;
}

.cta-about-container {
  max-width: 800px;
    margin: 0 auto; 
	
}

.cta-about h2 {
  font-size: 2.5em;
   margin-bottom: 20px;
  font-weight: 700;
}

.cta-about p {
   font-size: 1.2em;
  margin-bottom: 30px;
	 opacity: 0.9;
    line-height: 1.6;
}  

.cta-about-button
	{
	font-weight: 600;
	 border-radius: 10px;
    padding: 20px 40px;
   text-decoration: none;
          color:  #fff;
  font-size: 1.1em;
	background: #e74c3c;
   display: inline-block;
   transition: all 0.3s ease;
}

.cta-about-button:hover {
    background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.thankyou-hero {
   padding: 120px 20px 80px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
   color: #fff;
  min-height: 80vh;
   display: flex;
   align-items: center;
}



.thankyou-container

{
    max-width: 1200px;
   margin: 0 auto;
   display: grid;
	 grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.thankyou-content


{
  text-align: center;
}

.success-icon {
  margin-bottom: 30px;


}

.check-mark {


    position: relative;
    animation: checkPulse 2s infinite;
    border-radius: 50%;
	 height :   80px;
    width     :    80px;
    background     :  #fff;
   margin: 0 auto;}

.check-mark::after {
  content: '✓';
    position: absolute;
  top: 50%;
   left    :50%;
  transform: translate(-50%, -50%);
  color: #27ae60;
  font-size: 2.5em;
	font-weight: bold;
}@keyframes checkPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-content h1 {
  font-size: 3em; 
  margin-bottom: 20px; 
		font-weight: 700;
}

.thankyou-message {
    font-size: 1.3em;
  margin-bottom: 50px;
   opacity: 0.9;
    line-height: 1.6;

}

.next-steps {

	  background: rgba(255,255,255,0.1);
   padding: 40px;
   border-radius: 15px;
    margin-bottom: 40px;
   text-align: left;
	}

.next-steps h2 {
    font-size :1.8em;
    margin-bottom: 30px;
   text-align   :      center;
    font-weight: 600;
}

.steps-timeline {
       display: flex;
  flex-direction:  column;
		gap: 25px;
}

.timeline-item {
   display: flex;
	  gap: 20px;
	   align-items: flex-start;
}

.timeline-dot {
   width: 20px;
    height: 20px;
	background: #fff;
  border-radius: 50%;
                    flex-shrink    :        0;
  margin-top: 5px;
}

.timeline-content h3 {
   margin-bottom: 8px;
  font-size: 1.1em;
   font-weight: 600;
}



.timeline-content p {

  opacity:    0.9;
    line-height: 1.5;
	 font-size: 0.95em;
	}

.while-waiting {
     background: rgba(255,255,255,0.1);
    padding     :  30px;
    border-radius     :        15px;
	 margin-bottom: 40px;
	}

.while-waiting h2		{
    font-size: 1.5em;
   margin-bottom: 15px;
  font-weight: 600;
}

.while-waiting p {
   opacity :        0.9;
    line-height: 1.6;
}

.contact-reminder {
  background: rgba(255,255,255,0.1);
                    padding: 30px;
		 border-radius: 15px;
  margin-bottom   :  40px;
}

.contact-reminder h3 {
  font-size: 1.3em;
   margin-bottom    :  10px;
       font-weight: 600;
}

.contact-reminder > p {
   margin-bottom: 20px;
    opacity: 0.9;


}

.contact-details {
        display: flex;
   flex-direction: column;
    gap: 10px;
}

.contact-item {
  display: flex;
         gap: 10px;
  align-items: center;
}

.contact-label {
  font-weight: 600;
    min-width: 70px;
}

.contact-value  {
	   opacity: 0.9;
	
     }

.thankyou-actions {
	    display: flex;
   gap: 20px;
  justify-content: center;
    flex-wrap: wrap;

}


.primary-btn, .secondary-btn {
      padding: 15px 30px;
               text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
   display :  inline-block;


}  

.primary-btn {
  background: #fff;
  color: #27ae60;
}

.primary-btn:hover {
    background: #ecf0f1;
  transform: translateY(-2px);
}

.secondary-btn {

	    background: transparent;
    color:      #fff;
     border: 2px solid #fff;

}

.secondary-btn:hover {
   background: #fff;
    color: #27ae60;
}

.thankyou-image {
   width: 100%;
	height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);


}

.testimonial-preview {
	padding  :       100px 20px;
  background    :      #f8f9fa;
}

.testimonial-container {
  max-width: 1200px;
     margin: 0 auto;
      text-align: center;
}

.testimonial-container h2    {
   font-size: 2.5em;
    margin-bottom: 60px;
    color: #2c3e50;
  font-weight: 700;
}

.testimonial-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
    position: relative;
}

.testimonial-card::before {
  content: '"';
   position: absolute;
  top: -10px;
   left: 30px;
    font-size: 4em;
	 color: #e74c3c;
    font-weight: bold;
    line-height: 1;
}

.testimonial-content p {
   font-size: 1.1em;
  line-height    :  1.6;
                    color: #34495e;
   margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
   display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
  font-weight: 600;
   color: #2c3e50;
  font-size: 1.1em;
}

.author-position {
	color :  #7f8c8d;
    font-size :   0.9em;

}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5em;
    }
    
    .mission-content,
    .expertise-content,
    .why-choose-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-highlight {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .values-grid,
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .expertise-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .team-expertise {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .thankyou-content h1 {
        font-size: 2.5em;
    }
    
    .steps-timeline {
        gap: 20px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 20px 60px;
    }
    
    .about-hero h1 {
        font-size: 2.2em;
    }
    
    .mission-text h2,
    .values-container h2,
    .expertise-text h2,
    .methodology-container h2,
    .why-choose-text h2,
    .team-container h2,
    .cta-about h2,
    .thankyou-content h1,
    .testimonial-container h2 {
        font-size: 2em;
    }
    
    .next-steps,
    .while-waiting,
    .contact-reminder {
        padding: 20px;
    }
    
    .step-item {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2em;
    }
}.privacy-section {
   padding: 100px 20px;
   background: #f8f9fa;
}

.privacy-container {
  max-width: 800px;
    margin: 0 auto;
  text-align: left;

}

.privacy-container h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #2c3e50;
	font-weight: 700;
}

.privacy-container h2 {
    font-size: 1.8em;
   margin: 30px 0 15px;
    color: #2c3e50;
    font-weight: 600;
}

.privacy-container p {
   font-size: 1.1em;
  color: #7f8c8d;
    line-height: 1.6;
 margin-bottom: 20px;
}

.privacy-container ul {
    list-style-type: disc;
      padding-left: 30px;
  margin-bottom: 20px;
}


.privacy-container li {
        font-size: 1.1em;
  color: #7f8c8d;
     line-height: 1.6;
  margin-bottom  :       10px;
}@media (max-width: 768px) {
    .privacy-section {
        padding: 80px 20px;
    }

    .privacy-container h1 {
        font-size: 2em;
    }

    .privacy-container h2 {
        font-size: 1.5em;
    }
}