* {
    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;
}
/* Browser compatibility */

	/* Animation and transitions */

.navbar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0;
    position:sticky;
          top: 0;
         z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
 padding: 0 20px;
	display: flex;
  justify-content: space-between;
    align-items: center;
   height: 80px;
}

.navbar-logo img 
 {
    height  :        64px;
    width: auto;
  filter: brightness(0) invert(1);
}  

.navbar-menu {
         display: flex; 
  list-style: none; 
    gap: 40px; 
    align-items: center;
}

/* Layout styles */

	/* FIXME: IE11 compatibility */

/* Debug styles */

.navbar-menu a {
    text-decoration     :       none;
   transition: color 0.3s ease;
   font-weight: 500;
	color: #ffffff;
  font-size: 15px;
}

/* Component styles */



.navbar-menu a:hover {
    color   : #00d4ff;
}

.navbar-menu .cta-link {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%); 
		 padding: 10px 20px; 
	  border-radius: 5px; 
		 transition  :    transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-menu .cta-link:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 212, 255, 0.3);
    color  :  #ffffff;


}

.navbar-toggle {


  display: none;
  background    :        none;
  border: none;
          cursor: pointer;
    padding  :      10px;}

.navbar-toggle img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
    .navbar-container {
        height: 70px;
    }

    .navbar-logo img {
        height: 50px;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-menu.active {
        max-height: 300px;
    }

    .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid #333;
    }

    .navbar-menu a {
        display: block;
        padding: 15px 20px;
    }

    .navbar-menu .cta-link {
        margin: 10px;
        display: inline-block;
    }
}.hero
	{
    gap: 50px;
  margin     :0 auto;
    max-width: 1200px;
   justify-content: space-between;
    display: flex;
   padding: 100px 20px;
	 align-items :      center;
}

.hero-content {
   flex: 1;
	
}



.hero-content h1 {

	          font-size:    48px;
  font-weight: 700;
	color :       #1a1a1a;
  margin-bottom: 25px;
   line-height: 1.2; 
	
     }

.hero-content p {


    font-size  :18px;
   color: #555;
  margin-bottom :30px;
    line-height   :     1.8;


}

.hero-button {
   display: inline-block; 
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%); 
   color: white; 
  padding: 14px 35px; 
    border-radius  :        5px; 
  text-decoration: none; 
  font-weight: 600; 
   transition: transform 0.3s ease, box-shadow 0.3s ease; 
  font-size:  16px;
}

.hero-button:hover {


  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.hero-image
{


    -ms-flex:      1;
   flex: 1;
	}

.hero-image img {
    width: 100%; 
	                    height: auto; 
	  border-radius: 10px; 
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }
}.services-overview{
               background: #f8f9fa;
   padding: 80px 20px;
          text-align: center;
}

.services-overview h2 {
   font-size: 42px;
    color: #1a1a1a;
  margin-bottom:60px;
    font-weight: 700;
}

.services-grid {
     display: flex;
	gap :  30px;
    max-width: 1200px;
  margin    :0 auto;
               flex-wrap: wrap;
  justify-content: center;
}

.service-card {
         flex: 1;
	  min-width: 280px;
	         background: white;
	   padding     :        40px 25px;
	  border-radius: 10px;
	  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);


}

.card-icon {
  margin-bottom: 20px;
	
} 

.card-icon img


{
    width: 50px;
  height: 50px;
  filter: brightness(0.2) sepia(1) hue-rotate(190deg) saturate(2);
}

.service-card h3 {
           font-size: 22px;
  color: #1a1a1a;
    margin-bottom: 15px;
  font-weight: 600;
	}

.service-card p {
  font-size: 15px;
    line-height: 1.7;
	color: #666;
}

.training-section {
  display: flex;
   align-items: center;
    gap: 60px;
   max-width: 1200px;
    margin: 0 auto;
    padding   :        100px 20px;
}

.training-image {
    flex: 1;
}

