* {
   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: #f8f9fa;
}

.content-container {
   max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
}

.main-navigation	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 1rem 0;
    position: fixed;
  top: 0;
        width: 100%;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
        max-width: 1200px;
    margin: 0 auto;
	 display: flex;
  justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo  
  {
   height: 45px;
  width: auto;
}

.nav-links {
   display: flex;
  gap    :  2rem;

}

.nav-item		{
   color: white;

    text-decoration   :       none;

    font-weight: 500;

  padding   :   0.5rem 1rem;

    border-radius: 25px;

   transition: all 0.3s ease;
}

.nav-item:hover

{
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.burger-menu {
   display: none;
    flex-direction: column;
 cursor: pointer;
   gap: 4px;
}

.burger-menu span {

	  width: 25px;
	height: 3px;
	 background-color: white;
  transition: 0.3s;
   border-radius :     2px;
     }

.hero-section {


  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;


}

.hero-content {
   gap: 3rem;
   display: grid;
  max-width: 1200px;
  align-items: center;
    margin: 0 auto;
   padding: 0 20px;
  grid-template-columns: 1fr 1fr;
}

.hero-text h1 {
    font-size: 3.2rem;
   margin-bottom: 1.5rem;
      font-weight    :700;
    line-height: 1.2;
}

.hero-subtitle {
         font-size: 1.3rem;
    margin-bottom: 2rem;
       opacity:     0.9;
}

.hero-buttons {
   display: flex;
    gap: 1rem;
	 flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
   padding: 1rem 2rem;
   border-radius:   30px;
   text-decoration     :        none;
   font-weight: 600;
    transition :  all 0.3s ease;
   display: inline-block;
}

.btn-primary {
    background-color  :       white;
   color: #f5576c;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
         background-color: transparent;
  color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
   background-color :  white;
  color: #f5576c;
}

.hero-image img {
  width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.transformation-section {
  padding    :      5rem 0;
  background-color: white;
}

.transformation-section h2 {
  text-align: center;
    font-size: 2.8rem;
	margin-bottom  :      3rem;
    color: #2c3e50;
}

.transformation-grid     {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap     :      2rem;


}

.transform-card {
    background: white;
    border-radius: 15px;
   padding: 2rem;
	 text-align  :      center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.transform-card:hover {
  transform: translateY(-10px);
}

.transform-card img {
   width     :       100%;
   height: 200px;
  object-fit: cover;
  border-radius: 10px;
    margin-bottom: 1.5rem;
}

.transform-card h3 {
   font-size :       1.5rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.transform-card p {
   color: #666;
  line-height: 1.6;
	
}

.services-section {
   padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.services-section h2 {
	  text-align: center;
  font-size: 2.8rem;
       margin-bottom: 3rem;

}

.services-layout
	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
}

.service-item {
  background: rgba(255,255,255,0.1);
    padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.service-item h3 {
  font-size: 1.8rem; 
	   margin-bottom: 1rem;
}

.service-item p 
 {
 margin-bottom: 1.5rem; 
	    opacity: 0.9;
}

.service-item ul 
 {
    list-style: none;
}

.service-item li   {
   padding: 0.5rem 0;
  padding-left: 1.5rem;
          position: relative;
}

.service-item li:before {
  content: '▶';
    position: absolute;
   left: 0;
    color: #f093fb;
}

.workshop-highlight {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.workshop-content {
          display :    grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items    :center;
}

.workshop-image img  
  {
   width: 100%;
   height :   auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.workshop-text h2 {
	 font-size: 2.5rem;
      margin-bottom: 1.5rem;
	 color: #2c3e50;
}

.workshop-text p {
  margin-bottom: 1.5rem;
   color     :   #666;
    font-size: 1.1rem;
}

.workshop-text ul {
               list-style: none;
   margin-top: 1.5rem;
}

.workshop-text li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
	 color: #555;
}

.workshop-text li:before {
  content: '✓';
  position: absolute;
  left: 0;
   color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
} 

.cta-section   {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
   font-size: 2.5rem;

   margin-bottom: 1rem;
}

.cta-content p {
  font-size     :        1.2rem;
	 margin-bottom: 2rem;
   opacity: 0.9;
	
}

.cta-button {


	background-color: white;
    color: #f5576c;
    padding: 1.2rem 3rem;
  border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
  font-size: 1.1rem;
    transition: all 0.3s ease;
   display: inline-block;
	}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.contact-section {
   padding: 5rem 0;
         background-color: white;
}

.contact-section h2 {
   text-align: center;
    font-size: 2.8rem;
   margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-layout {
    display: grid;
	grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info h3 {
    font-size    :       1.8rem;
   margin-bottom  :   2rem;
  color: #667eea;
}

.contact-details p {
   margin-bottom: 1rem;
  color    :   #666;
}

.contact-details strong {
    color: #2c3e50;
} 

.contact-form   {
  background: #f8f9fa;
    padding    :      2.5rem;
          border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
  margin-bottom: 0.5rem;
   font-weight  :600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 1rem;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
	 font-size: 1rem;
   transition     :   border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: #667eea;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 1rem 2rem;
  border: none;
   border-radius: 8px;
   font-size   :    1.1rem;
	 font-weight: 600;
   cursor    :       pointer;
   transition: all 0.3s ease;
  width: 100%; 

}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.main-footer {
	background-color: #2c3e50;
   color: white;
    padding:      3rem 0 1rem;
}

.footer-content


{
   max-width: 1200px; 
    margin: 0 auto; 
   padding: 0 20px; 
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 2rem;
}

.footer-logo {
   height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom    :1rem;

}

.footer-section h4 {
    margin-bottom: 1rem;
  color: #667eea;
}

.footer-section ul   {
    list-style: none; 
	
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
   color: #bdc3c7;
   text-decoration :       none;
  transition: color 0.3s ease;
}



.footer-section a:hover {
   color: white;
}

.footer-bottom {
   text-align: center;
	padding-top: 2rem;
  margin-top: 2rem;
   border-top: 1px solid #34495e;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.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-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .workshop-content {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .content-container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  margin-top: 80px;
  padding: 3rem 0;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	color: white;
   text-align: center;
}

.about-hero h1 {
   font-weight :700;
	margin-bottom: 1.5rem;
   font-size: 3rem;
}

.about-hero-subtitle {
   font-size: 1.3rem;
    opacity: 0.9;
   max-width: 800px;
    margin :     0 auto;
}

.story-section {
   padding:5rem 0;
   background-color: white;
}

.story-layout {
  display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
   align-items: center;
}

.story-text h2{
   font-size: 2.5rem;
	margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p {
	margin-bottom    :   1.5rem;
       color: #666;
   font-size: 1.1rem;
                    line-height: 1.7;


}

.story-image img {
   width: 100%;
        height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section {
 padding: 5rem 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.values-section h2 {
   text-align:   center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.values-grid {
  display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
   background: white;
  padding: 2.5rem 1.5rem;
   border-radius     :  15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover  
  {

	  transform: translateY(-10px);

}

.value-icon   {
  margin-bottom     :   1.5rem;
}

.icon-circle {
               width: 60px;
  height: 60px;
    border-radius   :      50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
     display: flex;
   align-items: center;
  justify-content: center;
  font-size: 1.5rem;
	font-weight: bold;
  margin: 0 auto;
}

.value-card h3 {
  font-size     :       1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;

}

.value-card p {
  color: #666;
   line-height: 1.6;
}

.approach-section {
  padding: 5rem 0; 
	      background-color: #f8f9fa;
}

.approach-content {

   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;


}  

.approach-image img {

  width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);}

.approach-text h2 {
    font-size: 2.5rem;
	 margin-bottom :1.5rem;
  color: #2c3e50;
}

.approach-text > p {
     margin-bottom: 2rem;
   color: #666;
  font-size: 1.1rem;
   line-height: 1.7;}

.approach-features 
 {
   flex-direction: column;
  display    :     flex;
          gap :       1.5rem;
}

.approach-feature {
   background: white;
       padding: 1.5rem;
     border-radius: 10px;
      border-left: 4px solid #667eea;


}

.approach-feature h4 {
        color: #2c3e50;
   margin-bottom: 0.5rem;
   font-size: 1.2rem;
}

.approach-feature p {
    color: #666;
   margin: 0;
}

.expertise-section {
  padding: 5rem 0;
    background-color     :  white;
}

.expertise-section h2 {
  text-align     :      center;
   font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap  :  2rem;
}

.expertise-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);

}

.expertise-item img {

   width: 100%; 
	   height: 200px; 
		object-fit: cover;
}

.expertise-content {
    padding: 2rem;
}  

.expertise-content h3 {
   margin-bottom: 1rem;
	 color: #2c3e50;
  font-size: 1.5rem;
}

.expertise-content p {


  color: #666;
  line-height: 1.6;
     }

.commitment-section		{
    padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	 text-align: center;
}

.commitment-content h2 {
   font-size: 2.8rem;
  margin-bottom: 2rem;
}

.commitment-content > p {


    font-size: 1.2rem;
    margin-bottom: 3rem;
	opacity: 0.9;
    max-width: 800px;
  margin-left:auto;
  margin-right    : auto;
     }

.commitment-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
    margin-top: 3rem;
}

.stat-item  {
  background: rgba(255,255,255,0.1);
    padding :  2rem;
    border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
	  font-weight: bold;
	    margin-bottom    :      0.5rem;
	   color: #f093fb;
}

.stat-label {
  font-size: 1.1rem;
   opacity: 0.9;
}

.thankyou-hero {
  margin-top: 80px;
   padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    text-align: center;
}

.thankyou-content {
    max-width: 600px;
   margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem; 

}

.checkmark-circle {
   width: 80px;
   height: 80px;
   border-radius: 50%;
  background-color: #4caf50;
   margin: 0 auto;
  display:      flex;
   align-items: center;
    justify-content: center;
  animation: pulse 2s infinite; 


}

.checkmark {
  width: 20px;
    height: 35px;
   border: solid white;
    border-width: 0 4px 4px 0;
  transform: rotate(45deg); 
	
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-content h1 {
  font-size:  3rem;
   margin-bottom: 1.5rem;
  font-weight:     700;
}

.thankyou-message {
    font-size: 1.2rem;
   opacity: 0.9;
  line-height: 1.6;
}

.next-steps-section {
  padding: 5rem 0;
  background-color: white;
}

.next-steps-section h2 {
      text-align: center;
                    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   :      2rem;
}

.step-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
   text-align    :        center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   position: relative;
}

.step-number {
    width    :     50px;
    height: 50px;
  border-radius:   50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   display: flex;
    align-items: center;
    justify-content: center;
	font-size  :    1.5rem;
   font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
	 color :      #2c3e50;
}

.step-card p {
       color: #666;
       line-height: 1.6;


}

.while-waiting-section {
    padding: 5rem 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.waiting-content {
         display: grid;
  grid-template-columns: 1fr 1fr;
     gap: 3rem;
   align-items: center;
}

.waiting-text h2 {

	  font-size: 2.5rem;
       margin-bottom: 1.5rem;
       color: #2c3e50;
	}

.waiting-text > p {
   margin-bottom: 2rem;
   color: #666;
   font-size   :    1.1rem;
	line-height: 1.7;
}

.preparation-tips h3 {
    color: #2c3e50;
  margin-bottom     :    1rem;
    font-size: 1.3rem;
	} 

.preparation-tips ul {
   list-style: none;
    padding-left    :        0;
	}

.preparation-tips li {

	  padding-left: 1.5rem;
    position: relative;
      line-height: 1.5;
  padding: 0.5rem 0;
   color: #555; 
	

}

.preparation-tips li:before {
  content: '→';
   position: absolute;
    left: 0;
  color  :  #667eea;
   font-weight: bold;
}

.waiting-image img {
	    width: 100%;
	height: auto;
    border-radius    :   15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);



}

.contact-reminder {
  padding   :        4rem 0;
  background-color: white;
  text-align: center;
}

.reminder-content h2 {
   font-size: 2.5rem; 
	   margin-bottom: 1.5rem; 
	    color: #2c3e50;
}

.reminder-content > p  {
   font-size: 1.1rem;
   margin-bottom: 2rem;
    color:        #666;
}

.contact-highlight {
  background: #f8f9fa;
   padding: 2rem;
    border-radius: 15px;
                    margin-bottom: 2rem;
  display: inline-block;
}

.phone-info {
    display   :      flex;
   align-items     : center;
  gap: 1rem;
}

.phone-icon {
    font-size: 2rem;
}

.phone-details {
   display: flex;
    flex-direction    :       column;
 text-align: left;
}

.phone-number
{
  font-size: 1.5rem;
    font-weight: bold;
  color: #2c3e50;
}

.phone-availability {
   color: #666;
  font-size   :   0.9rem;
}

.office-info {
  margin-top  : 2rem;
}

.office-info h3{
  color: #2c3e50;
   margin-bottom: 1rem;
	
}

.office-info p {
    color: #666;
                    line-height: 1.6;
}

.return-home-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
               color: white;
  text-align: center;
}

.return-content h2 {
    font-size: 2.5rem;
  margin-bottom    :1rem;
}

.return-content p {
  font-size: 1.2rem;
   margin-bottom: 2rem;
                    opacity: 0.9;
}

.return-buttons {
  display: flex;
    gap: 1rem;
  justify-content: center;
    flex-wrap: wrap;
}

.nav-item.active   {
  background-color: rgba(255,255,255,0.2);
}  @media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .story-layout,
    .approach-content,
    .waiting-content {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .expertise-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .commitment-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .phone-info {
        flex-direction: column;
        text-align: center;
    }

    .return-buttons {
        flex-direction: column;
        align-items: center;
    }

    .return-buttons .btn-primary,
    .return-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .commitment-stats {
        grid-template-columns: 1fr;
    }
}.content-container h1		{
  font-size: 2.8rem;
    color: #2c3e50;
       margin-bottom: 2rem;
	text-align: center;
}

.content-container h2 {
  font-size: 1.8rem;
   color: #667eea;
   margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-container p {
	    font-size: 1.1rem;
  color: #666;
   margin-bottom: 1.5rem;
  line-height: 1.8;
     }

.content-container ul {
   list-style: none; 
	   margin-bottom: 1.5rem;
}

.content-container li {
	padding: 0.5rem 0;
          padding-left :1.5rem;
    position    :        relative;
        color     :        #555;
}

.content-container li:before {
  content: '✓';
  position:   absolute;
    left    :        0;
   color: #667eea;
  font-weight: bold;
}