* {
  margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
    color: #333;
  background: #fafafa;
}

.container {
   max-width: 1200px;

		 margin: 0 auto;

	  padding: 0 20px;
}

.main-navigation {
 background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
   top: 0;
    width: 100%;
   z-index: 1000; 
	
}

.nav-wrapper {

    max-width: 1200px;
    margin: 0 auto;
   display: flex;
   justify-content: space-between;
    align-items: center;
	 padding: 0 20px;
                    height: 70px;
     }

.site-logo {
   height: 45px;
   width: auto;
}



.menu-items {
  display: flex;
  list-style: none;
	 gap: 30px;
}

.menu-items a {


   -moz-transition: color 0.3s ease; 
         font-weight: 500; 
    color: #333; 
    -o-transition: color 0.3s ease; 
   transition: color 0.3s ease; 
    -webkit-transition: color 0.3s ease; 
    text-decoration: none; 

}

.menu-items a:hover
	{
  color: #4a90e2;


}

.burger-menu {
   display: none;
    flex-direction: column;
   cursor: pointer;
}

.burger-menu span {
		width: 25px;
   height: 3px;
    background :        #333;
	 margin: 3px 0;
	transition: 0.3s;


}

.hero-section {


          display: flex;
    align-items :      center;
   min-height: 100vh;
   padding: 100px 20px 0;
   max-width: 1200px;
   margin: 0 auto;
    gap:        50px;
     }

.hero-content {
	 flex: 1;
}

.hero-content h1 {
				 font-size: 3.2em;
  font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
  line-height    :      1.2;
}

.hero-content p {
   font-size: 1.3em;
  color :    #666;
               margin-bottom: 35px;
   line-height: 1.5; 
	
}

.hero-actions {
   display: flex;
     gap: 20px;
}

.primary-btn, .secondary-btn {
    font-weight: 600;
   border-radius :      8px;
  display: inline-block;
    padding: 15px 30px;
  transition: all 0.3s ease;
	text-decoration: none;
}

