* {
	    margin :        0;
       padding: 0;
    box-sizing :    border-box;
	}

html {
  scroll-behavior: smooth;
}

body

{


  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
       color:   #2c3e50;
        background-color: #ffffff;
	}

.navbar-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding:   1rem 0;
    position: sticky;
   top: 0;
		z-index:     1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-wrapper
	{
    margin: 0 auto;
    max-width  : 1200px;
    justify-content: space-between;
    padding:   0 20px;
   align-items   :center;
   display: flex;
} 

.navbar-logo {

	               flex-shrink     :    0;
}

.logo-image {
   height: 50px;

  width: auto;

    display: block;
}

.nav-menu {
    margin: 0;

	    gap: 2rem;

	   display: flex;

	    list-style: none;
} 

.nav-link
	{
  color:       white;
   text-decoration     :       none;
   font-weight: 500;
    transition   :     all 0.3s ease;
  padding: 0.5rem 1rem;
   border-radius: 4px;
}

.nav-link:hover{


  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
	}

.hamburger-menu {
   display: none;
  flex-direction: column;
	 cursor: pointer;
   gap: 6px;
}

.hamburger-menu span {
    width: 25px;
   height: 3px;
   background-color: white;
     border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}


.hamburger-menu.active span:nth-child(2) {
               opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section	{
  display: grid;

	 margin: 0 auto;

   gap: 3rem;

    align-items: center;

  grid-template-columns: 1fr 1fr;

   padding: 4rem 20px;

          max-width: 1200px;
}

.hero-content h1 {
  margin-bottom: 1rem;
  line-height: 1.2;
   color: #1a1a1a;
  font-weight: 700;
  font-size: 3.5rem;
}

.hero-content p {
   font-size: 1.2rem;
    color: #666;
  margin-bottom: 2rem;
}

.cta-button {
     display  :    inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 1rem 2.5rem;
    border-radius :    50px;
 text-decoration: none;
    font-weight :   600;
   transition: all 0.3s ease;
  cursor: pointer;
		 border: none;
   font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-3px); 
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.hero-image img {
    width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); 

}

.about-section {
   background-color: #f8f9fa;
   padding: 4rem 20px;
}

.about-wrapper {
   max-width: 1200px;
	margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap  :     3rem;
   align-items: center;
}

.about-text h2 {
        margin-bottom  :    1.5rem;
    color: #1a1a1a;
   font-size: 2.5rem;
}

.about-text p {
  font-size: 1.1rem;
    color: #555;
   margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image img {
	width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-preview {
   max-width    :1200px;
    margin: 0 auto;
   padding: 4rem 20px;
}

.services-preview h2 {
 font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
    color: #1a1a1a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card  {
   background: white;
  border-radius: 12px;
					overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
               transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	
}

.service-card img {


  width: 100%;
  height: 250px;
   object-fit: cover;
     }


.service-card h3 {
  font-size    :       1.5rem;
  margin: 1.5rem 1.5rem 1rem;
   color: #1a1a1a;
}

.service-card p {


    color: #666;
	    margin: 0 1.5rem 1.5rem;
	   font-size: 0.95rem;
	  line-height :        1.6;
}

.coaching-section {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%); 
	  padding: 4rem 20px; 
	  margin-top   :  2rem;


}


.coaching-content {
   max-width: 1200px;

    margin: 0 auto;
}


.coaching-content h2 {
  font-size: 2.5rem;
  margin-bottom:     1.5rem;
   color: #1a1a1a;
	
}

.coaching-content p {
   font-size: 1.1rem;
   color: #555;
  margin-bottom: 2.5rem;
   line-height: 1.8;
}

.coaching-features {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 2rem;
}

.feature-item {
     background: white;
   padding: 2rem;
          border-radius: 10px;
         border-left: 4px solid #667eea;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
   font-size: 1.3rem;
    color   :#1a1a1a;
        margin-bottom: 0.8rem;
}

.feature-item p    {
   color: #666;
   font-size: 0.95rem;
  margin: 0;
}

.cta-section {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 20px;
	 margin: 2rem 0;
}

.cta-wrapper


{
   max-width: 800px;
    text-align: center;
  color: white;
	margin: 0 auto; 
	
}



.cta-wrapper h2 {
   font-size  :      2.5rem;
  margin-bottom: 1rem;
}

.cta-wrapper p {
    font-size: 1.1rem;
  margin-bottom     :       2rem;
   opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background-color: white;
    color   :    #667eea;
  padding: 1.2rem 3rem;
   border-radius: 50px;
  text-decoration: none;
    font-weight     :   700;
  transition: all 0.3s ease;
   font-size: 1.1rem;
}

.cta-button-large:hover	{
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);

}

.contact-section {

   background-color     :    #f8f9fa;
    padding: 4rem 20px; 

	}

.contact-container {
   max-width: 600px;
  margin: 0 auto;
}