.training-image img {
   width    :       100%;
	   height: auto;
	    border-radius  :       10px;
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.training-content {

	   flex: 1;
     }

.training-content h2{
   font-size     :   40px;
    color: #1a1a1a;
    margin-bottom: 20px;
  font-weight: 700;
}

.training-content p {
   font-size: 16px;
    color: #555;
   margin-bottom: 30px;
   line-height: 1.8;
}

.benefits-list {
   list-style  :      none;
}

.benefits-list li {
  padding: 12px 0;
  color: #2c3e50;
   font-size: 15px;
   border-bottom: 1px solid #eee;
   position: relative;
   padding-left: 25px;
	
}

.benefits-list li:before {
  content: "✓";
    position     :    absolute;
   left: 0;
    color: #00d4ff;
	font-weight    :    bold;
  font-size: 18px;
} @media (max-width: 1024px) {
    .training-section {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }
}.coaching-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 80px 20px;
    text-align: center;


}

.coaching-section h2{
	    font-size: 42px;
   color: #1a1a1a;
    margin-bottom: 15px;
  font-weight    : 700;
	}

.section-intro {
  max-width: 600px;
               font-size: 18px;
	margin-left: auto;
    margin-bottom: 50px;
  color   :#666;
  margin-right: auto;
}

.coaching-grid {
    display: flex;
   gap   :30px;
                    max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
   flex-wrap: wrap;
}

.coaching-item{
  flex: 1;
    min-width: 300px;
    background: white;
   padding: 40px 30px;
  border-radius: 8px;
    border-left: 4px solid #00d4ff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.coaching-item h3   {

	    font-size: 24px;
	    color: #1a1a1a;
	   margin-bottom: 15px;
	   font-weight  :     600;
}



.coaching-item p {
    color: #666;
         font-size: 15px;
      margin-bottom: 20px;
    line-height: 1.7;
}

.coaching-feature {
  background :  #f0f8ff;
    padding:12px;
  border-radius: 5px;
	 color: #0099cc;
    font-weight: 600;
   font-size: 14px;
}

.conference-section {
	display: flex;

   align-items: center;

    gap: 60px;

 max-width: 1200px;

    margin    :      0 auto;

  padding: 100px 20px;
}

.conference-content {
   flex  :   1;
}

.conference-content h2 {
	font-size: 40px;
   color: #1a1a1a;
     margin-bottom :20px;
  font-weight: 700;
}

.conference-content p {
	font-size: 16px;
    color: #555;
    margin-bottom: 30px;
   line-height: 1.8;
}

.conference-highlights {
    display: flex;
 flex-direction: column;
  gap: 20px;
}

.highlight {
   background: #f8f9fa;
	padding: 20px;
  border-radius: 8px;
         border-left: 4px solid #00d4ff;
}

.highlight h4 {
      color: #1a1a1a;
	margin-bottom: 8px;
    font-size: 16px;
  font-weight     : 600;}

.highlight p {
  color: #666;

    font-size: 14px;

  margin: 0;
}

.conference-image {
    flex: 1;
}

.conference-image img {
	  width: 100%;
  height  :      auto;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}@media (max-width: 1024px) {
    .conference-section {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 60px 20px;
    }
}.consulting-section {
  display :      flex;
    gap :    60px;
    background: #f8f9fa;
   max-width: 1200px;
   margin    :      0 auto;
   align-items     : center;
   padding: 100px 20px;
}
/* Utility classes */


/* Responsive design */
.consulting-image {
	    flex: 1;
	}

/* Auto-generated CSS */

/* Temporary fix */
.consulting-image img {
    width: 100%;
   height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.consulting-content    {
    flex: 1;
}

.consulting-content h2 {
         font-size: 40px; 
	  color: #1a1a1a; 
	  margin-bottom     :       20px; 
	    font-weight: 700;
}

.consulting-content p {
   font-size :16px;
   color: #555;
               margin-bottom: 30px;
   line-height: 1.8;
}

.consulting-checklist {
   display: grid;
	gap: 15px;
}

.check-item {
    display: flex;
  align-items: center;
   padding: 12px 0;
    color: #2c3e50;
   font-size: 15px;
               position: relative;
   padding-left: 25px;
}

.check-item:before {
    position: absolute;
  font-weight: bold;
         left: 0;
  content: "✓";
   color   :  #00d4ff;
	font-size: 18px;
}
@media (max-width: 1024px) {
    .consulting-section {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }
}.workshop-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 80px 20px;
    text-align: center;
}

