* {
    margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
        color: #333;
    background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin:0 auto;
   padding: 0 20px;
}

.primary-navigation


{
       background    :      #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
  width: 100%;
  top: 0;
	z-index:   1000;
     }

.nav-wrapper {
    max-width   :    1200px;
	margin: 0 auto;
   padding: 0 20px;
   display  :  flex;
 justify-content: space-between;
  align-items:       center;
  height :      70px;
}

.brand-section{
   flex-shrink: 0;
}

.brand-logo {
    height: 45px;
    width: auto;
}

.nav-menu {
   display: flex;
	gap: 30px;
}

.nav-item {

	  text-decoration     :   none;
  color: #333;
  font-weight  :       500;
  padding: 10px 0;
    transition: color 0.3s ease;

}

.nav-item:hover {
   color: #2c5aa0;
}

.mobile-toggle {
  display: none;
   flex-direction    : column;
  background: none;
    border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
   width: 25px;
  height: 3px;
  background: #333;
         margin: 3px 0;
  transition  :   0.3s;
}

.mobile-toggle.active span:nth-child(1) {
	  transform: rotate(-45deg) translate(-5px, 6px);}

.mobile-toggle.active span:nth-child(2){
   opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}



.hero-section {
   margin-top: 70px;
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;

}

.hero-section .container {
       display: grid;
		 grid-template-columns: 1fr 1fr;
   gap: 40px;
      align-items: center;


}

.hero-content h1 {
	    font-size: 3rem;
     margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
	}

.hero-subtitle {
   opacity: 0.9;
  margin-bottom: 30px;
    font-size: 1.2rem;
}

.hero-actions {
  display: flex;
   gap: 20px;
  flex-wrap: wrap; 
	
}

.primary-btn, .secondary-btn {
   padding: 15px 30px;
   border-radius: 50px;
  text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn {
    background: #fff;
    color : #667eea;
}

.primary-btn:hover
{


  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	}

.secondary-btn {
	 background: transparent;
   color: white;
  border:      2px solid white;
}

.secondary-btn:hover {
    background: white;
      color: #667eea;
}

.hero-visual img {
	  width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);

} 

.expertise-overview {
  padding: 100px 0;
   background: #fff;
}

.expertise-overview h2 {
   text-align: center;
   font-size  :     2.5rem;
  margin-bottom: 60px;
	color: #2c3e50;
}

.expertise-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;

}

.expertise-card {
   background: #f8f9fa;
  padding: 40px;
	 border-radius: 20px;
    text-align    :center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
  transform: translateY(30px);
}

.expertise-card.animate-in {
  opacity :  1;
  transform: translateY(0);
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); 

}

.expertise-card img {
    width: 100%;
        max-width: 300px;
	height: 200px;
 object-fit: cover;
	 border-radius: 15px;
   margin-bottom: 25px;
}

.expertise-card h3     {
   font-size: 1.5rem;
    margin-bottom: 15px;
  color: #2c5aa0;
}

.expertise-card p {
   color: #666;
	 line-height: 1.7;
}

.training-programs {
    padding: 100px 0;
  background: #f8f9fa;
}

.program-intro


{
	margin-bottom     :     80px;
   text-align: center;
}

.program-intro h2 {
   font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.program-intro p {
  font-size: 1.2rem;
    color: #666;
	max-width: 600px;
   margin: 0 auto;
}

.programs-layout {
  display: grid;

	  grid-template-columns: 1fr 1fr;

	  gap    :        60px;

	  align-items :center;
}

.program-item {
    background: white;
       padding :40px;
    border-radius: 15px;
    margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  opacity  :     0;
  transform: translateX(-30px);
}

.program-item.animate-in {
   opacity  :        1;
  transform: translateX(0);
}

.program-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
    color: #2c5aa0;

}

.program-item p {
   margin-bottom: 20px;
    color: #666;
}

.program-item ul {
    list-style: none;
   padding-left: 0;
}

