*


{
  margin: 0;
    padding: 0;
	 box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	   line-height: 1.6;
	  color: #2c3e50;
	  background-color: #fafbfc;
}

.main-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: fixed;
  top: 0;
     width :  100%;
   z-index :      1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);


}

.nav-container {
   max-width: 1200px;

   margin: 0 auto;

   padding :       1rem 2rem;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.nav-brand .brand-logo {

  height: 45px;
  width: auto;
}

.nav-links {
	   display: flex;
    list-style: none;
    gap : 2rem;}

.nav-links a {
   text-decoration: none;
    transition: color 0.3s ease;
    color: white;
  font-weight: 500;
}

.nav-links a:hover {
  color     :       #f39c12;
}

.burger-menu {
    display: none;
   flex-direction: column;
  cursor: pointer;
}

.burger-menu span {
	 width: 25px;
    height: 3px;
    background: white;
	 margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
			color: white;
}

.hero-content {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
      grid-template-columns: 1fr 1fr;
   gap: 4rem;
      align-items: center;
}

.hero-text h1 {
   margin-bottom: 1.5rem;
 font-weight: 700;
   font-size: 3.2rem;
  line-height: 1.2;
}

.hero-text p {
	font-size :        1.2rem;
  margin-bottom: 2rem;
    opacity:    0.9;
	
}

.hero-buttons {
   display   :      flex; 
	  gap: 1rem;
}

.btn-primary, .btn-secondary		{
    -moz-border-radius    :  8px;
  padding: 12px 24px;
    -moz-transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
  -webkit-transition: all 0.3s ease;
    border-radius   :        8px;
   transition: all 0.3s ease;
}

.btn-primary {
	  background: #e74c3c;

	    color     :    white;

}

.btn-primary:hover {
    background: #c0392b;
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px); 
	
}

.btn-secondary {
    background: transparent;
   color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
 background: white;

  color: #667eea;
}

.hero-image img {
    width: 100%;
  height: auto;
    border-radius:        15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.services-overview {
    padding: 80px 2rem;
  background  :       white;
}

.container {
   max-width: 1200px;
  margin: 0 auto; 
	
}

.services-overview h2 
 {

	  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color   :       #2c3e50;
}

.services-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap   :      2.5rem;
}

.service-card {
   background: #ffffff;
  border-radius: 12px;
   padding    :   2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
   height: 200px;
   object-fit: cover;
  border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
   margin-bottom: 1rem;
   color: #667eea;
}

.service-card p {
   color: #7f8c8d;
  line-height: 1.6;
}

.cta-section {


   padding: 80px 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color  :    white;
  text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
    max-width :  800px;
  margin: 0 auto 2rem;
    opacity: 0.9;
}

.btn-cta {
    color: white;
  background: #e74c3c;
   border-radius: 8px;
   font-weight: 600;
                    font-size: 1.1rem;
	 padding: 15px 30px;
    transition: all 0.3s ease;
    text-decoration: none;
   display: inline-block;
}

.btn-cta:hover {
	 background: #c0392b;

	  transform: translateY(-3px);

	  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.programs-section {
    padding: 80px 2rem;
	 background: #f8f9fa;
	
}

.programs-section h2 {
  text-align: center;
  font-size: 2.8rem;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.programs-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.program-info h3
{
   font-size: 2rem;
    margin-bottom: 1.5rem;
  color  :#667eea;
}

.program-info p {
    margin-bottom  :        2rem; 
	   color: #7f8c8d; 
	   line-height: 1.7;
}

.program-info ul {
	list-style: none;
}

.program-info li {
	padding: 0.5rem 0;
   padding-left: 1.5rem;
   position: relative;
   color: #2c3e50;
}

.program-info li:before {


  content: "✓";
   position: absolute;
   left    :0;
   color: #27ae60;
	font-weight: bold; 

	}

.program-image img {

	  width: 100%;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);}

.webinar-section {
  padding: 80px 2rem;
   background: white;
}

.webinar-section h2 
 {

  text-align: center;
    font-size: 2.8rem;
   margin-bottom: 1.5rem;
  color: #2c3e50;
	}

.webinar-section > p  {
  text-align: center;
   max-width: 800px;
  margin: 0 auto 3rem;
                    color: #7f8c8d;
  font-size: 1.1rem;
    line-height: 1.7;
}


.webinar-features {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;


}

.feature-item {
	 text-align: center;
    padding: 2rem;
}



.feature-item h4 {
   font-size: 1.4rem;
	    margin-bottom: 1rem;
	    color: #667eea;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6; 
	
}

.contact-section
{
       padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.contact-section h2 {
  text-align: center;
	font-size: 2.8rem;
   margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
   gap: 4rem;
    align-items: start; 
	
}

.contact-form {
  background: white;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
	margin-bottom    :     1.5rem;
}

.form-group label {
   display: block;
   margin-bottom: 0.5rem;
  color: #2c3e50;
	font-weight    :      500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
   padding: 12px;
	border: 2px solid #ecf0f1;
   border-radius: 6px;
   font-size: 1rem;
	 transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus  
  {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
   background: #667eea;
  color   :    white;
   padding: 12px 30px;
  border: none;
	 border-radius: 6px;
   font-size: 1.1rem;
  font-weight: 600;
   cursor: pointer;
  transition: background 0.3s ease;
   width: 100%;
}

.btn-submit:hover		{

	    background: #5a6fd8;
     }

.contact-info h3 {
  font-size  :    1.8rem;
  margin-bottom   :     2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    font-size: 1.2rem;
   margin-bottom: 0.5rem;
   color: #f39c12;
}  

.info-item p {
    opacity: 0.9;
  line-height: 1.6;
}

.site-footer {
    background: #2c3e50;
  color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content{
         max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
   margin-bottom: 2rem;
}

.footer-brand .footer-logo {
     height: 40px;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
     }

.footer-brand p {
   opacity: 0.8;
   line-height: 1.6;
}

.link-group h4 {
      margin-bottom: 1rem;
   color: #f39c12;
	
}

.link-group ul {
  list-style   :  none;
}

.link-group li {
  margin-bottom: 0.5rem;
}

.link-group a {

	    color: white; 
	text-decoration: none; 
   opacity: 0.8; 
          transition: opacity 0.3s ease;
     }



.link-group a:hover {
   opacity: 1;
   color: #f39c12;
}

.footer-contact h4 {
  margin-bottom: 1rem;
    color: #f39c12;
}

.footer-contact p {
    opacity: 0.8;
   line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top     :       1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
  opacity: 0.7;
}@media screen and (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #667eea;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .programs-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
}.cookies-section, .privacy-section {
    padding     : 80px 2rem;
  background: white;
}

.cookies-section h2, .privacy-section h2

{

 text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
   color: #2c3e50;
     }

.cookies-section p, .privacy-section p {
      max-width: 800px;
   margin: 0 auto 1.5rem;
  color: #7f8c8d;
    font-size  :     1.1rem;
    line-height    :     1.7;
}

.cookies-section h3, .privacy-section h3 {
       margin: 2rem 0 1rem;
  color: #667eea;
      font-size: 1.8rem; 
	

}

.cookies-section ul, .privacy-section ul {
  max-width: 800px;
   margin  :        0 auto;
   list-style  :     none;
    padding-left: 1.5rem;
}

.cookies-section li, .privacy-section li     {
    position: relative;
   margin-bottom: 0.5rem;
	color: #2c3e50;
}

.cookies-section li:before, .privacy-section li:before {
  content: "✓";
    position     :     absolute;
   left: -1.5rem;
 color: #27ae60;
   font-weight :       bold;
}