.workshop-section h2 {
    font-size: 42px;
   color:#1a1a1a;
    margin-bottom: 50px;
    font-weight: 700;
} 

.workshop-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
	max-width     :        1200px;
  margin  :     0 auto;
}

.workshop-item {
       background: white;
	 border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.workshop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.workshop-item img {
	  width: 100%;
    height: 250px;
    object-fit: cover;
     }

.workshop-item h3 {
   font-size: 24px;
    color: #1a1a1a;
    margin: 25px 20px 12px;
  font-weight    :600;
	
} 

.workshop-item p {

	    font-size: 15px;
   color: #666;
    margin: 0 20px 25px;
	line-height: 1.7; 


}

.cta-section {
     background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  padding   :  80px 20px;
               text-align: center;
   color: white;
}

.cta-section h2 {

	  font-size    :        42px;
    color: white;
	margin-bottom: 20px;
    font-weight: 700;
	}

.cta-section p {
    font-size: 18px;
       margin-bottom: 35px;
      line-height: 1.6;
     max-width:        600px;
                       margin-left: auto;
       margin-right     :      auto;
}

.cta-button {
	display: inline-block;
    background: white;
   color: #0099cc;
      padding: 14px 40px;
    border-radius: 5px;
  text-decoration   :        none;
  font-weight: 700;
   font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.contact
	{
          max-width: 700px;
    margin  :        0 auto;
    padding  :   80px 20px;
}

.contact h2     {
    font-size: 42px;
  color: #1a1a1a;
    text-align: center;
    margin-bottom:     15px;
    font-weight:     700;
} 

.contact > p {
   text-align: center;
	 color  :    #666;
    margin-bottom: 50px;
 font-size: 16px;
}

.contact-form {
  background: #f8f9fa;
   padding: 40px;
	border-radius    :      10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);


}

.form-group   {
    margin-bottom:  25px;
    text-align: left;

} 

.form-group label	{
  display: block;
   margin-bottom: 8px;
	color : #1a1a1a;
   font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
			width: 100%;
   padding: 12px;
     border: 1px solid #ddd;
  border-radius: 5px;
    font-size: 15px;
    font-family    :      inherit;
    transition:  border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus
	{

	   outline:   none;
   border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
	}

.submit-button {
    width: 100%;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
               color: white;
    padding: 14px;
  border  :none;
  border-radius: 5px;
  font-size     :   16px;
   font-weight: 700;
    cursor: pointer;
   transition:    transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
     transform: translateY(-2px);

  box-shadow: 0 6px 15px rgba(0, 212, 255, 0.3);

}

.submit-button:active


{
	  transform: translateY(0);
     }

.footer {
   background     :       #1a1a1a;
	color: white;
    padding: 60px 20px 20px;
}

.footer-content  
  {
   max-width:1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
      margin-bottom: 40px;
}


.footer-logo {
   align-items    :flex-start;
	display: flex;
}

.footer-logo-img {
   height: 86px; 
		width: auto; 
	  filter: brightness(0) invert(1);
}

.footer-info h3 {
	    font-size    :    20px;
    margin-bottom   :    15px;
   font-weight: 700;}

.address {
	font-size: 14px;
    color: #aaa;
	 margin-bottom: 12px;
  line-height: 1.6;
}

.phone {
   font-size     :        14px;

      color: #aaa;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom    :       15px;
        font-weight: 600;
}

.footer-links ul {
     list-style :        none;
	}

.footer-links ul li  {
   margin-bottom  :10px;

}

.footer-links ul li a {
               color     :  #aaa;
  text-decoration: none;
               font-size: 14px;
   transition: color 0.3s ease;
}

.footer-links ul li a:hover {


   color: #00d4ff;


}

.footer-bottom {
    color: #777;
   text-align: center;
   border-top     :1px solid #333;
 margin:     0 auto;
  font-size: 13px;
   max-width: 1200px;
    padding-top: 30px;
}@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }

    .coaching-grid {
        flex-direction: column;
    }

    .workshop-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.services-hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 80px 20px;
          text-align: center;
}

