*

{
   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; 

}

.masthead-nav {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 1rem 0;
  position: sticky;
   top   :     0;
 z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-container {
   margin: 0 auto;
   padding: 0 1.5rem;
    max-width: 1200px;
   display:      flex;
  align-items: center;
   justify-content: space-between;
     }

.logo-section {

	    align-items: center;
   display:  flex;
}

.logo-img {
    height: 50px;
	 width : auto;
  filter: brightness(0) invert(1);
}

.burger-toggle {
       display :    none;
  background: none;
    border: none;
   cursor    :       pointer;
   flex-direction   :     column;
  gap: 6px;
   padding: 8px; 



}

.burger-line
	{
    width: 25px;
	    height: 2.5px;
	 background-color: #ffffff;
	  border-radius: 2px;
	    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
  list-style: none;
   gap: 2rem;
}

.nav-link-item	{
  text-decoration: none;
            transition: color 0.3s ease;
     font-size: 1rem;
       font-weight: 500;
       color: #ffffff;
       padding: 0.5rem 0;
}

.nav-link-item:hover {
       color: #8e44ad;

}

.hero-block {
   max-width: 1200px;
   margin: 0 auto;
        padding     :4rem 1.5rem;
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items   :  center;


}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom  : 1.5rem;
		line-height: 1.2;
  color: #1a1a1a;
}



.hero-subtitle {


                    font-size: 1.2rem;

  color: #555;

    margin-bottom: 2rem;

	line-height: 1.7;
	


}  

.cta-button-primary   {
    display: inline-block;
  background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #ffffff;
    padding: 1rem 2rem;
  text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
  font-size: 1.1rem;
   transition: all 0.3s ease;
   border: none;
   cursor     :    pointer;
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(142, 68, 173, 0.4);
}

.hero-image {
   width: 100%;
	height: auto;
}

