* {
  margin: 0;
   padding: 0;
    box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #2c3e50;
  background-color: #f8f9fa;
}

.navbar-main {
     background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   padding: 1rem 0;
  position: sticky;
  top: 0;
   z-index    :1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);


}

.nav-container
	{
       max-width: 1200px;
  margin: 0 auto;
	padding : 0 2rem;
	display: flex;
       justify-content: space-between;
  align-items: center;
}

.nav-logo-section 
 {

   display: flex;
   align-items: center;
}

.nav-logo {
   height: 64px;
	    width   :    auto;
	  filter: brightness(0) invert(1);
}

.nav-menu {
       display: flex;
    list-style: none;
    gap: 2rem;

}

.nav-item {
   position: relative;
}

.nav-link {
    color: #ecf0f1;
   text-decoration: none;
  font-weight:       500;
  font-size    :        1rem;
		transition: all 0.3s ease;
	padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {

	  color: #3498db;
       border-bottom-color  :#3498db;
     }

.menu-toggle  
  {
   cursor: pointer;
    flex-direction: column;
       gap: 0.4rem;
  display: none;
}

.burger-line {
  width: 28px;
  height: 3px;
    background-color: #ecf0f1;
	border-radius     :       2px;
    transition: all 0.3s ease;
}

.hero-section {
   position: relative;
    height: 550px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
					align-items: center;
  justify-content: center;
	color: white;
         text-align: center;
  overflow: hidden;
}

.hero-overlay {
    position  :        absolute;
  top: 0;
  left    :   0;
  right: 0;
	 bottom: 0;
  background: rgba(0, 0, 0, 0.2);
    z-index: 1;

}

.hero-content {
   position: relative;

			z-index   :        2;

	  max-width:   700px;

	  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
                    margin-bottom: 1rem;
    line-height: 1.2;
	animation: slideInDown 0.8s ease-out;
}

.hero-subtitle {
               -webkit-animation: slideInUp 0.8s ease-out 0.2s both;
  font-size: 1.5rem;
    margin-bottom: 2rem;
  opacity  :   0.95;
     animation: slideInUp 0.8s ease-out 0.2s both;
   -moz-animation: slideInUp 0.8s ease-out 0.2s both;
}@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.cta-button {
    display: inline-block;
   background-color :#f39c12;
	color: white;
    padding: 1rem 2.5rem;
                    border-radius: 50px;
 text-decoration: none;
  font-weight: 600;
   font-size:  1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
    background-color: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

.services-overview-section {
    padding: 4rem 2rem;

	          background-color     : #fff;

	  border-bottom   :      1px solid #ecf0f1;
}

.section-container {
  max-width: 1200px;
	    margin: 0 auto;
}

.services-overview-section h2	{

	    font-size     :   2.5rem;
               text-align: center;
  margin-bottom: 3rem;
   color: #2c3e50;
    position: relative;
  padding-bottom: 1rem;
}

.services-overview-section h2::after    {
  content: '';
    position  :    absolute;
    bottom: 0;
	 left: 50%;
  transform: translateX(-50%);
  width: 100px;
   height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.services-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;


}

.service-card{
  border: 1px solid #ecf0f1;
   text-align   :        center;
   border-radius: 12px;
  background  :     #f8f9fa;
    transition: all 0.3s ease;
	 padding   :        2rem;
}

.service-card:hover
	{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.service-icon-box		{
    width: 100%;
  height    :   200px;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-radius: 8px;
   display: flex;
      align-items    :  center;
  justify-content: center;
	margin-bottom: 1.5rem;
	overflow     :    hidden;
}

.service-image {

	  width: 100%;
	height: 100%;
    object-fit: cover;
  border-radius: 8px;
     }

.service-card h3 {
    font-size :       1.5rem;
   margin-bottom: 1rem;
    color: #2c3e50;
}


.service-card p {
  color     :    #555; 
   line-height: 1.8; 
    font-size: 0.95rem;
}

.strategy-section 
 {
    padding   :   4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.strategy-container {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
	 grid-template-columns    :        1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.strategy-text h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
   color: #2c3e50;
}

.strategy-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
    color: #34495e;
	line-height: 1.8;
}

.strategy-image {
 border-radius: 12px;
	 overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.strategy-photo {
   width: 100%;
   height: auto;
  display: block;
   border-radius: 12px;


}

.webinar-conference-section {
   padding: 4rem 2rem; 
	   background-color: #fff;
}

.webinar-conference-section h2 {
		 font-size: 2.5rem; 
	  text-align: center; 
	  margin-bottom: 3rem; 
	                    color :       #2c3e50; 
	   position   :        relative; 
	  padding-bottom: 1rem;
	}

.webinar-conference-section h2::after {
  content: '';
  position: absolute;
    bottom :  0;
  left: 50%;
  transform: translateX(-50%);
   width: 100px;
    height: 4px;
  background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
   border-radius: 2px;
}

.event-cards     {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
      max-width: 1200px;
	margin     :     0 auto;}

.event-card {
   background: white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   border: 1px solid #ecf0f1;
}

.event-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);}

.event-image {
      width: 100%;
 height: 220px;
	 object-fit: cover;
    display: block;}

.event-card h3 {
     font-size: 1.4rem;
         padding: 1.5rem 1.5rem 0.5rem;
  color: #2c3e50;
}

.event-card p


{
    padding: 0 1.5rem 1.5rem;
  color:    #555;
   font-size: 0.95rem;
					line-height: 1.7;
}

.coaching-process-section {
   padding  :      4rem 2rem;

  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.coaching-process-section h2 {
       font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
  color: #2c3e50;
} 

.process-steps		{
		display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	   gap: 2rem;
	  max-width: 1200px;
	                    margin: 0 auto;
}

.process-step {
  background: white;
					padding: 2rem;
   border-radius: 12px;
                    text-align:   center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
	 position: relative;

}

.process-step:hover {
	  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);


}

.step-number     {
   display: inline-flex;
   align-items    :  center;
          justify-content: center;
  width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  font-size: 1.8rem;
  font-weight: 700;
    border-radius     :50%;
    margin-bottom    :        1rem;
}

.process-step h3 {
    font-size: 1.3rem;
   margin-bottom: 1rem;
 color: #2c3e50;
}

.process-step p  {
   color: #555;
	  font-size: 0.95rem;
	  line-height: 1.7;
}

.success-stories-section    {
	 padding: 4rem 2rem;
   background-color: #fff;
}

.success-stories-section h2 {
  font-size: 2.5rem;
    text-align: center;
   margin-bottom: 3rem;
  color: #2c3e50;
  position: relative;
   padding-bottom: 1rem;
}

.success-stories-section h2::after {
  content: '';
   position: absolute;
   bottom: 0;
	 left: 50%;
  transform: translateX(-50%);
    width  :     100px;
  height: 4px;
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 2px;
}

.stories-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-item {
  background: linear-gradient(135deg, #f0f3ff 0%, #f8f9ff 100%);
      padding:       2rem;
           border-radius  :    12px;
     border-left: 4px solid #667eea;
     transition     :   all 0.3s ease;


}

.story-item:hover {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  transform: translateX(5px);
}

.story-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.story-item p {
      color: #555;
    line-height: 1.8;
	font-size: 0.95rem;
}

.cta-section 
 {
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
   color: white;
}

.cta-container {
   max-width: 700px;
  margin: 0 auto; 
	
}

.cta-section h2 {
    font-size: 2.5rem;
	 margin-bottom: 1.5rem;
    color: white;
	
}

.cta-section p {
	     font-size: 1.1rem;
   margin-bottom: 2rem;
     opacity: 0.95;
     line-height: 1.8;
	}

.cta-button-large {
	  display: inline-block;
   background-color : #f39c12;
  color: white;
    padding :  1.2rem 3rem;
   border-radius: 50px;
    text-decoration: none;
   font-weight    :  700;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
     }

.cta-button-large:hover {

	   background-color:  #e67e22;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.5);


}

.contact-section {
	 padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
}

.contact-section h2 {
   font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-wrapper{
  display: grid;
  grid-template-columns   : 1fr 1fr;
    gap: 3rem;
  max-width   :    1200px;
    margin: 0 auto;
}

.contact-form   {
   background: white;
   padding   :      2.5rem;
   border-radius:   12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
}

.form-group label {
	    font-weight: 600;
  margin-bottom: 0.5rem;
    color: #2c3e50;
                    font-size :       0.95rem;
	}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 0.9rem;
    border :  1px solid #bdc3c7;
   border-radius: 6px;
   font-family: inherit;
  font-size: 1rem;
    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-button {
    width: 100%;
          padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  border: none;
  border-radius: 6px;
   font-weight: 600;
    font-size  :      1rem;
  cursor: pointer;
	 transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
	  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);}

.contact-info {
  background: white;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
   flex-direction: column;
      justify-content: center; 

}

.contact-info h3  
  {
	font-size: 1.5rem;
    margin-bottom: 2rem;
     color: #2c3e50;
}

.info-item{
  margin-bottom: 2rem;
    color   :#555;
	line-height: 1.8;
	font-size: 0.95rem;
}

.info-item strong {
		 color    :   #2c3e50;
	  display: block;
	    margin-bottom: 0.5rem;
	}

.footer-main {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
         color  :#ecf0f1;
   padding: 3rem 2rem 1rem;
  border-top: 1px solid #0f3460;


}

.footer-content {
       max-width: 1200px;
      margin: 0 auto 2rem;
	display: grid;
   grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;


}

.footer-logo-section {
  display: flex;
  align-items     :   flex-start;


}

.footer-logo {
 height: 86px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   line-height: 1.8;

	    font-size: 0.95rem;


}

.footer-info p {
   margin-bottom: 0.5rem;
}

.footer-info strong {
    display     :  block;
   margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-links h4 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.footer-links ul  {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a	{
  color: #bdc3c7;
	text-decoration: none;
    transition: all 0.3s ease;
    font-size:    0.95rem; 

}

.footer-links a:hover {
    color :#3498db;
   padding-left: 0.5rem;
}

.footer-bottom {

    text-align    :center;
    padding-top: 2rem;
   border-top: 1px solid #0f3460;
  color    :#95a5a6;
  font-size: 0.9rem;


     }@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        border-bottom: 1px solid rgba(236, 240, 241, 0.1);
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border: none;
    }

    .hero-section {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .strategy-container {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-overview-section h2,
    .webinar-conference-section h2,
    .success-stories-section h2,
    .coaching-process-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-section {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid,
    .event-cards,
    .process-steps,
    .stories-container {
        grid-template-columns: 1fr;
    }

    .cta-button,
    .cta-button-large {
        font-size: 0.95rem;
        padding: 0.9rem 2rem;
    }

    .services-overview-section,
    .strategy-section,
    .webinar-conference-section,
    .coaching-process-section,
    .success-stories-section,
    .cta-section,
    .contact-section {
        padding: 2rem 1rem;
    }
}.services-hero-section {
    position: relative;
		height: 450px;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
	 display: flex;
  align-items: center;
   justify-content: center;
    color: white;
  text-align   :      center;
   overflow: hidden;
}

.services-hero-overlay {
     position: absolute;
    top: 0;
  left: 0;
   right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;

}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  padding: 0 2rem; 

}

.services-hero-content h1 {
	font-size    :   3rem;

	   font-weight: 700;

		margin-bottom:        1rem;

	    line-height: 1.2;
}

.services-hero-subtitle {
  font-size: 1.4rem;
   opacity: 0.95;
   margin: 0;
}

.individual-coaching-section {
   padding: 4rem 2rem;
   background-color: #fff;
}

.individual-coaching-section h2 {
       text-align: center;
    font-size: 2.5rem;
          padding-bottom: 1rem;
  position: relative;
   color  :  #2c3e50;
  margin-bottom: 3rem;
}

.individual-coaching-section h2::after   {
  content: '';
    position: absolute;
   bottom: 0;
    left: 50%;
  transform: translateX(-50%);
   width: 100px;
    height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        border-radius: 2px;
}

.coaching-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;
  max-width: 1200px;
   margin   :        0 auto;


}

.coaching-card {


    background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
   border: 1px solid #ecf0f1;
  display: flex;
    flex-direction: column;

}

.coaching-card:hover


{
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	 padding: 1.5rem;
	border-bottom    :    2px solid #ecf0f1;
}


.card-header h3 {
  font-size: 1.3rem;
    color: #2c3e50;
   margin :    0;
}

.coaching-image {
   width: 100%;
  height    :    220px;
	object-fit: cover;
  display     :       block;
     }

.card-content

{
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction :   column;
}

.card-content p {
	line-height: 1.8;
	font-size: 0.95rem;
    color: #555;
      margin-bottom: 1.5rem;
}

.service-details  
  {

	  background: #f8f9fa;
  padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #667eea;


}

.service-details p {
   margin-bottom: 0.5rem; 
	    font-size: 0.9rem; 

}

.service-details p:last-child {
   margin-bottom: 0;
}

.workshops-section {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0f3ff 0%, #f8f9ff 100%);
	
}

.workshops-section h2 {
  font-size: 2.5rem;
  text-align     :center;
   margin-bottom   :      1.5rem;
  color   :   #2c3e50;
				 position: relative;
   padding-bottom: 1rem;
}

.workshops-section h2::after {
  content: '';
    position: absolute;
	bottom: 0;
   left: 50%;
  transform: translateX(-50%);
  width :100px;
      height: 4px;
  background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
  border-radius  :     2px;
}

.workshops-intro {
   text-align: center;

       max-width: 700px;

  margin: 0 auto 3rem;

   font-size: 1.05rem;

  color: #555;

  line-height: 1.8;


}

.workshops-list		{
       max-width: 1200px;
      margin: 0 auto;
   display: grid;
   gap: 2rem;

}

.workshop-item {
    background: white;
  border-radius: 12px;
   overflow: hidden;
	display: grid;
   grid-template-columns: 40% 60%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition     :     all 0.3s ease;
    border: 1px solid #ecf0f1;
     }

.workshop-item:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
	  transform: translateY(-5px);
}

.workshop-image {
   width :100%;
         height :      100%;
 object-fit: cover;
    display: block;
    min-height     :     300px;
}

.workshop-info {
     padding: 2rem;
   display :       flex;
    flex-direction: column;
  justify-content:     center;
	}

.workshop-info h3 {
  font-size:  1.5rem;
    color: #2c3e50;
   margin-bottom: 1rem;
}

.workshop-info p {
   line-height: 1.8;
         font-size: 0.95rem;
    margin-bottom: 1.5rem;
       color  :   #555;
}

.workshop-meta {
  display: flex;
   gap :1rem;
	flex-wrap: wrap;
}

.meta-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :  white;
  padding: 0.5rem 1rem;
    border-radius: 20px;
         font-size: 0.85rem;
  font-weight: 600;
}

.webinars-section {
  padding:        4rem 2rem;

	  background-color: #fff;
}

.webinars-section h2 {
	    font-size: 2.5rem;
  text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
   padding-bottom: 1rem;
}

.webinars-section h2::after {

  content: '';
  position: absolute;
  bottom: 0;
    left: 50%;
  transform: translateX(-50%);
	width: 100px;
  height    :       4px;
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
   border-radius: 2px;
}

.webinars-intro {
    text-align: center;
    max-width: 700px;
  margin: 0 auto 3rem;
   font-size  :     1.05rem;
   color: #555;
   line-height:   1.8;
}

.webinars-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap     :  2rem;
  max-width: 1200px;
	 margin: 0 auto;
}

.webinar-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  padding: 2rem;
   border-radius: 12px;
 border: 1px solid #dfe6e9;
	 transition: all 0.3s ease;
	display     :      flex;
  flex-direction  :     column;
}