.contact-container h2 {
                    font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.contact-form {
		background: white;
  padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
    display: flex;
  flex-direction: column; 
	
}

.form-group label     {
   color: #1a1a1a;
   font-size: 0.95rem;
  font-weight: 600;
   margin-bottom: 0.5rem;


}

.form-group input,
.form-group select,
.form-group textarea {


    transition: all 0.3s ease;
   border-radius: 6px;
   font-family: inherit;
	border: 2px solid #e0e0e0;
   font-size    :   0.95rem;
    padding: 0.8rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus     {

	  outline: none;
    border-color:        #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);

}

.submit-button {
	  width: 100%;

    padding: 1rem;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

   color: white;

   border: none;

   border-radius:6px;

   font-size: 1.05rem;

    font-weight  :      600;

  cursor: pointer;

   transition: all 0.3s ease;

    margin-top: 1rem;
	}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.footer-main {

         background-color: #1a1a1a;
  color: #ffffff;
    padding: 3rem 20px 1rem;
    margin-top: 3rem;
	}

.footer-wrapper  
  {
  max-width: 1200px;
  margin: 0 auto;
   display    :        grid;
   grid-template-columns: 250px 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo	{
   display: flex;
  align-items: flex-start;
}

.footer-logo-img
	{
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-content{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.footer-column h4	{
                    font-weight: 600;
                    font-size: 1.1rem;
  margin-bottom: 1.2rem;
	
}

.footer-column ul {

	     list-style: none;


}

.footer-column ul li {
    margin-bottom: 0.7rem; 
	
}

.footer-column a {
   color     :        #b0b0b0;
   text-decoration: none;
   transition: all 0.3s ease;
   font-size: 0.95rem;
}

.footer-column a:hover {


  color: #667eea;

}



.footer-column p {
  line-height: 1.8;
    color: #b0b0b0;
 font-size: 0.95rem;
   margin-bottom   :    0.8rem;
}

.footer-bottom {
      text-align: center;
    color: #888;
  font-size: 0.9rem;
               padding-top     :   2rem;
   border-top    :        1px solid #333;
     }@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #667eea;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 1.5rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .coaching-content h2 {
        font-size: 1.8rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .coaching-features {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 20px;
	text-align    :  center;
}

.services-hero-content h1 {
   font-size: 3rem;

	    margin-bottom   :     1rem;

	   font-weight: 700;
}

.services-hero-content p {
   opacity: 0.95;
   font-size: 1.3rem;
}

.services-detailed {
    max-width: 1200px;
   padding: 3rem 20px;
    margin: 0 auto; 
	
}

.services-wrapper {
   display: flex;
  flex-direction: column;
  gap: 3rem;
} 

.service-full-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:    3rem;
   align-items: center;
    background: white;
  border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-full-card.reverse {
    direction: rtl;
}

.service-full-card.reverse > *  {
  direction: ltr;
}

.service-full-image 
 {
  overflow: hidden;
 border-radius: 12px;
}

.service-full-image img {


  width: 100%;
   height: auto;
   display    :  block;
         object-fit:       cover;}

.service-full-content 
 {
    padding: 2rem;
}  

.service-full-content h2 {
  font-size: 2rem;

	  margin-bottom    :      1rem;

	   color    :       #1a1a1a;
}

.service-full-content p {
   color   : #666;
  font-size: 1rem;
  line-height: 1.8;
    margin-bottom   :   1.5rem;
}

.service-highlights

{
    margin: 2rem 0;
}

.highlight h4 {
    font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
   font-weight: 600;
}

.highlight ul {
    list-style: none;
         margin: 0;
}



.highlight ul li {
  padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: #666;
  position: relative;
	font-size: 0.95rem;
}

.highlight ul li:before {
  content: "✓";
               position   :     absolute;
		 left: 0;
    color: #667eea;
  font-weight: bold;
}

.service-price {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 1.5rem;
   border-radius   :    8px;
   display: flex;
    align-items    :baseline;
    gap  : 0.5rem;
	 margin-top: 2rem;
} 

.price-label {
   font-size: 0.9rem;
    color: #666;
  font-weight: 500;
}

.price-value	{
   font-size  :      2.5rem;
  font-weight: 700;
   color: #667eea;
}

.price-period {
	 font-size:       0.9rem;
    color: #666;
     margin-left  :     auto;
}

.services-comparison {
   max-width: 1200px;
  margin: 3rem auto;
    padding: 0 20px;
}

.services-comparison h2 {
    font-size: 2.5rem;
   text-align:    center;
   margin-bottom     : 2rem;
  color: #1a1a1a;
}

.comparison-table {
  background: white;
                    border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-row {
   display    :grid;
  grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #e0e0e0;

}

.comparison-row.header-row {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color   :white;
  font-weight: 600;
}

.comparison-row:last-child   {
	 border-bottom:      none;
}

.comparison-cell {
    padding: 1.2rem;
    text-align   :  center;
  font-size: 0.95rem;
	
}

.comparison-cell.feature {

   text-align: left;
          font-weight:        500;
    color: #1a1a1a;}

.comparison-row:not(.header-row):nth-child(even) {
  background-color: #f8f9fa;
}  

.faq-section {
   max-width: 1200px;

	       margin: 3rem auto;

	   padding: 0 20px;
}

.faq-wrapper h2 {
   font-size: 2.5rem;
   text-align: center;
  margin-bottom: 2rem;
   color: #1a1a1a;
}

.faq-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
	   background:   white;
    padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                    border-left: 4px solid #667eea;
}

.faq-item h3 {
  margin-bottom  :     0.8rem;
    font-size: 1.1rem;
       color: #1a1a1a;
    font-weight: 600;
}

.faq-item p {
  line-height: 1.6;
         font-size: 0.9rem;
    margin: 0;
    color: #666;
}

.cta-services{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   text-align   :     center;
    padding: 3rem 20px;
 margin  :   2rem 0;
}

.cta-services h2 {
	  font-size: 2.2rem;
	 margin-bottom: 1rem;
}

.cta-services p {
   font-size: 1.1rem;
   margin-bottom  :        2rem;
    opacity: 0.95;
}

.thankyou-container {
  min-height: calc(100vh - 200px);
   display: flex;
        align-items   :       center;
  justify-content: center;
    padding: 3rem 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thankyou-content {
  background: white;
    border-radius: 15px;
   padding: 3rem;
          max-width: 700px;
	 width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;

}

.thankyou-icon {
   margin-bottom: 2rem;
}

.thankyou-icon svg {


  width: 120px;
     animation: scaleIn 0.6s ease-out;
    display: inline-block;
     height: 120px;

}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
   color: #1a1a1a;
   font-size: 2.5rem;
  margin-bottom: 0.5rem;
}



.thankyou-subtitle {
	   color: #667eea;
   font-size  :1.2rem;
   font-weight :    600;
  margin-bottom: 2rem;

}

.thankyou-message {

  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 2rem;
       border-radius: 10px;
   margin-bottom: 2rem;}

.thankyou-message p   {
  color   :  #666;
   line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.thankyou-message p:last-child		{

    margin-bottom: 0;


}


.next-steps {
   margin: 3rem 0;
   text-align: left; 

}

.next-steps h2 {
   font-size  :  1.8rem;
    color: #1a1a1a;
   margin-bottom: 1.5rem;
  text-align: center;
}

.steps-grid {
	                    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

	  gap: 1.5rem;

	    margin-bottom: 2rem;
	}


.step-box {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
                    text-align: center;}

.step-number		{
    display: inline-block;
               width: 50px;
	height: 50px;
    line-height: 50px;
  border-radius    :   50%;
  background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
   font-size: 1.5rem;
  margin-bottom:      0.8rem;
}  

.step-box h3 {
      font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-box p  
  {
               font-size: 0.85rem; 
	    opacity: 0.9; 
	   line-height: 1.4; 
	    margin: 0;
}

.faq-quick {
          background: white;
  padding: 2rem;
  border-radius: 10px;
   margin: 2rem 0;
   border: 2px solid #e0e0e0;
}

.faq-quick h2 {
		 font-size    :1.6rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-quick-grid {

	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap   :1.5rem;
}

.faq-quick-item {
  text-align: left;

}

.faq-quick-item h4 {


   color: #667eea;
   font-size: 0.95rem;
   margin-bottom    :  0.5rem;
  font-weight:    600;}

.faq-quick-item p		{
    margin: 0;
  color     :      #666;
  font-size: 0.85rem;
  line-height: 1.5;}

.action-buttons {


    display: flex;
    gap    :     1rem;
  justify-content: center;
 margin-top: 2rem;
  flex-wrap: wrap;

}

.btn-primary,
.btn-secondary {
   padding: 1rem 2rem;
  border-radius   :        50px;
   text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
	 font-size: 0.95rem;
}

.btn-primary {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
   background: white;
   color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #f8f9fa;

	  transform: translateY(-3px);
}@media (max-width: 768px) {
    .service-full-card {
        grid-template-columns: 1fr;
    }

    .service-full-card.reverse {
        direction: ltr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-full-content h2 {
        font-size: 1.5rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-full-content {
        padding: 1.5rem;
    }

    .service-highlights {
        margin: 1.5rem 0;
    }

    .highlight ul li {
        font-size: 0.85rem;
    }

    .thankyou-icon svg {
        width: 80px;
        height: 80px;
    }

    .faq-quick-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
       padding: 80px 2rem;
   background: #f8f9fa;
  min-height: calc(100vh - 300px);
}

.policyContainer {
  max-width  :   800px;
   margin: 0 auto;
	text-align: left;
    background: white;
  padding   :       3rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
   font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
   font-weight: 700;
}

.policyContainer h2


{
    font-size: 1.8rem;

	   color: #2c3e50;

	                    margin-top: 2rem;

	  margin-bottom: 1rem;

	  font-weight: 600;

	  border-bottom: 3px solid #667eea;

	    padding-bottom: 0.5rem;
}

.policyContainer p {

   color  :      #555;
  margin-bottom: 1.2rem;
          line-height: 1.8;
    font-size: 0.95rem;
   text-align: justify;
     }

.policyContainer p:last-of-type {
   margin-bottom: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        margin: 0 auto;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
        text-align: left;
        margin-bottom: 1rem;
    }
}