.program-item li {
       padding: 8px 0;
  padding-left: 25px;
   position: relative;
   color: #555;
}

.program-item li::before {
  content: "✓";
       position   :      absolute;
   left: 0;
   color: #27ae60;
   font-weight: bold;
}

.program-visual img {
    width: 100%;
	border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cta-section {

	    padding: 100px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
	color: white;
    text-align: center;
}

.cta-content {
   max-width: 800px;
         margin: 0 auto;
  opacity   : 0;
  transform: translateY(30px);
}

.cta-content.animate-in {
    opacity    : 1;
  transform: translateY(0);
}

.cta-content h2 {
  font-size: 2.5rem;
	margin-bottom: 25px;
  font-weight: 700;
}  

.cta-content p {

  font-size: 1.2rem;
  margin-bottom: 40px;
    opacity : 0.9;
    line-height: 1.7;

}

.cta-button {
   display: inline-block;
  background: #fff;
    color: #2c5aa0;
    padding     :      18px 40px;
  border-radius: 50px;
   text-decoration: none;
    font-weight: 700;
     font-size    :1.1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {

  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);


}

.contact-section {

  padding: 100px 0;
  background: #fff;
     }

.contact-section h2 {
   text-align: center;
    font-size: 2.5rem;
  margin-bottom: 60px;
   color   :    #2c3e50;
}

.contact-layout {
    display: grid;
   grid-template-columns: 1fr 2fr;
    gap: 60px; 

}

.contact-info h3 {
  font-size: 1.5rem;
    margin-bottom: 30px;
  color: #2c5aa0;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
       display: block;
               margin-bottom: 8px;
    color: #333;
}

.contact-item p {
    margin :     0;
         color: #666;
}

.contact-form {
	   background: #f8f9fa;
    padding: 40px;
  border-radius :        15px;


} 

.form-group 
 {
    margin-bottom  :     25px;
}

.form-group label {
   display: block;
   margin-bottom: 8px;
  font-weight: 600;
   color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 15px;
   border: 2px solid #e1e8ed;
  border-radius     :     8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
	border-color: #2c5aa0;
}

.submit-btn {

    background: #2c5aa0;
   color: white;
    padding: 15px 40px;
     border    :        none;
   border-radius: 50px;
    font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
      transition :      all 0.3s ease; 

}

.submit-btn:hover {
	   background: #1e3c72;
  transform: translateY(-2px);}

.site-footer {
   background: #2c3e50;
   color: white;
    padding: 60px 0 20px;
}

.footer-content {

	    display :grid;

	  grid-template-columns  :  2fr 1fr 1fr 1fr;

	  gap: 40px;

	   margin-bottom: 40px;
	}

.footer-brand p    {

    margin-top: 20px;
   color: #bdc3c7;
   line-height    :       1.6;
	}

.footer-logo {
   height   : 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    margin-bottom: 20px;
   color   :      #ecf0f1;
}

.footer-links ul,
.footer-legal ul {
   list-style: none;
}

.footer-links li,
.footer-legal li {


	margin-bottom: 10px;

}

.footer-links a,
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
	 color: #3498db;
}

.footer-contact p    {
    color: #bdc3c7;
    margin-bottom: 10px;
     }

.footer-bottom {
        text-align:    center;
	   padding-top: 30px;
	    border-top: 1px solid #34495e;
	    color: #95a5a6;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        font-size: 1.2rem;
        margin: 10px 0;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .programs-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .expertise-overview h2,
    .program-intro h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .primary-btn,
    .secondary-btn,
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .expertise-card,
    .program-item,
    .contact-form {
        padding: 25px;
    }
}.nav-item.active {
   font-weight: 600;
   color  : #2c5aa0;
}

.about-hero {
	margin-top: 70px;
	padding: 80px 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
 text-align: center;
}

.about-hero-content h1 {
   font-size: 3rem;
	margin-bottom: 25px;
     font-weight: 700;
}