.webinar-card:hover {
  transform: translateY(-8px);

	  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);

	         background     : white;
}

.webinar-card h3 {
   font-size: 1.3rem;
   color: #2c3e50;
   margin-bottom: 1rem;
	margin-top: 0;

}

.webinar-card p {
   color: #555;
	         line-height: 1.7;
		font-size    :     0.95rem;
	    margin-bottom: auto;
	  padding-bottom: 1.5rem;
}

.webinar-footer {
    display: flex;
  justify-content: space-between;
   padding-top: 1.5rem;
  border-top: 1px solid #dfe6e9;
   font-size: 0.9rem;
    color: #666;
}

.duration,
.frequency {
	 display: inline-block;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	padding:     0.4rem 0.8rem;
   border-radius  :     6px;
}

.conferences-section {


    padding     :  4rem 2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);


}

.conferences-section h2 {
  font-size: 2.5rem;
  text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
                    position: relative;
    padding-bottom: 1rem;
}

.conferences-section h2::after {
  content: '';

  position :        absolute;

    bottom: 0;

    left  :       50%;

  transform: translateX(-50%);

    width: 100px;

    height: 4px;

  background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);

    border-radius: 2px;
	
}

.conference-content {
  max-width: 1200px;
   margin: 0 auto;
    display  : grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
	align-items: center;
}

