*  
  {
   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-color: #fafafa;
}

.container {
         max-width: 1200px;
	 margin: 0 auto;
   padding: 0 20px;
}

.primary-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    {
      display: flex;
	    justify-content :     space-between;
	  align-items: center;
		padding :  1rem 2rem;
		max-width: 1200px;
	  margin: 0 auto;


}

.brand-logo img {
	height: 45px;
	width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;

}

.nav-links a     {
   text-decoration: none;
   color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
   color: #2c5aa0;
} 

.burger-menu {
  display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px; 
	
}

.burger-menu span {
   width: 25px;
   height: 3px;
    background: #333;
    transition: 0.3s;
   border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section  {
    display: flex;
    align-items: center;
  min-height: 100vh;
 padding    :   80px 2rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.hero-content {
    flex: 1;
   max-width: 600px;
    margin-right: 2rem;
}

.hero-content h1     {

   font-size: 3.2rem;
    margin-bottom: 1.5rem;
  font-weight: 700;
   line-height: 1.2;


	}

.hero-content p {
   font-size: 1.2rem;
     margin-bottom: 2rem;
    opacity    :  0.9;
}

.cta-buttons  {
  display: flex;
  gap :        1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
   padding :      15px 30px;
   border-radius: 8px;
	 text-decoration: none;
   font-weight: 600;
    font-size: 1.1rem;
   transition: all 0.3s ease;
   display: inline-block;
}

.btn-primary {
	background:        #ff6b6b;
	color: white;
    border   :  2px solid #ff6b6b;
}

.btn-primary:hover {
	 background: #ff5252;
	  transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
		 color: white;
    border    :  2px solid white; 
	
}

.btn-secondary:hover {
   background: white;
	color: #667eea;
}

.hero-image {
  flex: 1;
}

.hero-image img {
   width  :        100%;
    height: auto;
   border-radius: 15px;
}

.problem-section
	{
          padding   :        80px 0;
    background: #f8f9fa;
}

.problem-section h2 {

	  text-align  :   center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #2c3e50;
     }

.problem-grid {
      display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;}

.problem-item {
  background: white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
   transition  :        transform 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-5px);
}

.problem-item h3 {
	  color: #e74c3c;
   margin-bottom: 1rem;
         font-size: 1.3rem;

}

.solutions-section {
    padding: 80px 0;
  background: white;
}

.solutions-section h2 {
  text-align:    center;
	 font-size: 2.5rem;
   margin-bottom :    3rem;
   color: #2c3e50;
} 

.methods-container {
    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

	               gap    :2rem;
}

.method-card {
	background   :#f8f9fa;
    border-radius: 15px;
	 overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-8px);


}  

.method-card img {
   width: 100%;
   height: 250px;
    object-fit: cover; 

}

.method-card h3 {

	   padding: 1.5rem 1.5rem 1rem;
    color: #2c5aa0;
  font-size: 1.4rem;
}

.method-card p {
    padding: 0 1.5rem 1.5rem;
   color : #666;
    line-height: 1.6;
}

.transformation-section {
   padding: 80px 0; 
	  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%); 
	   color: white;
}

.transformation-content {
  display: grid;
   grid-template-columns     :    1fr 1fr;
   gap: 3rem;
         align-items: center;
}

.transformation-text h2 {
    font-size: 2.3rem;
       margin-bottom: 1.5rem;
}

