* {
  margin: 0;
 padding :      0;
    box-sizing: border-box;
}

html {
  scroll-behavior     :smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.navbar  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding   :      0;
   position : sticky;
   top: 0;
       z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-container {
   max-width: 1200px;
  margin: 0 auto;
  display: flex;
   justify-content: space-between;
    align-items: center;
   padding: 1rem 2rem;
}

.nav-brand {

	    flex: 0 0 auto;
    -ms-flex: 0 0 auto;
     }

.logo-img {
   height: 40px;
	  width: auto;
	  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
    list-style  :        none;
       gap: 2rem;
}



.nav-link {
  color  :      white;
   text-decoration: none;
  font-weight: 500;
    transition: all 0.3s ease;
	 padding: 0.5rem 0;
}

.nav-link:hover {
   color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.burger-menu {
  display: none;
   background:        none;
      border: none;
  cursor: pointer;
   flex-direction: column;
   gap: 0.5rem;
  padding: 0.5rem;
}

.burger-line {
   width: 25px;
   height: 3px;
   background-color   :     white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2)    {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items     :     center;
  max-width: 1200px;
  margin: 0 auto;
   padding: 4rem 2rem;
}

.hero-content h1 {

	  font-size: 3rem;
	    font-weight: 700;
	    color: #667eea;
	  margin-bottom: 1rem;
	    line-height: 1.2;
	}

.hero-subtitle {
  font-size:      1.2rem;
  color: #555;
		margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 0.8rem 2rem;
   border-radius: 8px;
   text-decoration: none;
    font-weight:        600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {

  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);


     }



.hero-image img {

               width: 100%;
  height: auto;
         border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   transition: transform 0.3s ease;

}


.hero-image img:hover {
  transform: scale(1.02);
}

.services-preview {
   background: white;
   padding: 4rem 2rem;
  max-width     :1200px;
    margin: 2rem auto;
    border-radius: 12px;
}

.services-preview h2 {
	   font-size: 2.5rem;
  color: #667eea;
	 margin-bottom  :     3rem;
   text-align: center;

}

.services-grid {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	   gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 1.5rem;
   border-radius: 10px;
   transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.service-card img {
  width: 100%;
    height: 200px;
	object-fit: cover;
    border-radius: 8px;
  margin-bottom     :       1rem;
}

.service-card h3 {
         font-size: 1.3rem;
	  color     :    #667eea;
	   margin-bottom: 0.8rem;
}

.service-card p {
  color: #555;
    font-size: 0.95rem;
  line-height: 1.6;
}

.webinar-section {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	 max-width :       1200px;
    margin     :       2rem auto;
	 border-radius: 12px;
}

.webinar-section h2   {
  font-size     :2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
  text-align:        center;
}

.section-description {
 text-align: center;
     color: #666;
      margin-bottom: 2rem;
       font-size: 1rem;
}

.webinar-container {
   display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.webinar-item  {
     background: white;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   border-left: 4px solid #667eea;
  transition   : all 0.3s ease;
	}

.webinar-item:hover
	{
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.webinar-item h3 {

   color: #667eea;
   font-size: 1.2rem;
     margin-bottom     :    0.8rem;


}  

.webinar-item p {
   color  : #666;
    margin-bottom: 1rem;
}

.webinar-date {
    display: block;
	color: #764ba2;
  font-weight  :       600;
  font-size:      0.9rem;
}

.conference-section {


  padding    : 4rem 2rem;
   background: white;
   max-width: 1200px;
    margin: 2rem auto;
  border-radius: 12px;
     }

.conference-section h2 {
	text-align   :   center;
  margin-bottom: 1rem;
  color: #667eea;
 font-size: 2.5rem;
}

.conference-highlight   {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	padding: 2.5rem;
   border-radius    :     10px;
   margin-top: 2rem;
                    text-align: center;
}

.conference-highlight h3 {
    font-size: 2rem;
	 margin-bottom   :    1rem;
}

.conference-highlight p {
   font-size: 1rem;
  margin-bottom: 0.8rem;
    line-height: 1.8;
} 

.conference-info


{
	font-size: 1.1rem;
   font-weight: 600;
   margin: 1.5rem 0;
}

.conference-cta {

	      display   :       inline-block;
    background    :       white;
  color: #667eea;
    padding: 0.8rem 2rem;
    border-radius     :       8px;
    text-decoration: none;
	font-weight: 600;
  transition: all 0.3s ease;
      margin-top: 1rem;

}

.conference-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.coaching-section


{
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  max-width     :       1200px;
  margin    :2rem auto;
   border-radius   : 12px;


}

.coaching-section h2 
 {
   font-size: 2.5rem;
  color  :    #667eea;
  margin-bottom:      1rem;
	text-align: center;
}

.coaching-benefits {
	display    : grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	    gap: 2rem;

	   margin-top: 2rem;
}

.benefit-item {
     background   :white;
			padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
  transform: translateY(-5px);
}

.benefit-item h4 {
	color: #667eea;
   font-size: 1.2rem;
	margin-bottom   :     0.8rem;
}

.benefit-item p {
   color     :   #666;
    font-size: 0.95rem;
}

.cta-section	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding :3rem 2rem;
  text-align: center;
  border-radius: 12px;
    max-width: 1200px;
  margin: 2rem auto; 

}

.cta-section h2 {

	   font-size: 2.5rem;
   margin-bottom:     1rem;


}

.cta-section p		{
  font-size: 1.1rem;
  margin-bottom: 2rem;
    line-height :  1.8;
}

.cta-large {

     padding: 1rem 2.5rem; 
	  font-size: 1.1rem; 
	    background :   white; 
	  color: #667eea;


}

.contact-section {
    padding: 4rem 2rem;
    background: white;
    max-width: 1200px;
  margin: 2rem auto;
	 border-radius: 12px;
}

.contact-section h2 {
    font-size  :  2.5rem; 
   color: #667eea; 
    margin-bottom: 1rem; 
  text-align: center;
}

.contact-container {
   display: grid;
	 grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
   margin-top: 2rem;
}

.contact-info {
    display: flex;
   flex-direction: column;
               gap: 2rem;
}

.info-block h4 {
   color: #667eea;
          font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-block p {
  line-height  : 1.8;
  color: #666;
}

.contact-form {
	 display: flex;
                    flex-direction: column;
    gap: 1.5rem;
}

.form-group  
  {
 display: flex;
  flex-direction     :       column;
}

.form-group input,
.form-group select,
.form-group textarea		{
     padding: 0.8rem;
   border     :       2px solid #e0e0e0;
  border-radius    :        8px;
   font-size: 1rem;
    font-family: inherit;
   transition: all 0.3s ease;
	}

.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-btn {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :     white;
    padding: 0.8rem 2rem;
   border: none;
  border-radius: 8px;
   font-size: 1rem;
   font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);

}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:active  {
  transform: translateY(0); 

}

.footer {
               background: #2c3e50;
    color     :    white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;


}

.footer-container {
    max-width :   1200px;
          margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h5 
 {
	  color: #667eea;
   font-size: 1.1rem;
  margin-bottom: 1rem;
	}

.footer-logo{
  height: 50px;
   width   :      auto;
  filter: brightness(0) invert(1);
    margin-bottom  :      1rem;
}

.footer-links {
    list-style: none;
    display  :        flex;
	flex-direction: column;
   gap: 0.8rem;

}

.footer-links a
	{
  color: #bbb;
    text-decoration: none;
          transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #667eea;
}

.footer-text {
    color: #bbb;
               font-size: 0.95rem;
   line-height: 1.8;
}

.footer-bottom
{
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
  color: #999;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-preview,
    .webinar-section,
    .conference-section,
    .coaching-section,
    .cta-section,
    .contact-section {
        margin: 1rem;
        padding: 2rem 1rem;
    }

    .services-preview h2,
    .webinar-section h2,
    .conference-section h2,
    .coaching-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #667eea;
        gap: 0;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
    }

    .burger-menu {
        display: flex;
    }

    .service-card img,
    .hero-image img {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .webinar-container {
        grid-template-columns: 1fr;
    }

    .coaching-benefits {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
}.services-hero  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 4rem 2rem;
   text-align: center;
    border-radius: 12px;
    max-width: 1200px;
  margin: 2rem auto;


}

.services-hero h1 {
    font-size: 2.8rem;
   margin-bottom: 1rem;
    font-weight   : 700; 
	
}

.services-subtitle {
  font-size: 1.2rem;
     line-height: 1.8;
}

.services-detailed {
  max-width: 1200px;
  margin: 2rem auto;
   padding: 0 2rem;
}

.service-full-card {
	  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
      align-items   :       center;
  margin-bottom: 4rem;
    background: white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     }



.service-full-card.alternate {
  grid-template-columns: 1fr 1fr;
}

.service-full-card.alternate .service-visual {
  order: 2;

}

.service-full-card.alternate .service-content

{
    order: 1;
	
}

.service-visual img {
    width: 100%;
	height     :  auto;
   border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-visual img:hover {
  transform: scale(1.02);
}

.service-content h2 {
  font-size: 1.8rem;
	    color: #667eea;
	  margin-bottom: 1rem;
}

.service-content > p {
    color: #666;
	margin-bottom  : 1.5rem;
   font-size: 1rem;
		 line-height: 1.8;
}

.service-content h3 {
   color: #764ba2;
    font-size: 1.2rem;
 margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.service-list {
    list-style: none;
   margin-bottom: 2rem;
}

.service-list li {
   color: #555;
  padding     : 0.6rem 0 0.6rem 1.8rem;
       position: relative;
    line-height: 1.6;


}

.service-list li:before {
  left: 0;
  content: "▸";
   font-weight     :       bold;
  position: absolute;
   color  :   #667eea;
}

.service-details {
	display   :      grid;
  grid-template-columns: repeat(3, 1fr);
       gap: 1rem;
   margin-top :   2rem;
    padding-top: 2rem;
    border-top     :2px solid #e0e0e0;
}

.detail-box {
      display    :flex;
   flex-direction:        column;
    gap: 0.3rem; 
	}

.detail-label {
  color: #764ba2;
   font-weight: 600;
    font-size: 0.85rem;


}

.detail-value {
    color: #667eea;
    font-weight: 700;
  font-size: 1rem;
}

.webinars-offerings {

	   background: white;
               padding: 4rem 2rem;
     max-width: 1200px;
 margin:     2rem auto;
      border-radius: 12px;



}

.webinars-offerings h2 {
   font-size : 2.5rem;
  color: #667eea;
  margin-bottom: 3rem;
   text-align  :   center;
}

.webinars-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.webinar-offering-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                    padding: 2rem;
	 border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	 transition: all 0.3s ease;
  border: 2px solid transparent;
}

.webinar-offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.webinar-offering-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border :       2px solid #667eea;
  transform: scale(1.05); 
	
}

.webinar-offering-card.featured h3 {
   color:white;
}

.webinar-offering-card.featured p {
    color: #f0f0f0;
}

.webinar-offering-card.featured .webinar-list {
  color: #f0f0f0;
}

.webinar-offering-card.featured .price-tag {
	background: white;
  color   :       #667eea;
}

.webinar-offering-card h3 {
	  color: #667eea;
  font-size: 1.3rem;
    margin-bottom: 1rem;


}

.webinar-offering-card p {
  color: #666;
    margin-bottom: 1.5rem;
   line-height: 1.6;
}

.webinar-list {
  list-style: none;
   margin-bottom: 1.5rem;
  color    :        #555;



}

.webinar-list li {
      font-size: 0.95rem;
    padding: 0.5rem 0 0.5rem 1.5rem;
  position    :       relative;
}

.webinar-list li:before {
  content: "✓";
   position: absolute;
  left: 0;
  color: #667eea;
    font-weight: bold;
}

.webinar-offering-card.featured .webinar-list li:before		{


   color: white;
     }

.price-tag  {

  display: block;
 background     :       #667eea;
   color: white;
    padding: 0.8rem 1rem;
      border-radius: 6px;
    text-align: center;
  font-weight: 600;
	font-size: 1.1rem;

}

.coaching-offerings {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
   padding: 4rem 2rem;
   max-width  :      1200px;
  margin: 2rem auto;
  border-radius     : 12px;
}

.coaching-offerings h2 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 3rem;
    text-align: center;
}

.coaching-options {
    display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.coaching-card {
  background: white; 
	 padding: 2rem; 
       border-radius: 10px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    transition: all 0.3s ease; 
    position: relative;
}

.coaching-card:hover  {

	  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);}

.coaching-card.highlighted

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color    :      white;
  transform: scale(1.05);

}

.popular-badge {
    position: absolute;
    top: -15px;
   left :       20px;
  background    :      #f39c12;
  color:       white;
         padding: 0.5rem 1rem;
   border-radius: 20px;
    font-size: 0.85rem;
   font-weight: 600;
}

.coaching-card h3 {
    color  :       #667eea;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.coaching-card.highlighted h3 {
  color: white;
}

.coaching-card > p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;}


.coaching-card.highlighted > p {


     color: #f0f0f0;
     }

.coaching-includes h4 {
   color: #667eea;
   font-size: 1rem;
   margin-bottom : 1rem;
}

.coaching-card.highlighted .coaching-includes h4 {
	   color: white;
     }

.coaching-includes ul {
    list-style: none;
    margin-bottom   :       1.5rem;
}

.coaching-includes li {
  color: #555;
   padding: 0.6rem 0 0.6rem 1.8rem;
   position: relative;
    font-size: 0.95rem;
}

.coaching-card.highlighted .coaching-includes li {
      color: #f0f0f0;
}

.coaching-includes li:before {
	  content: "→";
	position: absolute;
   left: 0;
          color: #667eea;
          font-weight: bold;}

.coaching-card.highlighted .coaching-includes li:before    {


	 color: white;

} 

.coaching-price {

  font-size  :   1.8rem;
  font-weight: 700;
				 color: #667eea;
   text-align:    center;
   margin-top: 1.5rem;
   padding-top: 1.5rem;
   border-top: 2px solid #e0e0e0;
}

.coaching-card.highlighted .coaching-price
{
			color: white;

	  border-top-color: rgba(255, 255, 255, 0.2);
}

.comparison-table	{
  max-width: 1200px;
    background: white;
    margin: 2rem auto;
   padding: 4rem 2rem;
  border-radius: 12px;
}

.comparison-table h2 {
  font-size: 2.5rem;
	color: #667eea;
        margin-bottom: 2rem;
   text-align: center;
     }


.table-wrapper {
  overflow-x: auto;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}  

.services-comparison {
   width: 100%;
                    border-collapse: collapse;
}

.services-comparison thead{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
}

.services-comparison th {

	padding: 1.2rem;

    text-align: left;

  border-bottom  :2px solid #667eea;

  font-weight: 600;

}

.services-comparison td {
  padding: 1.2rem;
    border-bottom: 1px solid #e0e0e0;
         color: #555;
}

.services-comparison tbody tr:hover {
	    background: #f8f9fa;


     }

.services-comparison tbody tr.alternate-row {
   background: #f5f7fa;
}

.services-comparison tbody tr.alternate-row:hover {
   background: #e8ecf1;
}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 3rem 2rem;
   text-align: center;
  border-radius: 12px;
   max-width: 1200px;
   margin: 2rem auto;
}

.cta-services h2 {
   font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-services p {
	font-size: 1.1rem;
    margin-bottom: 2rem;
   line-height: 1.8;
}

.thankyou-section     {
	   padding    : 4rem 2rem;
       max-width: 1200px;
       margin: 2rem auto;
    text-align: center;
	}

.thankyou-container {
	background: white;
      padding: 3rem;
  border-radius   : 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);


}


.success-animation {
  margin-bottom: 2rem;
}

.success-checkmark {

   width: 80px; 
			 height: 80px; 
	                    margin: 0 auto; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
		border-radius: 50%; 
		display:flex; 
	   align-items: center; 
	  justify-content: center; 
	   animation: scaleIn 0.6s ease-out;

}

.check-icon {
        width: 40px;
   height: 40px;
      position: relative;
   display: inline-block;
}

.check-icon:before {

  content: "✓";
  position: absolute;
    color :white;
   font-size   :  3rem;
        font-weight: bold;
    line-height: 1;
	 animation: slideIn 0.6s ease-out 0.3s both;


}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.thankyou-section h1 {
	font-size: 2.5rem;
    color    :      #667eea;
    margin-bottom :   1rem;
}

.thankyou-message

{
    font-size:    1.3rem;
    color: #764ba2;
   margin-bottom: 2rem;
   font-weight: 500;
}

.thankyou-details {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 2rem;
    border-radius :   10px;
  margin-bottom: 2rem;
    text-align: left;
}

.thankyou-details p {
    color: #555;

    margin-bottom:       1rem;

  line-height: 1.8;
}

.thankyou-details strong {
         color: #667eea;
}

.next-steps {


   margin: 3rem 0;
  text-align: left;
}

.next-steps h2 {
   font-size: 1.8rem;
	    color: #667eea;
	    text-align: center;
	    margin-bottom: 2rem;}

.steps-grid		{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem; 
	
}

.step-item {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding   :     1.5rem;
   border-radius: 10px;
    border-left  :4px solid #667eea;
}

.step-number {

	  display: inline-block;
  background: #667eea;
  color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
 display     :   flex;
  align-items: center;
   justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
   color: #667eea;
  font-size    :    1.1rem;
    margin-bottom: 0.5rem;
     }

.step-item p {
  line-height: 1.6;
  font-size: 0.95rem;
   color :   #666;
}

.action-buttons {
     display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
    flex-wrap: wrap;}

.cta-button-secondary {

	   display:    inline-block;
   background   :   white;
	color: #667eea;
   border: 2px solid #667eea;
    padding: 0.8rem 2rem;
   border-radius: 8px;
	 text-decoration: none;
   font-weight: 600;
  transition    :  all 0.3s ease;}

.cta-button-secondary:hover {
                    background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.contact-info-thankyou {
    background: #f5f7fa;
     padding: 1.5rem;
  border-radius   :    10px;
    margin-top :  2rem;
   border-left: 4px solid #667eea;
}

.contact-info-thankyou p {


   color: #555;
   margin: 0.5rem 0;


}

.contact-info-thankyou strong {
  color :       #667eea;
}@media (max-width: 768px) {
    .service-full-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-full-card.alternate .service-visual,
    .service-full-card.alternate .service-content {
        order: auto;
    }

    .service-details {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .services-hero h1 {
        font-size: 1.8rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .next-steps h2 {
        font-size: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .webinar-offering-card.featured {
        transform: scale(1);
    }

    .coaching-card.highlighted {
        transform: scale(1);
    }

    .services-comparison th,
    .services-comparison td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-full-card {
        padding: 1rem;
    }

    .service-content h2 {
        font-size: 1.3rem;
    }

    .services-hero {
        padding: 2rem 1rem;
    }

    .comparison-table {
        padding: 2rem 1rem;
    }

    .comparison-table h2 {
        font-size: 1.5rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
    padding: 80px 2rem;
   background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
   max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background: white;
					padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	
}

.policyContainer h1 {
   font-size: 2.8rem;
   color: #667eea;
  margin-bottom: 2rem;
  font-weight: 700;
    text-align: center;
}

.policyContainer h2 {
    font-size     :    1.8rem;
    color :       #667eea;
   margin-top: 2.5rem;
    margin-bottom: 1.2rem;
 font-weight: 600;
	border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.8rem;
}

.policyContainer h3 
 {
  font-size: 1.3rem;
      color: #764ba2;
  margin-top    :        1.5rem;
   margin-bottom: 0.8rem;
   font-weight: 600;
}

.policyContainer p {


    color: #555;
  margin-bottom: 1.2rem;
      line-height: 1.8;
	font-size: 1rem;


}

.policyContainer strong {
    color  :        #667eea;
   font-weight: 600;
}

.policyContainer ul {
    margin-bottom: 1.5rem;
  margin-left   :    1rem;
  list-style:none;
}
	/* Third-party styles */


.policyContainer ul li {
    color: #555;
  margin-bottom: 0.8rem;
	padding-left: 1.5rem;
  position: relative;
   line-height    :1.7;
}

/* FIXME: IE11 compatibility */


	/* Minified version */

.policyContainer ul li:before {
  content: "▸";
   position: absolute;
   left: 0;
    color: #667eea;
   font-weight    : bold; 
	
}

/* Browser compatibility */
.policyContainer > p:last-of-type {
   font-size:     0.95rem;
	color: #999;
	 border-top    :        2px solid #e0e0e0;
   margin-top: 3rem;
        text-align: center;
    padding-top: 2rem;
}
@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.3rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        margin: 0;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .policyContainer ul li {
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .policyContainer ul li {
        padding-left: 1rem;
        font-size: 0.9rem;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}