.conference-text h3 {
    font-size: 2rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
}

.conference-text p {

	         font-size: 1.05rem;
  color: #555;
    line-height: 1.8;
   margin-bottom     :       1.5rem;}

.conference-features {

  display: grid;
	gap: 1.5rem;
  margin-bottom: 2rem;
	grid-template-columns: 1fr;
     }

.feature {
		 background: white;
  padding: 1.5rem;
 border-radius: 8px;
  border-left: 4px solid #667eea;
}

.feature h4 
 {
  font-size: 1.1rem;
    color: #2c3e50;
         margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
   font-size: 0.9rem;
  margin: 0;
	 line-height: 1.6;
}

.conference-meta {
   background: white;
        padding: 1rem;
  border-radius: 8px;
   font-size: 0.95rem;
   color: #555;
}

.conference-image  
  {


   border-radius: 12px;
  overflow :hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
	}

.conf-img  
  {
	 width   :      100%;
  height     :        auto;
  display: block;
  border-radius: 12px;
}

.pricing-section {
                    padding: 4rem 2rem;
   background-color: #fff;
}

.pricing-section h2 {
   font-size: 2.5rem; 
	   text-align: center; 
		margin-bottom: 3rem; 
		color: #2c3e50; 
	    position: relative; 
	  padding-bottom: 1rem;
}