.services-hero-content h1{
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-hero-content p {
	  color  :       #555;
  max-width: 700px;
  margin  :      0 auto;
	font-size: 18px;
   line-height: 1.8; 
	


}

.service-detail-one,
.service-detail-three,
.service-detail-five    {
  display: flex;
  align-items :center;
  gap   :        60px;
  max-width: 1200px;
    margin: 0 auto;
  padding: 100px 20px;
}

.service-detail-two,
.service-detail-four {
  display: flex;
   align-items: center;
    gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
   padding: 100px 20px;
    flex-direction: row-reverse;
}

.detail-image,
.detail-image-alt {

   flex: 1;


}

.detail-image img,
.detail-image-alt img {
   width: 100%; 
	          height: auto; 
	  border-radius: 10px; 
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-content,
.detail-content-alt {

  flex: 1;

}  

.detail-content h2,
.detail-content-alt h2 {
    font-size: 40px;
   color     :  #1a1a1a;
	 margin-bottom: 20px;
	 font-weight: 700; 

}

.detail-content p,
.detail-content-alt p {
  font-size: 16px;
   color     :      #555;
                    margin-bottom    :30px;
  line-height: 1.8;
}

.service-benefits {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
   margin-top  :     30px;
	
}

.benefit-item {
   background: #f8f9fa;
   padding    :        20px;
    border-radius   : 8px;
   border-left     : 4px solid #00d4ff;
}

.benefit-item h4 {
   color: #1a1a1a;
  margin-bottom: 8px;
   font-size:      16px;
   font-weight: 600;
}

.benefit-item p     {
  color: #666;
  font-size: 13px;
  margin   :    0;
}

.services-checklist {
    list-style: none;
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap  :15px;
}



.services-checklist li {
      padding: 12px 0;
   padding-left: 25px;
      color: #2c3e50;
    font-size:15px;
    position: relative;


}


.services-checklist li:before {
   color: #00d4ff;
  left: 0;
    position: absolute;
   font-size: 18px;
  content: "✓";
  font-weight: bold;
}

.webinar-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 20px;
   margin-top: 30px;
}

.webinar-item 
 {
  background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
   border-top: 3px solid #00d4ff;
}

.webinar-item h4{
   color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 16px;
   font-weight  :  600;
}

.webinar-item p {
    color    :  #666;
	   font-size: 14px;
	    margin-bottom: 12px;
}

.frequency {
	padding: 4px 12px;
     border-radius     :  20px;
  font-weight: 600;
    color: white;
    background: #00d4ff;
   font-size: 12px;
   display: inline-block;
}

.workshop-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
    margin-top: 30px;
}

.workshop-type {
   background: #f9f9f9;
   padding: 25px;
 border-radius: 8px;
    border: 1px solid #eee;
}

.workshop-type h4 {
 color: #1a1a1a;
   margin-bottom: 8px;
	font-size: 16px;
	font-weight: 600;
}

.workshop-type > p:nth-of-type(1) {
	 color: #00d4ff;
  font-weight: 600;
   font-size: 14px;
    margin-bottom: 10px;
	
	} 

.workshop-desc {
       color  :        #666;
    font-size: 13px;
  margin  :    0;
}

.conference-details
{


    display: flex;
    flex-direction: column;
                    gap     : 20px;
	 margin-top   :      30px;

}

.conf-detail {
  background: #f5f7fa;
      padding: 20px;
      border-radius: 8px;
      border-left: 4px solid #00d4ff; 

}


.conf-detail h4 {
		 color: #1a1a1a;
   margin-bottom: 8px;
    font-size: 16px;
  font-weight: 600;
}

.conf-detail p {
       color: #666;
    font-size   :       14px;
   margin: 0;
}

.pricing-overview 
 {
    background: #f8f9fa;
		 padding: 80px 20px;
   text-align: center;
}

.pricing-overview h2 {
   font-size: 42px;
    color: #1a1a1a;
   margin-bottom: 15px;
  font-weight     :  700;
}

.pricing-intro  
  {
  font-size: 16px;
  color: #666;
    margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
    margin-right: auto;
}  

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
   max-width: 1200px;
       margin    :        0 auto;
	
}


.pricing-card {
    background: white;
               padding: 40px 30px;
    border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
          border: 2px solid #00d4ff;
}