.hero-image img {
  width: 100%;
	height: auto;
		border-radius  :  12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-section {
    background: #f8f9fa;
       padding: 4rem 1.5rem;
}

.about-wrapper {
    max-width: 1200px;
	margin: 0 auto;
	display: grid;
	 grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
}

.about-section h2

{
   font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-section p	{

	       font-size: 1rem;
               line-height : 1.8;
      margin-bottom: 1rem;
    color: #444;


}

.about-image img {
   width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.services-preview {
	 max-width  : 1200px;
  margin: 0 auto;
   padding: 4rem 1.5rem;
}

.services-preview h2 {
    font-size     :      2.2rem;
  margin-bottom: 3rem;
       text-align: center;
                    color : #1a1a1a; 
	
}

.services-grid {

   display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
     }

.service-card {
    background: #ffffff;
  border  :     1px solid #e0e0e0;
	border-radius: 10px;
  padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #8e44ad;
}

.service-icon {
   width: 60px;
   height: 60px;
    margin: 0 auto 1.5rem;
   display: flex;
	align-items: center;
   justify-content    :       center;
}



.service-icon img {
       width: 100%;
    height: 100%;
  stroke: #8e44ad;
	 fill: none;


	}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
   color: #1a1a1a;
}

.service-card p {
	   font-size: 0.95rem;
   color: #666;
          line-height: 1.6;
}


.benefits-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding  :      4rem 1.5rem;
}

.benefits-section h2		{
   color   :       #1a1a1a;
    font-size: 2.2rem;
  text-align: center;
  margin-bottom     :  3rem;
}

.benefits-container     {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap  :    2.5rem;
}

.benefit-item {
  background:    #ffffff;
	 padding    :       2rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom     :        1.5rem;
}

.benefit-icon img {
   width: 100%;
  height     :      100%;
}



.benefit-item h3 {
    font-size: 1.3rem;
  margin-bottom: 1rem;
   color: #1a1a1a;
}

.benefit-item p


{
  font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.coaching-offer {
  background: linear-gradient(135deg, #8e44ad 0%, #3d1a5c 100%);
     color  :    #ffffff;
  padding: 3rem 1.5rem;
   text-align: center;
}

.offer-content {
    max-width: 700px;
    margin: 0 auto;
}

.coaching-offer h2 {
  font-size: 2rem;
   margin-bottom    :     1.5rem;
}

.coaching-offer p {
          font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8; 
	
}

.coaching-offer .cta-button-primary {
     background: #ffffff;
   color:     #8e44ad;}

.coaching-offer .cta-button-primary:hover {
  background: #f0f0f0;
}

.contact-section {
  max-width: 900px;
  margin :    0 auto;
  padding : 4rem 1.5rem;
}

.contact-section h2 {
  text-align: center;
    color: #1a1a1a;
   font-size: 2.2rem;
    margin-bottom:  0.5rem;
}

.contact-subtitle 
 {
   text-align: center;
    color: #666;
   margin-bottom   :   3rem;
  font-size: 1.1rem;
}

.contact-form


{
  display: grid;
       grid-template-columns     :    1fr 1fr;
    gap: 1.5rem;
}

.form-group {
	 display: flex;
    flex-direction: column;
}

.contact-form .form-group:nth-child(4),
.contact-form .form-group:nth-child(5) {
	grid-column: 1 / -1;
}

.form-group label {
          font-weight: 600;
   margin-bottom: 0.7rem;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 0.9rem;
  border: 1px solid #ddd;
      border-radius: 6px;
         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: #8e44ad;
  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
     }

.form-submit-btn {
   grid-column: 1 / -1;
  background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
  color: #ffffff;
  padding: 1rem 2rem;
	 border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
   cursor :   pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(142, 68, 173, 0.4);
}

.page-footer {
   background: #1a1a1a;
   color: #ffffff;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-wrapper {
	max-width: 1200px;
		 margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap:     2rem;
   margin-bottom: 2rem;
} 

.footer-section h4 {
      font-size: 1.1rem;
       margin-bottom: 1.2rem;
}

.footer-logo-img {
                    height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}  

.footer-links {
   list-style :       none;
}  

.footer-links li 
 {

	    margin-bottom: 0.8rem;

}

.footer-links a {
          color: #bbb;
   text-decoration     :  none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8e44ad;
} 

.footer-contact {
   color: #bbb;
  font-size :        0.95rem;
               margin-bottom: 0.8rem;
    line-height :  1.6;
}

.footer-bottom {
    max-width: 1200px; 
  margin     :   0 auto; 
  padding-top: 1.5rem; 
   border-top: 1px solid #333; 
    text-align: center; 
	color: #999; 
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #2d2d2d;
        flex-direction: column;
        gap: 0;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        border-bottom: 1px solid #444;
    }

    .nav-link-item {
        display: block;
        padding: 1rem 1.5rem;
    }

    .hero-block {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form .form-group:nth-child(4),
    .contact-form .form-group:nth-child(5) {
        grid-column: 1;
    }

    .about-section h2,
    .services-preview h2,
    .benefits-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .burger-toggle.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-toggle.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-button-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .services-preview h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }
}.policySection {

		background:   #f8f9fa;
  padding: 80px 2rem;

}

.policyContainer {
    max-width: 800px;
    margin: 0 auto;
   text-align: left;
}

.policyContainer h2	{
	    font-weight: 700;
	margin-bottom: 1.5rem;
  color: #2c3e50;
   font-size: 2.5rem;
	}

.policyContainer p {
   color: #7f8c8d;
	margin-bottom  :       1.5rem;
   line-height: 1.7;
  font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero
{
  background: linear-gradient(135deg, #1a1a1a 0%, #3d1a5c 100%);
   color: #ffffff;
  padding: 5rem 1.5rem;
	text-align: center;
}

/* TODO: optimize for mobile */

.services-hero-content h1 {
	font-size: 3rem; 
	    font-weight: 700; 
	    margin-bottom: 1rem;
}

.services-hero-content p {

  font-size: 1.2rem;
	max-width: 700px;
  margin: 0 auto;
	line-height: 1.8;
  opacity: 0.95;

}

.services-detailed {
	 max-width: 1200px;
    margin: 0 auto;
  padding    : 4rem 1.5rem;
}

.services-detailed-container{

	    display: flex;
  flex-direction: column;
    gap: 4rem;
	
     }

/* Experimental feature */

.service-full {
   display: grid;
  grid-template-columns    :        1fr 1fr;
    gap: 3rem;
    align-items: center;
} 

.service-full.alternate-layout {
   grid-template-columns :    1fr 1fr;
}

.service-full.alternate-layout .service-full-content {
    order: 1;
}

.service-full.alternate-layout .service-full-image {

	    order: 2;
     }

.service-full-image img    {
   width     :   100%;
  height: auto;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);


}

.service-full-content h2 {
  font-size: 2.2rem;
      margin-bottom : 1.5rem;
        color:#1a1a1a;


}

.service-full-content p {
    font-size: 1rem;
   line-height: 1.8;
                    margin-bottom: 1.5rem;
    color: #444;
}

.service-full-content h3 {
     color: #2c3e50;
    font-size: 1.3rem;
	margin :  2rem 0 1rem 0; 

}

.service-list {
    list-style: none;
   margin-bottom: 1.5rem;
}

.service-list li

{
 padding     :       0.7rem 0 0.7rem 2rem;
                    position   : relative;
   color: #555;
    font-size: 0.95rem;
   line-height: 1.6;
}

.service-list li:before {
  content: "▸";
   position: absolute;
    left: 0;
    color: #8e44ad;
   font-weight: bold;
}

.service-duration {
  background: #f0f5fa;
    padding: 1rem 1.5rem;
        border-left: 4px solid #8e44ad;
    border-radius: 4px;
    margin: 1.5rem 0;
     font-size: 0.95rem;
}

.service-cta-link {
   display: inline-block;
  background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
   color: #ffffff;
      padding: 0.9rem 1.8rem;
   text-decoration: none;
   border-radius: 6px;
	font-weight   :     600;
  font-size:     1rem;
       transition: all 0.3s ease;
   margin-top: 1rem;


}

.service-cta-link:hover	{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(142, 68, 173, 0.4);
}

.conference-section	{
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 1.5rem;
}

.conference-content {
    max-width: 1200px;

	    margin: 0 auto;
}
	/* Vendor-specific */

.conference-content h2 {
        font-size: 2.2rem;
       margin-bottom: 1rem;
   text-align     :      center;
  color: #1a1a1a;
}

.conference-intro {
  text-align: center;
  font-size: 1.1rem;
       color: #555;
	margin-bottom     :  3rem;
}

.conference-grid {
   display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
   margin-bottom: 2rem;
}


.conference-item {
	background: #ffffff;
          padding  :     2rem;
	border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	text-align: center;
} 

.conf-icon {

  width: 70px;
               height: 70px;
  margin: 0 auto 1.5rem;


}

.conf-icon img		{
	width     :   100%;
	height: 100%;
}

.conference-item h3 {
  font-size: 1.2rem;
         margin-bottom: 1rem;
   color: #1a1a1a;
}

.conference-item p {
	font-size  :   0.95rem;
  color: #666;
  line-height: 1.6;
}

.conference-note
	{
					 text-align :  center;
  font-size: 1rem;
   color: #555;
  margin     : 2rem 0; 
	}

.conference-section .service-cta-link {
  display: block;
          width    :    fit-content;
   margin: 1.5rem auto 0;
}

.pricing-section {
    max-width: 1200px;
       margin: 0 auto;
  padding: 4rem 1.5rem;
}  

.pricing-section h2 {
   font-size: 2.2rem;
  text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-intro {
   text-align: center;
  font-size: 1.1rem;
  color: #666;
    margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2.5rem;
}

.pricing-card {
   background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
    padding: 2.5rem;
	text-align: center;
   transition: all 0.3s ease; 
	
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.pricing-card.featured {
	   border-color: #8e44ad;
  box-shadow: 0 8px 25px rgba(142, 68, 173, 0.2);
  transform: scale(1.02);


}

.pricing-card h3 {
    font-size: 1.6rem;
  margin-bottom: 0.5rem;
   color  :       #1a1a1a;
}

.pricing-desc		{
         color   :      #999;
    font-size: 0.9rem;
  margin-bottom   :     1.5rem;
}

.pricing-list {
	   list-style: none;
   margin-bottom: 2rem;
	}

.pricing-list li {
   padding: 0.8rem 0;
  border-bottom   :  1px solid #f0f0f0;
   color: #555;
    font-size: 0.95rem;
	
}

.pricing-list li:last-child {
	border-bottom   :  none;
}

.pricing-btn {
    display: inline-block;
  background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
   color: #ffffff;
    padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 6px;
   font-weight: 600;
  font-size: 1rem;
    transition:     all 0.3s ease;
	 border: none;
   cursor: pointer;
   width: 100%;
  margin-top: 1.5rem;


}

.pricing-btn:hover 
 {
  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(142, 68, 173, 0.4); 
	
}

.thankyou-section {

	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 1.5rem;
    min-height: 70vh;
  display    :  flex;
         align-items: center;
   justify-content: center;
     }
	/* Layout styles */
.thankyou-container
{
   max-width: 700px;
   background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
   text-align: center;


}

.thankyou-icon {
    width: 100px;
  height: 100px;
	margin: 0 auto 2rem;


}  

.thankyou-icon img {
      width: 100%; 
    height: 100%; 
    stroke: #2ecc71;


}  

.thankyou-title {
   font-size: 2.2rem;
   margin-bottom :      1rem;
          color: #1a1a1a;
}

.thankyou-message {
    font-size: 1.1rem;
  color: #666;
    margin-bottom: 2rem;
  line-height    :    1.7; 
	
}

.thankyou-content {
        text-align: left;
    background: #f9f9f9;
        padding: 2rem;
     border-radius:    8px;
  margin: 2rem 0;
}

.thankyou-content p {
                    font-size: 0.95rem;
  color: #555;
    line-height  :    1.8;
	margin-bottom :  1rem;
}

.thankyou-info h2 {
	margin    :    1.5rem 0 1rem 0;
  color    :  #1a1a1a;
  font-size: 1.4rem;

}

.thankyou-steps {
    list-style     :none;

	  margin: 1rem 0 1.5rem 0;
}

.thankyou-steps li {
   padding: 0.8rem 0 0.8rem 2rem;
   position: relative;
   color:#555;
  font-size     :      0.95rem;
      line-height: 1.6;
}

.thankyou-steps li:before {
  content: "✓";
   position: absolute;
   left: 0;
    color   :#2ecc71;
    font-weight: bold;
	font-size: 1.2rem;
}

.thankyou-contact-note {
	background: #e8f5e9;
    padding: 1rem;
  border-radius: 6px;
   color: #2c5f2d;
    font-size: 0.95rem;
          margin-top: 1.5rem;
}

.thankyou-actions


{
       display: flex;
    gap: 1rem;
   margin-top: 2rem;
}

.thankyou-btn {
      transition: all 0.3s ease;
   flex:       1;
    border: 2px solid #8e44ad;
   padding: 1rem;
    text-decoration: none;
    font-size:        1rem;
	 border-radius   :     6px;
		font-weight: 600;
     }

/* Auto-generated CSS */
/* Responsive design */

	/* Debug styles */
.thankyou-btn.primary {
  background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
        color: #ffffff;
}
	/* Auto-generated CSS */



/* Minified version */
	/* Auto-generated CSS */

.thankyou-btn.primary:hover 
 {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(142, 68, 173, 0.4);
}

.thankyou-btn.secondary {
  background: transparent;
	   color: #8e44ad;
}

.thankyou-btn.secondary:hover {
   background: #8e44ad;
    color: #ffffff;
}
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-full.alternate-layout .service-full-content {
        order: 0;
    }

    .service-full.alternate-layout .service-full-image {
        order: 0;
    }

    .service-full-content h2 {
        font-size: 1.6rem;
    }

    .conference-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-detailed {
        padding: 2rem 1rem;
    }

    .service-full-content h2 {
        font-size: 1.3rem;
    }

    .service-list li {
        padding: 0.6rem 0 0.6rem 1.8rem;
    }

    .pricing-section {
        padding: 2rem 1rem;
    }

    .thankyou-section {
        padding: 2rem 1rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
    }
}