.transformation-text p   {
   font-size: 1.1rem;
   margin-bottom   :    2rem;
  opacity: 0.95;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {


  position: relative;
    padding: 0.5rem 0;
   padding-left: 1.5rem;

}

.benefits-list li:before {
  content: "✓";
   position: absolute;
   left: 0;
      color: #00b894;
  font-weight: bold;
  font-size: 1.2rem;
}

.transformation-image img {
    width: 100%;
  border-radius: 15px;
}

.cta-section {
     padding: 60px 0;
    background: #2d3436;
    color: white;
   text-align: center;}

.cta-content h2 {
	 font-size: 2.2rem;
                    margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-cta {
   background    :  #00b894;
					color: white;
     padding: 18px 40px;
   border-radius: 50px;
    text-decoration: none;
	font-weight: 600;
  font-size: 1.1rem;
     transition: all 0.3s ease;
   display: inline-block;
}

.btn-cta:hover     {
    background: #00a085;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,184,148,0.3);
}

.contact-section {
  padding: 80px 0;
    background: #f8f9fa;
}

.contact-section h2 {
   text-align: center;

	   font-size: 2.5rem;

	   margin-bottom :     3rem;

	   color: #2c3e50;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
   gap: 3rem;
}

.contact-info h3

{
    color: #2c5aa0;
	 margin-bottom: 1.5rem;
    font-size: 1.3rem;


}

.contact-item {


   margin-bottom: 1rem;
	padding: 0.5rem 0; 
	


}

.contact-form {
	   background: white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);


}  

.form-group {

	  margin-bottom: 1.5rem;
	}

.form-group label {
  display: block;

    margin-bottom: 0.5rem;

   font-weight: 500;

                    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 8px; 
		 width: 100%; 
	  font-size: 1rem; 
	    padding: 12px 15px; 
	   transition: border-color 0.3s ease; 
	       border: 2px solid #e0e0e0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: #2c5aa0;
}

.submit-btn {
    background: #2c5aa0;
   color: white;
   padding: 15px 30px;
    border:none;
   border-radius: 8px;
   font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
   background: #1e3d72;
  transform: translateY(-2px);
}

.site-footer {
  background: #2c3e50;
    color   :        white;
   padding  :     3rem 0 1rem;
}

.footer-content {
	display: grid;
        grid-template-columns: 1fr 3fr;
   gap: 2rem;
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo img {

  height: 60px;
  width: auto;


}

.footer-info {
   	 display     :grid;
     grid-template-columns: repeat(3, 1fr);
   	 gap: 2rem;}

.footer-section h4 {
    margin-bottom: 1rem;
	 color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li
{
   margin-bottom    :      0.5rem;
}

.footer-section a {
    color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ecf0f1;
}

.footer-bottom {
  text-align: center;
 margin-top: 2rem;
         padding-top: 2rem;
    border-top: 1px solid #34495e;
         max-width: 1200px;
   margin-left: auto;
  margin-right: auto;
  color: #95a5a6;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        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: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 0;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .transformation-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .problem-grid,
    .methods-container {
        grid-template-columns: 1fr;
    }
    
    .nav-wrapper {
        padding: 1rem;
    }
}.about-hero  
  {
    padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.about-hero .container {
  display: grid;
   grid-template-columns: 1fr 1fr;
         gap: 3rem;
   align-items: center;
}

.about-hero-content h1     {
  font-size: 2.8rem;
    margin-bottom   :       1.5rem;
    font-weight: 700;
}

.about-hero-content p {
	font-size: 1.2rem;
     line-height: 1.7;
  opacity: 0.95;
}

.about-hero-image img {
    width: 100%;
    border-radius  :      15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.story-section {
  padding: 80px 0;
   background: #f8f9fa;
}

.story-content h2 {
  font-size: 2.3rem;
       margin-bottom     :      2rem;
    color: #2c3e50;
   text-align: center;
}

.story-content p {

	  font-size: 1.1rem;
   line-height: 1.8;
    margin-bottom: 1.5rem;
   color: #555;
    max-width: 800px;
   margin-left: auto;
    margin-right: auto;}

.highlight-box {
   background: white;
    padding: 2rem;
  border-radius :       12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
   border-left: 4px solid #2c5aa0;
}

.highlight-box h3 {
   color: #2c5aa0;
    margin-bottom: 1rem;
  font-size: 1.3rem; 
	
}

.expertise-section {
   padding: 80px 0;
    background: white;
}

.expertise-section h2 {
   text-align: center;

	                    font-size   :        2.3rem;

	   margin-bottom: 3rem;

	    color: #2c3e50;
}

.expertise-grid {
    display: grid;
    gap: 4rem;
}

.expertise-item {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 2rem;
    align-items: center;
} 

.expertise-item:nth-child(even) {
   direction: rtl;
}

.expertise-item:nth-child(even) .expertise-text


{


       direction: ltr;}

.expertise-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.expertise-text h3 {
   color: #2c5aa0;
        font-size: 1.4rem;
   margin-bottom:    1rem;
}

.expertise-text p {
    color: #666;
    line-height: 1.7;
}

.values-section {
   padding: 80px 0;
  background: #f8f9fa;
}

.values-section h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
      background: white;
	padding: 2rem;
    border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
          transition: transform 0.3s ease;
}

.value-card:hover {

  transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
}

.value-card h3 {

	    color:       #2c5aa0;
	font-size: 1.3rem;
   margin-bottom: 1rem;




}

.value-card p {
	      color: #666;
  line-height: 1.6;


}

.approach-section  
  {
   padding: 80px 0;
  background: white;
}

.approach-content {
 grid-template-columns: 1fr 1fr;
   display: grid;
			align-items : flex-start;
    gap: 3rem;
}


.approach-text h2 {
    font-size:   2.3rem;
   margin-bottom: 1.5rem;
   color: #2c3e50;
}

.approach-text > p {
	margin-bottom: 2rem;
   color: #555;
  font-size: 1.1rem;
   line-height: 1.7;
}

.approach-steps {
    margin-top: 2rem;
}

.step {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
      border-left: 3px solid #74b9ff;

}

.step h4 {
    color: #2c5aa0;
  margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step p {
	    color    :    #666;
   line-height     :   1.6;

}

.approach-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.results-section {

   padding: 80px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
   color: white;
  text-align: center;
}

.results-section h2 {
    font-size: 2.3rem;
  margin-bottom: 3rem;
}

.results-content {
		display: grid;

  grid-template-columns: repeat(3, 1fr);

   gap: 2rem;

  margin-bottom    :       3rem;
}

.result-item


{
  padding: 1.5rem;
}

.result-number {
   font-size: 3rem;
	font-weight: bold;
   margin-bottom: 0.5rem;
                    color: #00b894;
}

.result-text {
					font-size: 1rem;
    opacity: 0.95;
}

.testimonial-box {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
   border-radius: 12px;
    max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.testimonial-box p    {
   font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style  :italic;
}

.testimonial-box cite {
    font-size: 0.9rem;

  opacity: 0.8;
}

.thankyou-hero {
  padding: 120px 0 80px; 
	  background: linear-gradient(135deg, #00b894 0%, #00a085 100%); 
	   color :        white; 
	    text-align: center;
}

.thankyou-content {
  max-width: 800px;
   margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;


}

.checkmark {
    width: 80px;
         height: 80px;
  background: rgba(255,255,255,0.2);
   border-radius :      50%;
  display: flex;
               align-items: center;
  justify-content:   center;
	font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto;
  animation: checkmarkPulse 2s infinite; 

}@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-content h1 {
      font-size: 2.8rem;
     margin-bottom: 1.5rem;
    font-weight: 700;

}

.main-message {
  font-size: 1.2rem;
  margin-bottom: 3rem;
    opacity: 0.95;
}

.next-steps {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
   border-radius: 15px;
   margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.next-steps h2 {
    font-size: 1.8rem;
	margin-bottom: 2rem;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap :     1.5rem;
}



.step-item {
  display: flex;
    align-items: flex-start;
   gap: 1rem;
  text-align: left;
}

.step-number {
	   width: 40px;
  height:        40px;
         background: #ff6b6b;
  border-radius: 50%;
    display: flex;
  align-items: center;
   justify-content: center;
   font-weight: bold;
	flex-shrink: 0; 
	

}

.step-content h3 {
  margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p    {
  font-size: 0.9rem;
   line-height: 1.5;
   opacity: 0.9;
}

.while-waiting {
   margin-bottom: 3rem;
}

.while-waiting h2 {
  font-size: 1.8rem;
   margin-bottom: 2rem;
}


.tips-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
	
}

.tip-card {
    background   :    white;
  color: #333;
   padding: 1.5rem;
    border-radius: 12px;
	text-align: left;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tip-card img {
    width   : 100%;
	  height: 150px;
	    object-fit: cover;
	         border-radius: 8px;
	  margin-bottom     :       1rem;
}

.tip-card h3 {


   color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.tip-card p {
   color  :    #666;
   line-height: 1.6;
}

.encouragement-section {
  margin-bottom: 3rem;
}

.encouragement-box {
  background: rgba(255,255,255,0.15);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.encouragement-box h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}



.encouragement-box p {
	line-height :       1.7;
    opacity: 0.95;
}

.action-buttons {

  display: flex; 
		gap  :   1rem; 
	   justify-content: center; 
	   flex-wrap: wrap;

} 

.quick-tips {

	  padding: 80px 0;
   background: #f8f9fa;


}

.quick-tips h2 {
   text-align: center;
          font-size: 2.3rem;
    margin-bottom: 3rem;
  color: #2c3e50;

}


.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.quick-tip   {
    background     :   white;
   padding    :  2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.quick-tip:hover {
  transform: translateY(-5px);
}

.quick-tip h3 {
   color: #2c5aa0;
  margin-bottom: 1rem;
   font-size: 1.2rem;
}

.quick-tip p {
   color: #666;
  line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero .container,
    .expertise-item,
    .approach-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .expertise-item:nth-child(even) {
        direction: ltr;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .results-content {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .values-grid,
    .tips-container,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}.privacy-section,
.cookies-section {
                    padding: 80px 0;

               background: #f8f9fa;
	
}

.privacy-section h2,
.cookies-section h2 {
   text-align    :   center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.privacy-section h3,
.cookies-section h3  
  {
  color  :     #2c5aa0;
                    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.privacy-section p,
.cookies-section p {
	color: #666;
  line-height: 1.6;
   margin-bottom :       1.5rem;
}