.featured-badge {
  position: absolute;
   top: -15px;
   left :        50%;
  transform: translateX(-50%);
  background: #00d4ff;
   color: white;
			padding: 6px 16px;
  border-radius     :   20px;
   font-size: 12px;
    font-weight: 700;
	
}

.pricing-card h3
	{

		font-size    :  22px;
   color: #1a1a1a;
  margin-bottom: 15px;
   font-weight: 600;


}

.price-tag {
  font-size: 32px;
   color: #00d4ff;
  font-weight: 700;
   margin-bottom: 25px;
}

.price-features {
	list-style: none;
    text-align :    left;
}

.price-features li

{

   position: relative;
   padding-left: 20px;
   font-size: 14px;
    color: #666;
        padding: 10px 0;
	border-bottom: 1px solid #eee;
     }

.price-features li:last-child {
    border-bottom: none; 

}

.price-features li:before {
  content: "✓";
  position: absolute;
    left     :      0;
    color: #00d4ff;
  font-weight    :        bold;
}

.why-choose {
   padding: 80px 20px;
  max-width: 1200px;
   margin: 0 auto;
  text-align: center;
}

.why-choose h2 {
  color: #1a1a1a;
   font-size: 42px;
  font-weight:        700;
	margin-bottom: 60px;
}

.reasons-grid {
       display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap   :     30px;
}

.reason-card {
    background: #f8f9fa;
   padding  :   30px;
   border-radius: 10px;
               text-align: left;
               transition  :    transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.reason-card h3 {
    color: #1a1a1a;
   margin-bottom: 12px;
    font-weight: 600;
	font-size: 20px;
}

.reason-card p {
  color   :  #666;
   font-size: 14px;
    line-height: 1.7;
}

.cta-section-services {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
	   padding  :      80px 20px;
	  text-align: center;
	  color: white;
}

.cta-section-services h2 {
                    margin-bottom: 20px;
  font-weight: 700;
	font-size: 42px;
  color: white;
}

.cta-section-services p {
   margin-left: auto;
  max-width: 600px;
	margin-right: auto;
  font-size: 18px;
        margin-bottom: 35px;
         line-height: 1.6;

}

.cta-button-large {
     display:        inline-block;
  background: white;
    color   :#0099cc;
  padding  :     14px 40px;
          border-radius: 5px;
      text-decoration: none;
  font-weight: 700;
   font-size: 16px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover


{
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);


}

.thank-you-hero {


  min-height: 100vh;
       display: flex;
  align-items   :      center;
    justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
   padding: 40px 20px;

}

.thank-you-container  
  {
   background: white;
  padding: 60px 40px;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 700px;
   width: 100%;
   text-align: center;
	}

.thank-you-icon {

  margin-bottom: 30px;}

.thank-you-icon img {
       width :        80px; 
	   height :    80px; 
	  filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.2));
}

.thank-you-container h1 {
	font-size   :48px;
  color: #1a1a1a;
  margin-bottom: 15px;
         font-weight: 700;
}

.thank-you-message{
      font-size: 20px;
   color: #00d4ff;
   margin-bottom: 10px;
   font-weight    :600;
}

.thank-you-subtext {
    font-size: 16px;
               color: #666;
   margin-bottom  : 40px;
    line-height :   1.8;
}

.what-happens-next {
   background: #f8f9fa;
    padding: 40px;
   border-radius: 10px;
  margin: 40px 0;
    text-align: left;
}

.what-happens-next h2 {
	font-size: 24px;
	text-align: center;
    margin-bottom: 30px;
	 color: #1a1a1a;
  font-weight: 700;
     }

.next-steps {
   display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.step {

    text-align: center;
     }

.step-number {

    width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
   color: white;
    border-radius: 50%;
  display: flex;
  align-items     :       center;
   justify-content: center;
	 font-size: 24px;
   font-weight: 700;
    margin     :    0 auto 12px;


}

.step h3 {
    font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 8px;
    font-weight: 600;
}

.step p {
  font-size: 13px; 
    color: #666; 
   line-height: 1.5;
	} 

.thank-you-actions {
   display: flex;

   gap: 20px;

    flex-wrap :    wrap;

   justify-content: center;

  margin:        40px 0; 

}

.action-button {
  display: inline-block;
   text-decoration: none;
  padding: 12px 30px;
	transition:  transform 0.3s ease, box-shadow 0.3s ease;
   border-radius: 5px;
  font-weight: 600;
    font-size: 15px;
}

.action-button.primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color     :  white;
}

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 212, 255, 0.3);
}