.about-lead {
  font-size     :  1.3rem;
  max-width: 800px;
    margin  :  0 auto;
   line-height: 1.7;
   opacity: 0.95;
}

.mission-section {
  padding: 100px 0;
	  background  :       #fff;
}

.mission-layout  
  {
    display: grid;
   grid-template-columns :       1fr 1fr;
    gap: 60px;
    align-items :       center; 
	
	}

.mission-content h2 {
	 font-size: 2.5rem;
  margin-bottom: 30px;
  color  :        #2c3e50;}

.mission-content p {
    line-height: 1.8;
   margin-bottom: 20px;
	font-size: 1.1rem;
	 color    :     #555;
}

.mission-visual img {
   	width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	}

.values-section {
   padding: 100px 0;
   background: #f8f9fa;
}

.values-section h2 {
   text-align     :        center;
  font-size: 2.5rem;
     margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap :  40px;


}

.value-item {
   background: white;
    padding: 40px 30px;
   border-radius: 15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-item:hover {


  transform: translateY(-5px);
     }

.value-item h3     {
   font-size: 1.4rem;

               margin-bottom: 20px;

  color: #2c5aa0;
}

.value-item p {
    color: #666;
  line-height: 1.6;
}

.expertise-details {
		 padding: 100px 0;
   background: white;
}

.expertise-details h2 {
  text-align    :      center;
   font-size: 2.5rem;
    margin-bottom: 60px;
   color: #2c3e50;
}

.expertise-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
   gap: 60px;
	align-items: start;
}

.expertise-block {
	margin-bottom  :    40px;
  padding-bottom: 40px;
        border-bottom: 1px solid #eee;
}

.expertise-block:last-child {
   border-bottom: none;
   margin-bottom: 0;
  padding-bottom: 0;
}

.expertise-block h3    {
	font-size: 1.5rem;
    margin-bottom: 15px;
   color: #2c5aa0;
}

.expertise-block p {

	color: #555;
     line-height: 1.7;
       font-size: 1.05rem;
     }



.expertise-images {
  display: flex;
   flex-direction: column;
    gap: 20px;
}

.expertise-img
{
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.approach-section {
  padding: 100px 0;
   background   :        #f8f9fa;
}

.approach-content {
	    display: grid;
       grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
     }

.approach-content h2 {
   font-size : 2.5rem;
   margin-bottom: 30px;
   color: #2c3e50;
    grid-column     :1 / -1;
   text-align: center;
}

.approach-content > p {
  grid-column: 1 / -1;
  font-size: 1.2rem;
	text-align: center;
          color: #555;
    margin-bottom: 50px;
   max-width: 800px;
  margin-left   :  auto;
  margin-right: auto;
}

.approach-steps {
  grid-column: 1;
}

.approach-visual {
    grid-column: 2;
}

.step-item {
    display: flex;
         margin-bottom: 35px;
  gap  :      20px;
   align-items: flex-start;
}

.step-number {
	background:      #2c5aa0;
   color: white;
  width: 50px;
   height: 50px;
  border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
    font-weight: bold;
	 font-size: 1.2rem;
       flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.step-content p {

   color: #666;
   line-height: 1.6;

     }

.approach-visual img {
  width    :     100%; 
    border-radius: 15px; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.why-choose-section {
  padding: 100px 0;
    background   :      white;
}

.why-choose-section h2 {
  text-align: center;

  font-size     :   2.5rem;

    margin-bottom: 60px;

	 color: #2c3e50;
}

.why-choose-grid {
    display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
}

.choose-item {
   text-align     :       center;
   padding: 30px 20px;
}

.choose-item h3 {
         font-size: 1.4rem;
  margin-bottom: 15px;
    color     :      #2c5aa0;
}

.choose-item p {
  color: #666;
  line-height: 1.6;
}

.thankyou-section {
    margin-top: 70px;
   padding: 80px 0;
    background: #f8f9fa;
  min-height: calc(100vh - 70px);
}

.thankyou-content  {
                    max-width: 900px;
   margin: 0 auto;
}

.success-message {
					text-align: center;
  margin-bottom: 60px;
   padding:    50px;
    background: white;
   border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.success-message h1 {
  font-size: 3rem;
   color: #27ae60;
  margin-bottom: 20px;
  font-weight: 700;
}

.success-subtitle {
    font-size: 1.3rem;
	color:        #555;
    margin: 0;
}

.confirmation-details {
       margin-bottom: 60px;


}

.confirmation-card {
   background: white;
	padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.confirmation-card h2 {
   text-align: center;
   color: #2c3e50;
   margin-bottom: 40px;
  font-size: 2rem;
}

.next-steps {
	display: grid;
    gap: 30px;
}

.step-info {
	  padding: 25px;
    border-left: 4px solid #2c5aa0;
  background: #f8f9fa;
  border-radius: 0 10px 10px 0;
	}

.step-info h3


{
  font-size: 1.3rem;
   margin-bottom: 12px;
  color: #2c5aa0; 
	
}

.step-info p {
  color: #555;
    line-height: 1.6;
   margin: 0;
}

.additional-info {
    margin-bottom: 50px;
}

.additional-info h2  
  {
    font-size: 2rem;
  margin-bottom: 40px;
  color: #2c3e50;
	 text-align: center;
}

.info-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-item {
       background: white;
  padding: 30px;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.info-item h3		{
  font-size: 1.3rem;
    margin-bottom: 15px;
  color: #2c5aa0;
}

.info-item p {
  color: #666;
	line-height: 1.6;
   margin-bottom: 15px;
}

.info-link {
  color    :    #2c5aa0;
    text-decoration : none;
               font-weight: 600;
  transition: color 0.3s ease;
}

.info-link:hover {

  color: #1e3c72;



}

.return-actions {
   text-align: center;

	   padding: 40px;

	  background: white;

	    border-radius: 15px;

	  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.return-actions .primary-btn,
.return-actions .secondary-btn {
  margin: 10px;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .mission-layout,
    .expertise-layout,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-content > p {
        grid-column: 1;
    }

    .approach-steps {
        grid-column: 1;
    }

    .approach-visual {
        grid-column: 1;
    }

    .values-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .expertise-images {
        grid-row: 1;
    }

    .success-message {
        padding: 30px 20px;
    }

    .success-message h1 {
        font-size: 2.2rem;
    }

    .confirmation-card {
        padding: 30px 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .return-actions {
        padding: 30px 20px;
    }

    .return-actions .primary-btn,
    .return-actions .secondary-btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .mission-content h2,
    .values-section h2,
    .expertise-details h2,
    .approach-content h2,
    .why-choose-section h2 {
        font-size: 2rem;
    }

    .success-message h1 {
        font-size: 1.8rem;
    }

    .value-item,
    .info-item,
    .confirmation-card {
        padding: 25px 20px;
    }
}.cookies-policy, .privacy-policy     {


       padding:    100px 0;
   background   :      #fff;
}

.cookies-policy h1, .privacy-policy h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
	color    :       #2c3e50;
}

.cookies-policy h2, .privacy-policy h2 {
  font-size: 1.8rem;
  margin: 30px 0 20px;
  color: #2c5aa0;
}

.cookies-policy p, .privacy-policy p {
   color     :   #666;
	 line-height: 1.7;
}

.cookies-policy ul, .privacy-policy ul {
        list-style  : none;
    padding-left: 20px;
}

.cookies-policy li, .privacy-policy li {
  position: relative;
  color: #555;
   padding     : 8px 0;
}

.cookies-policy li::before, .privacy-policy li::before {
  font-weight: bold;
  content: "✓";
    color: #27ae60;
    position: absolute;
  left: 0;
} 