* {
  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: #333;
  background-color: #fafafa;
     }

.container

{

   max-width :     1200px;
  margin: 0 auto;
				 padding  :0 20px;
}

.navbar {
     background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding  :       1rem 0;
    position: sticky;
   top: 0;
                    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);


}

.nav-container


{
   max-width :       1200px;
	margin :        0 auto;
   padding: 0 20px;
   display  :  flex;
    justify-content: space-between;
  align-items: center;
}

.nav-brand {
	 align-items:       center;
    display:flex;
}

.nav-logo {
	 height: 74px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu  {
    display: flex; 
    gap: 2rem; 
  align-items: center;
}

.nav-link {
    color: white;
   text-decoration: none;
   font-weight: 500;
   transition: color 0.3s ease;
    position: relative;
}

.nav-link::after

{
  content: '';
         position  :       absolute;
  width: 0;
    height: 2px;
	bottom: -5px;
    left: 0;
    background: #00d4ff;
   transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.burger-menu {
    gap: 5px;
  flex-direction: column;
	 display  :       none;
   background: none;
   cursor: pointer;
         border: none;
}

.burger-menu span

{
  width: 25px;
	    height: 3px;
	   background: white;
	 border-radius: 3px;
	    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
   opacity :    0;
}

.burger-menu.active span:nth-child(3) {


  transform: rotate(-45deg) translate(7px, -7px);
}

.hero
{
   gap: 3rem;
    justify-content: space-between;
	 align-items: center;
         max-width: 1200px;
   min-height    :      600px;
	margin: 0 auto;
   padding    :      4rem 20px;
	display: flex;
}

.hero-content {
         flex: 1;
}

.hero-content h1 {
   font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
   color: #1a1a2e;
   font-weight    :     700;
}

.hero-subtitle {
      font-size:1.2rem;
      color   :        #555;
  margin-bottom: 2rem;
   line-height: 1.8;}

.cta-button
	{
   display:       inline-block;
  padding :1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
  text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {

	  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
	}

.hero-image {
   -ms-flex: 1;
     flex: 1;
     -webkit-flex: 1;
    display: flex;
    align-items: center;
  justify-content: center;
}

.hero-img {
 width: 100%;
   max-width: 500px;
        border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); 
	
}

.about-section {
    padding: 5rem 20px;
 background: white;
      margin :  2rem 0;
}

.about-section h2 {

	   font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
	color: #1a1a2e;
}

.about-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 2rem;
	 max-width: 1200px;
	margin: 0 auto;
}

.about-card {
             padding: 2.5rem;
       background: #f8f9ff;
         border-radius: 10px;
             text-align: center;
       transition: all 0.3s ease;
       border: 1px solid #e0e6ff; 
	}

.about-card:hover   {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.card-icon {
  display: flex;
  justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon {
   width: 50px;
    height: 50px;
  stroke: #667eea;
      fill  : none;
   stroke-width: 2;
  stroke-linecap: round;
    stroke-linejoin: round;
}

.about-card h3 {
  font-size: 1.5rem;
         margin-bottom  :     1rem;
   color: #1a1a2e;
}

.about-card p {
  color  :  #666;
   line-height: 1.7;
}

.services-overview {
	   padding: 5rem 20px;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);}

.services-overview h2 {
  font-size: 2.5rem;
  text-align: center;
   margin-bottom     :      3rem;
  color: #1a1a2e;
}

.services-grid  
  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
   max-width: 1200px;
    margin   :   0 auto 3rem; 

}

.service-card {
          background: white;
    border-radius:     12px;
  overflow    :      hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition    :    all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image
{
  width: 100%;
   height: 250px;
   object-fit: cover;
}

.service-content	{
     padding: 2rem;
}

.service-content h3 {
   font-size: 1.5rem;
   	 margin-bottom: 1rem;
       color: #1a1a2e;
}

.service-content p    {
	color:   #666;
   line-height: 1.7;
}

.services-cta {
    text-align: center;
   margin-top: 3rem;
}

.link-button {

    display: inline-block;
  padding: 1rem 2rem;
  background   :   white;
  color: #667eea;
   text-decoration     : none;
  border: 2px solid #667eea;
  border-radius    :       50px;
    font-weight:       600;
   transition: all 0.3s ease;
     }

.link-button:hover {
		 background: #667eea;
   color   :     white; 

}

.process-section {
  padding: 5rem 20px;
	background: white;
}


.process-section h2
{
  font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
         color     :  #1a1a2e;


}

.process-steps {
  display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
   margin     :        0 auto;
}

.step


{
    padding: 2rem;
    text-align: center;
   border-radius     : 10px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
   border-left: 4px solid #667eea;
  transition: all 0.3s ease;
} 

.step:hover    {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}


.step-number   {
    font-size: 2.5rem;
  font-weight: 700;
                    color: #667eea;
    margin-bottom: 1rem;
}

.step h3 {
   font-size: 1.3rem;
   margin-bottom: 1rem;
   color: #1a1a2e;
}

.step p {
   color     :     #666;
   line-height: 1.6;
}

.programs-section {
	padding: 5rem 20px;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.programs-section h2 {
	font-size: 2.5rem;
    text-align: center;
  margin-bottom: 3rem;
    color: #1a1a2e;
}

.programs-container {
   display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

   gap: 2rem;

   max-width: 1200px;

    margin: 0 auto;
}

.program-box
{
  background     :    white;
    padding: 2.5rem;
    -moz-border-radius: 12px;
  -o-transition: all 0.3s ease;
   border-radius: 12px;
  border: 2px solid #e0e6ff;
          -moz-transition: all 0.3s ease;
   position: relative;
   transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.program-box:hover {
   border-color: #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15); 
	
}

.program-box.featured {
  border-color: #667eea;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  transform: scale(1.05);
}

.featured-badge {
    position: absolute;
        top: -12px;
               left: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 0.5rem 1.5rem;
  border-radius: 20px;
    font-weight   :     600;
  font-size: 0.85rem;
}

.program-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  color: #1a1a2e;
   margin-top: 0.5rem;
}

.program-box p
{

    color: #666;

  margin-bottom   :       1.5rem;

   line-height: 1.6;
     }

.program-features {
	list-style: none;
  margin-bottom: 2rem;
}

.program-features li {
		 padding   :       0.7rem 0;
   color: #555;
          border-bottom: 1px solid #f0f0f0;
   display: flex;
 align-items: center;
}

.program-features li::before {
  content: '';
    width: 8px;
    height    :     8px;
  background: #667eea;
	border-radius   :       50%;
   margin-right: 1rem;
   flex-shrink: 0;
}

.webinars-section


{
    background: white;
    padding   :     5rem 20px;
}

.webinars-section h2 {

	  font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
    color: #1a1a2e;

}

.webinars-content {
 max-width: 1200px;
	 margin:        0 auto;
}

.webinar-item {
    display: grid;
  grid-template-columns: 1fr 1fr;
          gap: 3rem;
   align-items :  center;
    margin-bottom    :        3rem;
}

.webinar-item.reverse    {
  grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.webinar-item.reverse > *	{

   direction: ltr;
}


.webinar-img {
	 width: 100%;
	  border-radius: 12px;
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);}

.webinar-text h3 {

    color: #1a1a2e;
   margin-bottom: 1rem;
    font-size    :       2rem;
}

.webinar-text p {
  color:    #666;
  line-height: 1.8;
	 font-size: 1.05rem;
}

.cta-section {
     padding: 4rem 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
    margin: 2rem 0;
}

.cta-content h2 {
	    font-size: 2.5rem;
   color: white;
   margin-bottom: 1rem;

}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
    max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.primary-cta-button {

	  display: inline-block;
    padding   :   1rem 2.5rem;
   background  :      white;
   color: #667eea;
    text-decoration: none;
  border-radius: 50px;
    font-weight: 600;
   transition: all 0.3s ease;
}

.primary-cta-button:hover 
 {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-section {
	   padding: 5rem 20px;
        background :  white;
	}

.contact-section h2 {
    font-size: 2.5rem;
    text-align  :     center;
          margin-bottom: 3rem;
  color: #1a1a2e;
}

.contact-wrapper {
   display:     grid;
   grid-template-columns: 1fr 1fr;
	gap: 3rem;
  max-width   :  1200px;
                    margin   :        0 auto;
}

.contact-form  
  {
  padding: 2.5rem;
     background: #f8f9ff;
  border-radius: 12px;
    border: 1px solid #e0e6ff;
}

.form-group {
   margin-bottom: 1.5rem;
    display :   flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
   margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding   :   0.8rem;
    border: 1px solid #d0d6e8;
    border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
   transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus


{
	 outline: none;
   border-color     :#667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
   padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
   border: none;
    border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
     transition :  all 0.3s ease;
        width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
	
}

.contact-info {
		 display     :  flex;
    flex-direction: column;
   justify-content   :  flex-start;
}

.contact-info h3 {
    font-size: 1.8rem;
	margin-bottom   : 2rem;
   color: #1a1a2e;
}

.info-block {
   margin-bottom: 2.5rem;
}

.info-label {
	         font-weight: 700;
    color: #1a1a2e;
    margin-bottom : 0.5rem;
    font-size: 1.1rem;
     }

.info-block p    {
   line-height: 1.8;
   color: #666;
}

.info-block a {
   color: #667eea;
    text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease; 

}

.info-block a:hover {
    color: #764ba2;
}

.cookies-banner {
  position: fixed;
   bottom: 0;
  left: 0;
   right: 0;
  background: #1a1a2e;
  color: white;
    padding: 1.5rem;
	 display: none;
 flex-direction: column;
	 gap    :1rem;
    align-items: center;
    justify-content: space-between;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
   z-index : 999;
   max-height: 200px;
                    overflow-y: auto;
}

.cookies-banner.show {
   display: flex;
}

.cookies-content {

	   flex: 1;

	    text-align: center;


}

.cookies-content p	{
      line-height: 1.6;
   margin-bottom: 1rem;
}

.cookies-buttons {
    display: flex;
   gap: 1rem;
	 justify-content: center;
   flex-wrap: wrap;
}

.cookies-btn {
	 transition: all 0.3s ease;
          padding   :       0.6rem 1.2rem;
   cursor  :  pointer;
  font-size: 0.9rem;
    border: none;
   font-weight: 600;
	 border-radius: 6px;
}

.cookies-btn.accept
	{
   background: #667eea; 
	  color: white;
}

.cookies-btn.accept:hover {
    background: #764ba2;
}

.cookies-btn.reject {


	 background: transparent;
    color: white;
         border: 1px solid white;
}

.cookies-btn.reject:hover	{
  background: rgba(255, 255, 255, 0.1);}

.cookies-btn.settings {
         background: transparent;
   color: #667eea;
	border: 1px solid #667eea;
}


.cookies-btn.settings:hover  
  {
  background   :     #667eea;
    color: white;
	
}

.gdpr-modal {
		display: none;
    position   :fixed;
  top: 0;
  left: 0;
  right  : 0;
   bottom: 0;
  background: rgba(0, 0, 0, 0.5);
	z-index: 1001;
	 align-items: center;
  justify-content: center;
	 padding: 20px;

}

.gdpr-modal.show {
    display: flex;
}

.gdpr-content {
   background :      white;
	 border-radius: 12px;
          max-width: 500px;
    width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
   overflow: hidden;
}



.gdpr-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :       white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
    align-items: center;
}

.gdpr-header h3 {
     margin: 0;
               font-size: 1.3rem;
	
     }

.gdpr-close    {
  background: none;
   border: none;
  color: white;
  font-size: 1.5rem;
    cursor: pointer;
   transition:        all 0.3s ease;
}

.gdpr-close:hover

{
  transform: scale(1.2);
}

.gdpr-body {
       padding: 2rem;


}  

.gdpr-option {
    margin-bottom: 1.5rem;}


.gdpr-option label  
  {
	 display: flex;
  align-items: center;
               cursor: pointer;
  font-weight: 500;
    color: #1a1a2e;
}

.gdpr-option input[type="checkbox"] {
    width  :  20px;
    height: 20px;
    margin-right: 1rem;
  cursor: pointer;
        accent-color: #667eea;
	}

.gdpr-option input[type="checkbox"]:disabled {
	 cursor: not-allowed;
   opacity: 0.6;
	
	}

.checkbox-label {
		 flex: 1;
  -webkit-flex: 1;
   -ms-flex: 1;
}

.cookie-description {
  margin: 0.5rem 0 0 2.5rem;
  color: #666;
   font-size: 0.9rem;
       line-height: 1.5; 

}

.gdpr-footer {
 padding: 1.5rem 2rem;
               background   :     #f8f9ff;
	 display: flex;
   justify-content: flex-end;
}

.gdpr-save {
  padding: 0.8rem 1.5rem;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
           border: none;
       border-radius: 6px;
             font-weight:        600;
    cursor: pointer;
       transition: all 0.3s ease;
	
}

.gdpr-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);

}

.footer {
  background: #1a1a2e;
    color: white;
    padding: 3rem 20px 1rem;
}

.footer-container {
   max-width  : 1200px;
         margin: 0 auto;
}

.footer-main {
  display   :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
          padding-bottom     :    2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
   display :     flex;
   align-items: flex-start;
}

.footer-logo
	{
    height: 96px;
   width: auto;
  filter: brightness(0) invert(1); 

}

.footer-links {
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 2rem;
}

.footer-col h4 {
	 font-size    : 1.1rem;
    margin-bottom: 1rem;
    color    :  white;
}

.footer-col ul {
   list-style: none; 
	
}

.footer-col li  
  {
               margin-bottom: 0.8rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover   {


    color: #667eea;
     }

.footer-contact h4 {
  font-size: 1.1rem;
 margin-bottom: 1rem;
   color: white; 
	
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact a   {
	font-weight: 600;
   color: #667eea;
  text-decoration: none;
}

.footer-bottom {
  text-align    :center;
  color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
	 padding-top: 1rem;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #16213e;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero {
        flex-direction: column;
        padding: 2rem 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .services-grid,
    .process-steps,
    .programs-container {
        grid-template-columns: 1fr;
    }

    .program-box.featured {
        transform: scale(1);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .webinar-item,
    .webinar-item.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr;
    }

    .webinar-item.reverse > * {
        direction: ltr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cookies-banner {
        padding: 1rem;
        max-height: none;
    }

    .cookies-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookies-btn {
        width: 100%;
    }

    .gdpr-content {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-section h2,
    .services-overview h2,
    .process-section h2,
    .programs-section h2,
    .webinars-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .cta-button,
    .primary-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-image {
        height: 180px;
    }

    .step-number {
        font-size: 2rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 6rem 20px;
  text-align: center;
    color: white;
    position: relative;
  overflow: hidden;
    min-height     :     400px;
   display: flex;
    align-items: center;
    justify-content: center;
	}

.hero-overlay     {
       position: relative;
    z-index: 2;
	 max-width: 900px;
}

.services-hero h1 {
	line-height: 1.2;
    font-size: 3rem;
	margin-bottom: 1rem;
   font-weight    :       700;
}

.services-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.services-detailed {
   padding: 4rem 20px;
       background: white;
}

.service-detail-item {
  max-width: 1200px;
   margin-right: auto;
  margin-left: auto;
    margin-bottom: 5rem;
   display: grid;
  gap: 3rem;
    align-items: center;
    grid-template-columns: 1fr 1fr;
	
}

.service-detail-item.reverse {
  direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-detail-content h2 {
   font-size: 2.2rem;
 color: #1a1a2e;
  margin-bottom: 1.5rem;
    line-height   :        1.3;
}

.service-detail-content > p {
    color: #666;

  font-size: 1.1rem;

   line-height: 1.8;

   margin-bottom: 1.5rem; 

}

.service-detail-content h3 {
   font-size: 1.3rem;
  color: #1a1a2e;
   margin-bottom: 1rem;
	margin-top: 1.5rem;
}

.service-benefits {
   list-style: none;
     margin-bottom     :2rem;
}

.service-benefits li

{
	    padding: 0.8rem 0 0.8rem 2rem;
  color: #555;
    position: relative;
    line-height: 1.6;}

.service-benefits li::before {
  content: '';
    position :    absolute;
  left:     0;
    top: 1.2rem;
               width: 8px;
   height: 8px;
    background: #667eea;
   border-radius: 50%;
}

.service-detail-meta {
  display: flex;
   gap: 1.5rem;
    flex-wrap    :wrap;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
}



.meta-item {


  font-size: 0.95rem;
   color: #667eea;
      font-weight :600;

}

.service-detail-image {
    display: flex;
   align-items: center;
   justify-content:        center;
}

.detail-img {
	 width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.webinars-full {
  padding: 5rem 20px;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.webinars-full h2 {
                    font-size:   2.5rem;
    text-align: center;
  margin-bottom: 1rem;
  color: #1a1a2e;
}


.section-intro {
    text-align: center;
      color: #666;
      font-size:       1.1rem;
       margin-bottom: 3rem;
   	max-width: 700px;
       margin-left: auto;
      margin-right: auto;
}

.webinars-list {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  max-width     :  1200px;
  margin: 0 auto;
}

.webinar-card {
	  background: white;
	padding: 2rem;
    border-radius     :12px;
   border   : 1px solid #e0e6ff;
   position:        relative;
  transition   :       all 0.3s ease;
    display: flex;
    flex-direction: column;
	}


.webinar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
	
}

.webinar-badge     {
	 position: absolute;
	   top: -12px;
	   right: 20px;
	    background:  #667eea;
	                    color  :white;
		 padding: 0.4rem 1rem;
	    border-radius :  20px;
	         font-size: 0.75rem;
		font-weight: 700;
	   text-transform: uppercase;
}

.webinar-badge.premium {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.webinar-card h3 {
  font-size: 1.3rem;
         color: #1a1a2e;
       margin-bottom: 1rem;
      margin-top: 0.5rem;
   line-height: 1.4; 

}

.webinar-card p {
    color :      #666;
   line-height: 1.7;
   flex-grow    :       1;
   margin-bottom: 1.5rem;
}

.webinar-details {
	    display: flex;
	    flex-direction: column;
	  gap: 0.5rem;
	  font-size: 0.9rem;
	   color     :     #888;
	  margin-bottom: 1.5rem;}

.webinar-link {
    display: inline-block;
  padding: 0.8rem 1.5rem;
    background    :        #f0f4ff;
    color: #667eea;
    text-decoration :     none;
  border-radius: 8px;
  text-align: center;
  font-weight     :     600;
   transition: all 0.3s ease;
}

.webinar-link:hover {
  background   : #667eea;
  color :      white;
}

.webinar-link.premium

{
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color     :   white;
	
}

.webinar-link.premium:hover {
    opacity: 0.9;
}

.conferences-section {

	         padding     :5rem 20px;
	               background: white;
}

.conferences-section h2  {
   font-size :        2.5rem;
  text-align: center;
	margin-bottom     :   1rem;
   color: #1a1a2e;
}

.conferences-grid  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
   max-width: 1200px;
	margin: 0 auto;
}

.conference-card {
    background: white;
    border: 2px solid #e0e6ff;
                    padding: 2rem;
  transition     :        all 0.3s ease;
   border-radius  :     12px;
    position: relative;
}

.conference-card:hover {

   border-color  :     #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  transform: translateY(-8px);


}

.conference-card.featured {
   border-color    :  #667eea;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  transform: scale(1.05); 
	

}

.conference-year {
   display: inline-block;
    background: #667eea;
   color: white;
   padding: 0.4rem 1rem;
  border-radius  :     20px;
    font-size: 0.8rem;
    font-weight: 700;
  margin-bottom     :      1rem;
}

.conference-card h3 
 {
    font-size: 1.4rem;
   color: #1a1a2e;
    margin-bottom: 0.8rem;
  line-height   : 1.3;
}

.conference-card p {
	color:#666;
  line-height: 1.7;
  margin-bottom   :       1.5rem;
}

.conference-details {
  background: #f8f9ff;

   padding: 1.5rem;

        border-radius :8px;

  margin-bottom: 1.5rem;
}

.conference-details p {
       margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.95rem;}

.conference-details p:last-child {
  margin-bottom: 0;
}

.conference-details strong {
	 color: #1a1a2e; 
	
}

.conference-cta {
    text-align: center;
    border-radius: 8px;
   display   :       inline-block;
  width: 100%;
   background: #f0f4ff;
  transition: all 0.3s ease;
    font-weight: 600;
   color: #667eea;
   text-decoration     :none;
   padding: 0.8rem 1.5rem;
}

.conference-cta:hover {
               background: #667eea;
  color :  white;
}

.conference-cta.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.conference-cta.featured:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.pricing-section  {
    padding: 5rem 20px;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.pricing-section h2 {


   font-size   :   2.5rem;
       text-align: center;
      margin-bottom  : 1rem;
     color: #1a1a2e;
}

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	 max-width   :1200px;
  margin: 0 auto 3rem;
}

.pricing-card {
    background: white;
	  border: 2px solid #e0e6ff;
		border-radius: 12px;
	  padding   : 2.5rem 2rem;
	          position: relative;
	   transition:  all 0.3s ease;
	  display: flex;
	  flex-direction: column;


}

.pricing-card:hover {
  border-color: #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  transform: translateY(-8px); 

}

.pricing-card.featured     {
   border-color: #667eea;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  transform: scale(1.05);
}

.price-badge {
    position    :absolute;
   top    :        -12px;
	left: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
        padding: 0.5rem 1.5rem;
  border-radius     : 20px;
    font-weight: 600;
     font-size: 0.85rem; 
	
}

.pricing-card h3 {
    font-size: 1.4rem;
  color  :  #1a1a2e;
		 margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.price {
   display: flex;
   align-items: baseline;
   gap: 0.5rem;
  margin-bottom   :1.5rem;
	
}

.amount {
  font-size: 2.5rem;
   font-weight: 700;
	 color: #667eea;
}

.period {


   color: #999;
	 font-size: 0.95rem;}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 2rem;
    list-style: none;
}



.pricing-features li {
   padding: 0.7rem 0;
    color :   #666;
    border-bottom: 1px solid #f0f0f0;
  display: flex;
   align-items: center;
}

.pricing-features li::before {
  content: '';
  width: 6px;
   height: 6px;
   background: #667eea;
   border-radius    :     50%;
   margin-right: 1rem;
                    flex-shrink: 0;

}

.pricing-btn {
    -o-transition: all 0.3s ease;
       padding: 0.9rem 1.5rem;
    background: #f0f4ff;
   color: #667eea;
    text-decoration: none;
    -webkit-border-radius   :    8px;
   border-radius :   8px;
     -moz-border-radius: 8px;
  text-align: center;
   font-weight: 600;
	transition:all 0.3s ease;
    display: inline-block;
}

.pricing-btn:hover {
  background: #667eea;
    color: white; 
	
}

.pricing-btn.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.pricing-btn.featured:hover {
     opacity: 0.9;
  transform: translateY(-2px);
	}

.pricing-note {
 text-align: center;
   color: #888;
       font-size: 0.95rem;
    max-width: 900px;
   margin: 0 auto;
   padding-top: 2rem;
    border-top: 1px solid #e0e6ff;
}

.thank-you-section {
    padding: 4rem 20px;
    background: white;
  min-height: calc(100vh - 400px);
	 display: flex;
    align-items: center;
}

.thank-you-content {
	 max-width: 900px;
   margin: 0 auto;
   text-align: center;
}

.success-icon

{
    margin: 0 auto 2rem;
  height: 120px;
	-moz-animation: scaleIn 0.6s ease-out;
  -webkit-animation: scaleIn 0.6s ease-out;
       animation: scaleIn 0.6s ease-out;
   width: 120px;
     } 

.success-icon svg {
	width: 100%;
    height: 100%;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-section h1 {
   margin-bottom: 1rem;
    font-size: 2.8rem;
   line-height: 1.3;
   color: #1a1a2e;
}

.success-message {
	 font-size: 1.2rem;
  color: #667eea;
    margin-bottom: 3rem;
    font-weight: 500;
}

.thank-you-box {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border: 2px solid #e0e6ff;
  border-radius: 12px;
   padding: 3rem 2rem;
   margin-bottom     : 3rem;
}

.thank-you-box h2 {
	font-size: 1.8rem;
   color: #1a1a2e;
   margin-bottom     :    2rem;
}

.steps-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
   text-align :     left;
}

.step-item {
  display     :    flex;
   gap: 1.5rem;
}

.step-circle {
  width: 50px;
   height: 50px;
   min-width   :        50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
        border-radius: 50%;
  display     :   flex;
    align-items   :    center;
    justify-content: center;
          font-size: 1.3rem;
   font-weight: 700;
}



.step-text h3 {


  font-size : 1.1rem;
    color: #1a1a2e;
		 margin-bottom   :0.5rem;


}

.step-text p {
   color: #666;
  line-height :        1.6;
    font-size: 0.95rem;
}

.thank-you-info {
   background    :    white;
       border: 1px solid #e0e6ff;
	border-radius: 12px;
  padding: 2.5rem;
    margin-bottom: 3rem;
         text-align: left;
}

.thank-you-info h2 {
	  font-size: 1.6rem;
	color    :  #1a1a2e;
   margin-bottom: 1.5rem;
  text-align: center;

}

.thank-you-info p {
    color: #666;
   line-height     :     1.8;
    margin-bottom: 1rem;
   font-size: 1.05rem;
}

.thank-you-info a {
  color: #667eea;
    text-decoration: none;
   font-weight: 600;
}

.thank-you-info a:hover  
  {
   text-decoration :underline;
}

.thank-you-actions {
	display: flex;
      gap: 1.5rem;
    justify-content:      center;
  flex-wrap: wrap;
    margin-bottom: 3rem;
}

.action-button {

	padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
  font-weight:600;
  transition: all 0.3s ease;
	display: inline-block;}

.action-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.action-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.action-button.secondary {
	   background: white;
   border: 2px solid #667eea;
  color: #667eea;


}

.action-button.secondary:hover {
  background: #667eea;
   color: white;
}

.faq-section    {
   max-width: 800px;
         border-radius: 12px;
	 text-align  :    left;
    background: white;
    margin     :   0 auto;
    overflow: hidden;
          border: 1px solid #e0e6ff;
}

.faq-section h2   {
    font-size: 1.8rem;
    color: #1a1a2e;
    padding     :    2rem;
   margin: 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
	 text-align  :  center;
}

.faq-item {
   border-bottom   :  1px solid #e0e6ff;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding:       1.5rem 2rem;
  background: white;
  border: none;
  text-align: left;
    cursor    :       pointer;
  font-size: 1.05rem;
   font-weight: 600;
  color     :        #1a1a2e;
    display: flex;
		 justify-content: space-between;
    align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
   background: #f8f9ff;
}

.faq-question.active {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
   color   :     #667eea;
	
}

.faq-icon


{
   display: inline-block;
					transition: transform 0.3s ease;
    font-size: 1.3rem;
	font-weight: 300;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
	  color    :      #666;
   padding  :    1.5rem 2rem;
    background: #f8f9ff;
  line-height: 1.8;

}

.faq-answer p {
	margin: 0;
} @media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1.1rem;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .service-detail-item.reverse > * {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .service-detail-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .webinar-link,
    .conference-cta,
    .pricing-btn {
        padding: 0.7rem 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thank-you-section {
        min-height: auto;
    }

    .thank-you-section h1 {
        font-size: 2rem;
    }

    .thank-you-box {
        padding: 2rem 1.5rem;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .thank-you-info {
        padding: 1.5rem;
    }

    .thank-you-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .action-button {
        width: 100%;
    }

    .faq-section {
        max-width: 100%;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-answer {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 20px;
        min-height: 300px;
    }

    .services-hero h1 {
        font-size: 1.6rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .webinars-list,
    .conferences-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .conference-card.featured {
        transform: scale(1);
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .thank-you-section h1 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}.policy-section {
	 padding: 80px 2rem;
               background: white;
  min-height: calc(100vh - 300px);


}

.policy-container {
    max-width: 900px;
	margin: 0 auto;
   text-align   :left;
}

.policy-container h1 {
  font-size: 2.8rem;
   color :    #1a1a2e;
   margin-bottom: 2rem;
  font-weight: 700;
                    line-height :      1.2;
}

.policy-container h2 {
    font-size: 1.8rem;
    color    :       #1a1a2e;
   margin-top: 2.5rem;
   margin-bottom: 1.2rem;
  font-weight: 700;
   border-bottom   :     2px solid #667eea;
        padding-bottom: 0.8rem;
	line-height: 1.3;
	
}

.policy-container p {
   color: #666;
  margin-bottom: 1.5rem;
   line-height    :       1.8;
    font-size: 1.05rem;
}

.policy-container p strong {

	  color: #1a1a2e;
    font-weight: 600;
     }

.policy-container p:last-child {
	 margin-bottom :       0;
}

.policy-container h2:first-of-type {
  margin-top: 0;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1.5rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
    }
}