.pricing-section h2::after {
  content: '';
	position: absolute;
  bottom  :  0;
    left  :       50%;
  transform: translateX(-50%);
	width: 100px;
   height: 4px;
  background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 2px;
}

.pricing-grid {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
    max-width: 1200px;
  margin: 0 auto 2rem;
}

.pricing-card {
   position: relative;
    transition: all 0.3s ease;
   border-radius: 12px;
               text-align: center;
  padding: 2.5rem;
   border: 2px solid #ecf0f1;
}

.pricing-card.basic {
    background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card.basic:hover
{
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);


}  

.pricing-card.professional {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
  transform: scale(1.05);
}

.pricing-card.professional:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 15px 45px rgba(102, 126, 234, 0.4);
}

.pricing-card.professional::before

{
  content: 'NAJPOPULARNIEJSZY';
 position: absolute;
	 top: -12px;
       left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
    color     :      white;
    padding: 0.5rem 1.5rem;
  border-radius: 20px;
    font-weight: 700;
    font-size   :        0.75rem;
    letter-spacing :    1px;
}

.pricing-card.premium {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color     :       white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
         font-size   :    1.4rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.price  {
    font-size: 2.5rem;
   font-weight   :    700;
  margin-bottom: 0.5rem;
}

.price::after {
  content: '';
}

.price-description {
  font-size :    0.9rem;
   opacity: 0.8;
   margin-bottom: 1.5rem;
}

.price-features {
     list-style: none;
     text-align: left;
    margin: 1.5rem 0;
  padding  :     0;
	}

.price-features li {
   padding: 0.8rem 0;
  border-bottom: 1px solid;
  font-size  : 0.95rem;


}

.pricing-card.basic .price-features li {
  border-bottom-color :  #ecf0f1;
  color: #555; 
	
}

.pricing-card.professional .price-features li,
.pricing-card.premium .price-features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {

  content: '✓ ';
  font-weight: bold;
  margin-right: 0.5rem; 

}

.pricing-note {
  text-align  :        center;
   color: #666;
	font-size: 0.95rem;
    margin-top: 2rem;
    font-style: italic;
}

.why-us-section   {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
}

.why-us-section h2 {
		 font-size: 2.5rem; 
   text-align: center; 
    margin-bottom   :  3rem; 
     color: #2c3e50;
	}

.why-grid {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	         gap: 2rem; 
	  max-width: 1200px; 
	  margin: 0 auto;
}

.why-item {
      background: white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
   transition :   all 0.3s ease;
    text-align: center;
}

.why-item:hover


{
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.why-item h3		{
    font-size: 1.3rem;
   color: #2c3e50;
  margin-bottom: 1rem;
}

.why-item p {

    line-height: 1.7;
  color: #555;
  font-size: 0.95rem;
    margin  : 0;
	}

.thankyou-section

{
    padding: 4rem 2rem;
	  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
	    min-height: 600px;
		display: flex;
	  align-items: center;
}

.thankyou-container


{
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items     :center;
   width: 100%;
}

.thankyou-content {
      background     :   white;
   padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-checkmark {
          height: 80px;
  position:    relative;
	 width: 80px;
  margin: 0 auto 2rem;


}

.checkmark-circle {
	 position: absolute;
    top: 0;
  left: 0;
  width: 80px;
	height: 80px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 50%;
   animation: scaleIn 0.6s ease-out;
}

.checkmark-check     {
       position  :absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
   width: 50px;
   height: 25px;
          border: 3px solid white;
    border-top: none;
   border-right: none;
  transform: translate(-50%, -60%) rotate(-45deg);
   animation: checkDraw 0.6s ease-out 0.2s both;
}  @keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkDraw {
    from {
        width: 0;
        height: 0;
        border-width: 0;
    }
    to {
        width: 50px;
        height: 25px;
        border-width: 3px;
    }
}.thankyou-content h1 {
   font-size :  2.2rem;
    color  :     #2c3e50;
  text-align:        center;
   margin-bottom: 0.5rem;
   margin-top: 0;
}

.thankyou-subtitle {
       text-align   :   center;
  color  :     #2ecc71;
  font-size: 1.1rem;
   margin-bottom: 2rem;
  font-weight: 600;
}

.thankyou-message {
    background: #f8f9fa;
  padding: 2rem;
     border-radius: 8px;
   border-left: 4px solid #2ecc71;
    margin-bottom: 2rem;
}

.thankyou-message p {
    color: #555;
	 line-height: 1.8;
	 margin-bottom     :    1rem;
}

.thankyou-message p:last-child {

	margin-bottom :        0;
     }

.next-steps {
    list-style   :  none;

	   padding: 0;

	        margin     :1rem 0 0;
}

.next-steps li
	{
    padding: 0.8rem 0 0.8rem 2rem;
       color: #555;
   position: relative;
  line-height: 1.6;
}

.next-steps li::before {
  content: '→';
    position: absolute;
  left: 0;
   color: #2ecc71;
  font-weight: bold;
}

.contact-info-box {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info-box h3 {

  font-size:       1.1rem;
    color: #2c3e50;
   margin-bottom: 1rem;}

.contact-detail {

      color: #555;
   margin-bottom  :        0.5rem;
	font-size: 0.95rem;
	}

.contact-detail:last-child {
   margin-bottom: 0;
}

.action-buttons {
  display : flex;
   gap :        1rem;
   flex-wrap: wrap;
}

.button-primary,
.button-secondary {
   flex: 1;
   padding  :   1rem;
	border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
    text-align   :center;
  transition: all 0.3s ease;
     min-width: 160px;
   display: inline-block;
}

.button-primary {

  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.button-secondary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.button-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.thankyou-image {
    border-radius: 12px;
	    overflow: hidden;
	  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	  animation: slideInRight 0.6s ease-out;
}

.celebration-img
	{
    width: 100%;
  height: auto;
   display: block;
     border-radius: 12px;
}  @keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}.next-offer-section {
          padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0f3ff 0%, #f8f9ff 100%);
}

.next-offer-section h2 {
  font-size: 2.3rem;
  text-align: center;
   margin-bottom: 3rem;
   color: #2c3e50;
}

.offer-grid

{
  display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
	background: white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.offer-card:nth-child(1){
  border-top-color: #667eea;
}

.offer-card:nth-child(2) {


   border-top-color: #764ba2;}

.offer-card:nth-child(3) {
    border-top-color: #f39c12;
}

.offer-card:nth-child(4)     {
  border-top-color: #2ecc71;

}

.offer-card:hover {
	  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);


}

.offer-card h3 {


   font-size:   1.2rem;
       color   : #2c3e50;
     margin-bottom: 1rem;
      margin-top: 0;
	}

.offer-card p {
               color: #555;
   line-height     :        1.7;
  font-size: 0.95rem;
                    margin: 0;

}@media (max-width: 1024px) {
    .workshop-item {
        grid-template-columns: 1fr;
    }

    .workshop-image {
        min-height: 250px;
    }

    .conference-content {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
    }

    .pricing-card.professional {
        transform: scale(1);
    }

    .pricing-card.professional:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        height: 350px;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1.1rem;
    }

    .individual-coaching-section h2,
    .workshops-section h2,
    .webinars-section h2,
    .conferences-section h2,
    .pricing-section h2,
    .why-us-section h2,
    .next-offer-section h2 {
        font-size: 2rem;
    }

    .coaching-grid {
        grid-template-columns: 1fr;
    }

    .conference-text h3 {
        font-size: 1.5rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-section {
        height: 300px;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-subtitle {
        font-size: 0.95rem;
    }

    .individual-coaching-section,
    .workshops-section,
    .webinars-section,
    .conferences-section,
    .pricing-section,
    .why-us-section,
    .thankyou-section,
    .next-offer-section {
        padding: 2rem 1rem;
    }

    .workshops-list {
        grid-template-columns: 1fr;
    }

    .workshop-info {
        padding: 1.5rem;
    }

    .conference-features {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .why-grid,
    .webinars-grid {
        grid-template-columns: 1fr;
    }

    .service-details,
    .feature,
    .thankyou-message,
    .contact-info-box {
        padding: 1rem;
    }

    .price {
        font-size: 2rem;
    }
}.policySection {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
    min-height: 100vh;
}

.policyContainer 
 {
  max-width  :  900px;
   margin: 0 auto;
    text-align: left;
	background: white;
    padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.policyContainer h2 {
  font-size: 2.8rem;
	 color: #2c3e50;
   margin-bottom: 2rem;
   margin-top   :        0;
    font-weight: 700;
   padding-bottom: 1.5rem;
  border-bottom: 3px solid linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.policyContainer h3 {
    font-size  :     1.5rem;
   color: #34495e;
   margin-top: 2rem;
    margin-bottom: 1rem;
	font-weight: 600;
}

.policyContainer h3:first-of-type {
   margin-top    :        0;
}

.policyContainer p  {
	margin-bottom :   1.5rem;

	 color: #555;

    text-align: justify;

      line-height: 1.85;

    font-size: 1rem;
}

.policyContainer p:last-child {
               margin-bottom: 0;
}

.policyContainer strong


{
    font-weight: 600;

               color: #2c3e50;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 2.4rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h2 {
        font-size: 2rem;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.75rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h3 {
        font-size: 1.05rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1rem;
        text-align: left;
    }
}