.action-button.secondary {
      background: white;
         color :     #0099cc;
    border     :  2px solid #0099cc;

}

.action-button.secondary:hover {
    background: #f0f8ff;


}

.follow-up-note {
	background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    margin-top: 30px;
   font-size: 14px;
  color:    #856404;
}

.faq-section {
  background: #f8f9fa;
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-section h2


{
  font-size: 42px;
     color   : #1a1a1a;
   margin-bottom: 50px;
   font-weight: 700;
  text-align     :     center;
}

.faq-items {
  display     :  grid;
  gap: 20px;
}

.faq-item {
  background: white;
	padding: 25px;
	 border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    color: #1a1a1a;
   margin-bottom: 12px;
	font-weight: 600;
}

.faq-item p {
	color: #666;
   font-size: 14px;
   line-height: 1.7;
   margin    :        0;
}

.testimonials-section {

   padding: 80px 20px;
    max-width: 1200px;
	margin   :     0 auto;
    text-align: center;


}

.testimonials-section h2 {
  font-size: 42px;
   color   :     #1a1a1a;
   margin-bottom: 60px;
	font-weight: 700;
}

.testimonials-grid {
  display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
}

.testimonial-card  
  {
    background: #f8f9fa;
   padding   :   30px;
   border-radius: 10px;
    border-left: 4px solid #00d4ff;
  text-align: left;
}

.testimonial-text {
          font-size: 15px;
  color: #555;
    margin-bottom: 15px;
    line-height  :        1.8;
  font-style: italic;
}

.testimonial-author {
  color   :       #1a1a1a;
    font-weight: 600;
   font-size     : 14px;
   margin: 0;
}@media (max-width: 1024px) {
    .service-detail-one,
    .service-detail-two,
    .service-detail-three,
    .service-detail-four,
    .service-detail-five {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .service-detail-two {
        flex-direction: column;
    }

    .detail-content h2,
    .detail-content-alt h2 {
        font-size: 32px;
    }

    .services-hero-content h1 {
        font-size: 36px;
    }

    .why-choose h2,
    .pricing-overview h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .service-benefits,
    .webinar-schedule,
    .workshop-types,
    .pricing-grid,
    .reasons-grid,
    .testimonials-grid,
    .next-steps {
        grid-template-columns: 1fr;
    }

    .thank-you-container {
        padding: 40px 25px;
    }

    .thank-you-container h1 {
        font-size: 36px;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }

    .services-checklist {
        grid-template-columns: 1fr;
    }
}.policySection {
  padding: 80px 2rem;
                    background: #f8f9fa;
  min-height: calc(100vh - 300px);
}

.policyContainer {
  max-width: 900px;
       margin   :    0 auto;
     text-align: left;
       background: white;
      padding: 50px;
      border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
  font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 40px;
  font-weight: 700;
   border-bottom: 3px solid #00d4ff;
    padding-bottom: 20px;
}

.policyContainer h2 {
   font-size: 28px;
   color: #2c3e50;
  margin-top: 40px;
   margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}  

.policyContainer p {
 color: #555;
   line-height: 1.8;
   font-size: 16px;
	margin-bottom: 20px;
}

.policyContainer p:last-of-type {
    margin-bottom :0;
}

.policyContainer h2:first-of-type {
       margin-top: 0;
     }

.policyContainer {
   line-height: 1.8;
    word-spacing: 0.1em;
}

.policyContainer ul,
.policyContainer ol {
  margin-bottom: 20px;
         margin-left: 20px; 

}

.policyContainer li {
     font-size: 16px;
   margin-bottom: 10px;
  color: #555;
	 line-height: 1.8;


}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 30px 20px;
    }

    .policyContainer h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 20px 15px;
        border-radius: 5px;
    }

    .policyContainer h1 {
        font-size: 28px;
    }

    .policyContainer h2 {
        font-size: 20px;
    }

    .policyContainer p {
        font-size: 14px;
    }
}