.primary-btn {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.secondary-btn {
   background: transparent;
   color: #4a90e2;
  border: 2px solid #4a90e2;
}

.secondary-btn:hover  
  {
    background    :  #4a90e2;
   color: white;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {


	 width: 100%;
    height    : auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	}

.services-area 
 {
  padding: 100px 20px;
	  background: white;
}

.services-area h2	{
    text-align: center;
  font-size: 2.8em;
   color: #2c3e50;
  margin-bottom: 60px;
}

.services-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
   background: #fafafa;
       border-radius: 12px;
    padding: 30px;
   text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	}

.service-card img {
    width: 100%;
  height: 200px;
  object-fit: cover;
    border-radius: 8px;
   margin-bottom: 25px;
}

.service-card h3 {
   font-size: 1.5em;
   color: #2c3e50;
   margin-bottom: 15px;
}

.service-card p 
 {
   color: #666;
  line-height: 1.6;
}

.benefits-showcase {
   padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white; 

}

.benefits-showcase h2 {
    text-align: center;
    font-size: 2.5em;
       margin-bottom: 50px;
}

.benefits-layout  {

   display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
     }


.benefit-item {
	 text-align: center;
    padding: 30px;
}

.benefit-item h4 {
       font-size: 1.4em;
    margin-bottom: 15px;

}

.benefit-item p {
   opacity: 0.9; 
  line-height: 1.6;
}

.methodology-section {
   padding   :       100px 20px;
    background: white;
}

.methodology-section h2 {
          text-align: center;
    font-size  :2.8em;
   color: #2c3e50;
   margin-bottom: 60px;
}

.method-content		{
    display: flex;
  align-items: center;
   gap: 50px;
}

.method-text {
  flex: 1;
}

.method-text h3 {
  font-size: 2em; 
	    color :  #2c3e50; 
	    margin-bottom: 20px;
}

.method-text p {
   color: #666;
  margin-bottom: 25px;
   font-size: 1.1em;
   line-height    :   1.7;
}

.method-features {
		list-style: none;


}  

.method-features li {
  padding  : 8px 0;
  color :     #555;
    position: relative;
   padding-left: 25px;
}

.method-features li::before {
	 left: 0;
	font-weight: bold;
   position: absolute;
  content: '✓';
    color: #4a90e2;
}

.method-image {
   flex: 1;
}

.method-image img {
   width :      100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
     }

.cta-section {
    padding: 80px 20px;

	  background: linear-gradient(135deg, #ff6b6b, #ee5a24);

	    text-align: center;

	   color: white; 

}

.cta-section h2 {
  font-size: 2.5em;
	margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2em;
      margin-bottom: 40px;
  opacity: 0.9;
} 

.cta-button
	{
  display: inline-block;
  background: white;
  color: #ff6b6b;
    padding: 18px 40px;
    text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-section {
   padding: 100px 20px;
  background: #f8f9fa;
}

.contact-section h2 {

   text-align: center;
  color: #2c3e50;
    margin-bottom: 60px;
    font-size: 2.8em;

}

.contact-form {
  max-width: 700px; 
   margin:  0 auto; 
  background :     white; 
   padding: 40px; 
    border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
   display: flex;
	  gap: 20px;
	    margin-bottom: 25px;
	
}

.form-group {
    flex: 1;
}

.form-group label {
      display: block;
  margin-bottom: 8px;
    font-weight: 600;
    color :      #333;}

.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid #e1e5e9;
  -webkit-transition: border-color 0.3s ease;
    font-size: 1em;
  width: 100%;
  -moz-transition: border-color 0.3s ease;
   border-radius: 6px;
    transition: border-color 0.3s ease;
   -o-transition: border-color 0.3s ease;
  padding: 12px 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color: #4a90e2;
}

.submit-btn {
  background: linear-gradient(135deg, #4a90e2, #357abd);
   color: white;
    padding: 15px 40px;
  border: none;
    border-radius: 8px;
    font-size: 1.1em;
  font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}


.site-footer {
  background: #2c3e50;
    color: white;
  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;

}

.footer-logo {
          height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px; 

}

.footer-brand p


{
   color: #bdc3c7;
	line-height: 1.6;
}

.footer-info h4,
.footer-links h4 {
	margin-bottom: 20px;
  font-size: 1.2em;
}

.footer-info p {
                    color: #bdc3c7;
    margin-bottom  :10px;
}

.footer-links ul {
        list-style: none;
}


.footer-links li {
         margin-bottom    :        10px;
}

.footer-links a {
 color: #bdc3c7;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
         max-width: 1200px;
    margin: 40px auto 0;
    padding-top:  20px;
   border-top: 1px solid #34495e;
	text-align: center;
   color :      #bdc3c7;
}  @media (max-width: 768px) {
    .menu-items {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .menu-items.active {
        left: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .method-content {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	   color: white;

		padding: 150px 20px 80px;

	    text-align  :       center;
}

.about-hero h1     {
  font-size: 3em;
    margin-bottom: 20px;
  font-weight: 700;
}



.about-hero p {
  font-size: 1.2em;
  max-width: 700px;
    margin: 0 auto;
       opacity: 0.9;
          line-height    :      1.6;
}

.our-story {
  padding     :   100px 20px;
  background     :white;
}

.story-content {
  display: flex;
       align-items: center;
	gap: 60px;
	}

.story-text {
   flex: 1;
}

.story-text h2 {
    font-size: 2.5em;
  color: #2c3e50;
   margin-bottom: 30px;
}

.story-text p {
    color: #666;
         font-size: 1.1em;
   margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
   flex:      1;
}

.story-image img {
        width: 100%;
    height: auto;
  border-radius:      12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-expertise     {
	padding  :    100px 20px;
  background: #f8f9fa;


}

.team-expertise h2 {
  text-align: center;
	  font-size: 2.8em;
	    color: #2c3e50;
	    margin-bottom: 60px;
}

.expertise-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	}

.expertise-card {

   background: white;
	padding: 35px;
	border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease; 

     }

.expertise-card:hover {
  transform: translateY(-5px);
}

.expertise-card h3 {
    color: #2c3e50;
  font-size: 1.4em;
   margin-bottom: 15px;
}

.expertise-card p {
   color: #666;
    line-height    : 1.6;
}

.methodology-deep {
     padding: 100px 20px;
   background: white;
	}

.methodology-deep h2

{
    text-align: center;
   font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 70px; 
	
}

.method-blocks {
   max-width: 1000px;
    margin: 0 auto;
}

.method-block {
    display: flex;
   align-items: center;
    gap: 50px;
  margin-bottom: 80px;
}

.method-block.reverse {
  flex-direction: row-reverse;
} 

.method-content		{
               flex: 1;
     }

.method-content h3 {
   font-size: 1.8em;
          color: #2c3e50;
  margin-bottom     :        20px;
}

.method-content p {
    color: #666;
   font-size: 1.1em;
  line-height: 1.7;
  margin-bottom:        25px;
}

.method-features {

   display: flex;
    flex-direction: column;
   gap :      8px;
	}

.method-features span


{
   color: #4a90e2;
    font-weight   :      500;
    position: relative;
   padding-left: 20px;
}

.method-features span::before {
  content: '→';
   position: absolute;
    left: 0;
    font-weight: bold;
}

.method-block img {
 flex: 1;
   max-width: 450px;
    width : 100%;
    height  :        auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section {
     padding   :    100px 20px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.values-section h2 {
      color: white;
   text-align: center;
    font-size: 2.8em;
  margin-bottom: 60px;
}

.values-content {
				 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-item


{
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
   padding: 35px;
  border-radius: 15px;
   color: white;
  border: 1px solid rgba(255,255,255,0.2);
}  

.value-item h4 {
  font-size: 1.4em;
    margin-bottom: 15px;
}

.value-item p {
  opacity: 0.9;
  line-height     : 1.6;
}

.results-showcase {
  padding: 100px 20px;
    background: #2c3e50;
		 color: white;
}

.results-showcase h2 {
	  text-align: center;
  font-size: 2.8em;
  margin-bottom: 60px;}

.stats-grid	{
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap   :      40px;
  text-align: center;
}

.stat-item {
	padding: 20px;
}

.stat-number {
    font-size: 3.5em;
    font-weight: 700;
         color: #4a90e2;
  margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
  opacity: 0.9;
}

.thankyou-hero {
   min-height: 70vh;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    display: flex;
       align-items: center;
    padding: 100px 20px;
    color     :        white;
}


.thankyou-content {
   text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
          margin-bottom: 30px;
}

.checkmark {

    width    :        80px;
  height: 80px;
     border-radius: 50%;
  background: rgba(255,255,255,0.2);
   margin: 0 auto;
    position: relative;
       animation   :        pulse 2s infinite;
}

.checkmark::after   {
  content: '✓';
    position: absolute;
    top: 50%;
   left :     50%;
  transform: translate(-50%, -50%);
          font-size: 40px;
    color: white;
    font-weight: bold;
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-content h1 {
   font-size: 2.8em;
    margin-bottom: 25px;
   font-weight: 700;
}

.lead-text {
   font-size: 1.3em;
  opacity: 0.9;
   line-height: 1.6;
}


.next-steps {
    padding: 100px 20px;
   background: white;
}

.next-steps h2 {
  text-align: center;
          font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 60px;
}

.steps-grid {
	      display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;

}

.step-item
	{
	  text-align: center;
    padding: 30px 20px;
}

.step-number 
 {
    width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border-radius:50%;
    display: flex;
  align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
	margin: 0 auto 20px;

}

.step-item h3 {
          color: #2c3e50;
	font-size: 1.4em;
   margin-bottom: 15px;}

.step-item p 
 {
  color: #666;
   line-height: 1.6;
}

.preparation-tips		{
  padding: 80px 20px;
	   background: #f8f9fa;
}

.preparation-tips h2 {
   text-align: center;
     font-size: 2.3em;
      color: #2c3e50;
       margin-bottom: 50px;
}

.tips-content {
  display: flex;
  align-items: center;
   gap   :       50px;
  max-width: 1000px;
   margin   :      0 auto;
}

.tip-visual {
    flex: 1;
}

.tip-visual img {
    width   :   100%;
  height: auto;
               border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tips-list {
    flex: 1;
}

.tip-item   {
    margin-bottom: 30px;


}

.tip-item h4 {
  color: #2c3e50;
    font-size: 1.2em;
   margin-bottom: 10px;
}

.tip-item p {
     color: #666;
    line-height: 1.6;
}

.while-waiting     {
   padding: 80px 20px;
   background: white;
}

.while-waiting h2 {
    text-align: center;
  color: #2c3e50;
	margin-bottom: 50px;
  font-size: 2.3em;
}

.waiting-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap    :  30px;
}

.waiting-card
{
	 background: #fafafa;
    padding  :    30px;
    -moz-border-radius: 10px;
  border-radius: 10px;
    border-left: 4px solid #4a90e2;
  transition :        transform 0.3s ease;
}

.waiting-card:hover {

  -moz-transform: translateY(-3px);
  transform: translateY(-3px);}

.waiting-card h4 {
    color  : #2c3e50;
   margin-bottom: 15px;
    font-size    :  1.2em;
}

.waiting-card p {


  color     :        #666;
	line-height  :    1.6; 
	

}

.contact-reminder {
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
        text-align: center;
}

.contact-reminder h2 {
  font-size :     2.3em;
  margin-bottom: 20px;
}

.contact-reminder p {
    font-size: 1.1em;
  margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
 display: flex;
    justify-content: center;
        gap: 40px;
  margin-bottom: 40px;
    flex-wrap: wrap;
}



.contact-item {
  background: rgba(255,255,255,0.1);
   padding: 15px 25px;
   border-radius: 8px;
  backdrop-filter: blur(10px);
}


.return-home {
	          display: inline-block;
   background: white;
    color: #667eea;
    padding: 15px 30px;
   text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
   transition: all 0.3s ease;

}

.return-home:hover {

	  transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
	
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2em;
    }
    
    .story-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .method-block,
    .method-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .tips-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .thankyou-content h1 {
        font-size: 2.2em;
    }
    
    .stat-number {
        font-size: 2.8em;
    }
}.policy {
    margin-top: 7%;
}