*
	{
   padding: 0;
  margin: 0;
   box-sizing: border-box;
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {

	  font-family: 'Arial', sans-serif;
    line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
   max-width: 1200px;
      margin: 0 auto;
   padding: 0 20px;
}

.mainNav {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
	 top: 0;
               width: 100%;
  z-index: 1000;
}

.nav-wrapper {
   max-width: 1200px;
          margin: 0 auto;
                    display: flex;
   justify-content: space-between;
   align-items :     center;
  padding     :    1rem 20px;
}

.site-logo     {
  height:   45px;
   width :       auto;
}

.desktop-menu {
   display: flex;
   gap: 30px;
}

.nav-link {
  text-decoration :       none;
  color: var(--text-dark);
    font-weight    :       500;
  padding: 8px 16px;
   border-radius: 4px;
   transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active    {
     background: var(--gradient-primary);

	  color: var(--white);


}

.mobile-menu-btn	{
   display  :  none;

	  flex-direction: column;

	  cursor: pointer;

		width: 30px;

	   height: 25px;

	   justify-content: space-between;
}

.mobile-menu-btn span {

	  width: 100%;
    height: 3px;
  background: var(--primary-color);
    transition   : all 0.3s ease;


}

.mobile-menu {
               display: none;
  background: var(--white);
   border-top: 1px solid #eee;
  padding: 20px;
}

.mobile-nav-link {
	 display: block;
    padding: 12px 0;
   text-decoration: none;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0; 
	
} 

.hero-section {
  background: var(--gradient-primary);
   padding: 120px 0 80px;
  margin-top :      80px;
  color: var(--white);
}

.hero-content {
   max-width: 1200px;
   margin: 0 auto;
  display: grid;
	grid-template-columns   :       1fr 1fr;
   gap: 60px;
  align-items    :       center;
  padding: 0 20px;
}  

.hero-text h1 {
  font-size: 3.2em;
   margin-bottom: 20px;
    font-weight: 700;
   line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3em;
       margin-bottom: 30px;
       opacity: 0.9;
     line-height: 1.5;
}

.hero-actions {
    display: flex;
  gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
   padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
  font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #e67e22;
  transform: translateY(-2px);
}

.btn-secondary {
 background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
	  background: var(--white);
  color: var(--primary-color);


}

.hero-image img {
     width: 100%;
    height: auto;
  border-radius  :    12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

}

.features-section {
    padding: 100px 0;
  background: var(--bg-light);
}

.features-section h2 {

		text-align: center;
          font-size: 2.8em;
  margin-bottom: 60px;
  color: var(--primary-color);


}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.feature-card	{
  background: var(--white);

	    padding: 40px 30px;

	  border-radius: 12px;

		 text-align :    center;

	  box-shadow: 0 10px 30px var(--shadow);

	    transition: transform 0.3s ease;
}

.feature-card:hover {


  transform: translateY(-10px);
}  

.feature-card img {


	width: 100%;
	 height: 200px;
	 object-fit: cover;
    border-radius: 8px;
  margin-bottom  :    25px;
     }

.feature-card h3 {
  font-size: 1.6em;
   margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
     color: var(--text-light);
    line-height : 1.6;


	}

.cta-section {
  background: var(--accent-color);
   padding: 80px 0;
    text-align     :center;
  color: var(--white);
}

.cta-content h2 {
 font-size    :    2.5em;
  margin-bottom: 20px;
}

.cta-content p {
   font-size: 1.2em;
  margin-bottom: 40px;
     opacity: 0.9;
        max-width: 600px;
  margin-left : auto;
			margin-right: auto;
}

.btn-cta {
  background: var(--white);
  color: var(--accent-color);
   padding: 18px 40px;
  text-decoration: none;
               border-radius: 6px;
               font-weight  :    700;
  font-size: 1.1em;
    transition:     all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-preview {
    padding: 100px 0;
}

.about-content {
         gap: 60px;
    display: grid;
   align-items: center;
   grid-template-columns: 1fr 1fr;
}

.about-text h2  
  {
   font-size: 2.5em;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.expertise-list {
   list-style: none;
   margin-top: 30px;
}

.expertise-list li {
    padding: 8px 0;

  color: var(--text-dark);

    position: relative;

 padding-left: 25px;
}

.expertise-list li::before {
  content: '✓';
   position: absolute;
    left: 0;
  color: var(--secondary-color);
    font-weight: bold;
}

.about-image img {

                    width:     100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px var(--shadow);

}

.contact-section {

	  background: var(--bg-light);
    padding: 100px 0;}

.contact-section h2 {
  text-align     :        center;
  font-size: 2.8em;
    margin-bottom: 60px;
  color: var(--primary-color);
	
}

.contact-wrapper {
     display: grid;
  grid-template-columns: 2fr 1fr;
    gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
     }

.contact-form {
  background: var(--white);
       padding: 40px;
       border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow);
}

.form-group {

	      margin-bottom: 25px;
}

.form-group label {
  display: block;
   margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding  :   12px 15px;
   border: 2px solid #e9ecef;
  border-radius: 6px;
    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: var(--primary-color);
}

.submit-btn {


  background: var(--gradient-primary);
  color: var(--white);
    padding: 15px 40px;
   border: none;
   border-radius: 6px;
   font-size: 1.1em;
   font-weight: 600;
  cursor: pointer;
               transition: all 0.3s ease;
  width: 100%;}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-info {
  background: var(--white);
   padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow);
   height: fit-content;
}

.contact-info h3 {
   margin-bottom: 30px;
  color: var(--primary-color);
    font-size: 1.5em;
}

.contact-item {
  margin-bottom: 25px; 
  line-height: 1.6;
}

.contact-item strong {
  color: var(--text-dark);
}

.site-footer {
  background: var(--text-dark);
  color: var(--white);
	padding: 60px 0 20px;
}

.footer-content {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   :   40px;
    padding: 0 20px;
}

.footer-logo {

	     height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
	 margin-bottom: 20px;
     }

.footer-section h4 {
   margin-bottom   :    20px;
  color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
       margin-bottom: 10px;


}

.footer-section ul li a {
                    color: #bdc3c7;
    text-decoration: none;
   transition: color 0.3s ease;
	
}

.footer-section ul li a:hover  
  {
  color: var(--white);
}

.footer-bottom {
   max-width: 1200px;
   margin: 40px auto 0;
     text-align: center;
    border-top: 1px solid #444;
   color: #bdc3c7;
   padding: 20px;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2em;
    }
    
    .features-section h2,
    .contact-section h2 {
        font-size: 2.2em;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}.page-header {

  background: linear-gradient(135deg, #2c5aa0 0%, #34495e 100%);
  padding: 140px 0 80px;
    text-align: center;
  color: var(--white);
   margin-top: 80px;
	}

.page-header h1
	{
   font-size: 3em; 
  margin-bottom: 15px; 
  font-weight: 700;
}

.page-subtitle {
   font-size: 1.3em;
    opacity: 0.9;
	max-width: 600px;
  margin :    0 auto;
}

.company-story {
               padding: 100px 0;
}

.story-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
 align-items: center;
}

.story-text h2 {
       font-size: 2.5em;
	margin-bottom: 30px;
  color: var(--primary-color);
}

.story-text p

{
       margin-bottom: 25px;
    line-height: 1.7;
  color: var(--text-light);
}

.story-image img {
   width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px var(--shadow);
}

.values-section {
  background: var(--bg-light);

   padding     : 100px 0; 

}

.values-section h2 {
    text-align: center;
    font-size   :   2.8em;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.values-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-item {
  background: var(--white); 
	    padding: 40px 30px; 
		border-radius: 12px; 
	  box-shadow: 0 10px 30px var(--shadow); 
	   transition: transform 0.3s ease; 
	    position: relative; 
		overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
    left: 0;
    width: 100%;
   height: 4px;
  background: var(--gradient-primary);

}

.value-item:hover {
  transform: translateY(-8px);
}

.value-content h3 {
    font-size: 1.5em;
   margin-bottom    :  15px;
  color: var(--primary-color);
}

.value-content p {
  color: var(--text-light);
  line-height    :    1.6;
}

.expertise-areas {
  padding: 100px 0;
}

.expertise-content {
  align-items: flex-start;
  grid-template-columns: 1fr 1fr;
  display:    grid;
    gap: 60px;
}

.expertise-text h2 {
   font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.expertise-list-advanced {
    display: flex;
   flex-direction: column;
   gap    :     30px;
}

.expertise-category h4
{
  font-size: 1.3em;
   margin-bottom: 15px;
  color: var(--text-dark);
  border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 8px;
}

.expertise-category ul	{
   list-style: none;
}

.expertise-category ul li {
 padding: 8px 0;
  color: var(--text-light);
  position: relative;
   padding-left: 25px;
}

.expertise-category ul li::before {
  content: "•";
  position: absolute;
   left    :       0;
  color: var(--primary-color);
  font-weight   :      bold;
  font-size: 1.2em;
}

.methodology-section {
  background: var(--bg-light);
    padding: 100px 0;
}

.methodology-section h2
	{

	    text-align: center;
        font-size: 2.8em;
    margin-bottom: 60px;
  color: var(--primary-color);
	}

.methodology-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 40px;
}

.method-step {
  background: var(--white);
   padding: 40px 30px;
   border-radius: 12px;
    text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
    position: relative;
}

.step-number {
  background: var(--gradient-primary);
  color: var(--white);
 width: 60px;
    height: 60px;
   border-radius: 50%;
  display: flex;
               align-items: center;
    justify-content:      center;
    font-size: 1.5em;
  font-weight: bold;
    margin     :     0 auto 20px;
}

.method-step h3 {
    font-size    :     1.4em; 
    margin-bottom    :      15px; 
  color: var(--primary-color);
}

.method-step p {

	  color: var(--text-light);
    line-height: 1.6;

}

.achievements-section  {
    padding: 100px 0;
}

.achievements-section h2 {
                    text-align: center;
  font-size: 2.8em;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.achievements-content {
  display: grid;
  grid-template-columns:   1fr 1fr;
   gap: 60px;
    align-items: center;
}

.achievement-text p {
   margin-bottom: 25px;
  line-height: 1.7;
  color: var(--text-light);
}

.stats-grid {
  display:  grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
    padding:    20px;
  background: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
        font-size: 2.5em;
   font-weight: bold;
  color: var(--primary-color);
        margin-bottom     :       5px; 
	
}

.stat-label {
  color: var(--text-light);
	font-size: 0.9em;
}

.programs-overview {

  background: var(--bg-light);
	padding: 100px 0;


}

.programs-overview h2 {
   text-align: center;
    font-size: 2.8em;
  margin-bottom: 60px;
  color: var(--primary-color);
	
}

.programs-grid {
 display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
	  gap: 40px;
}

.program-card {
  background: var(--white);
   border-radius     :    12px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
                    transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-card img {
    width   :      100%;
   object-fit: cover;
	 height: 200px;


}

.program-content {
   padding: 30px;
}

.program-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
  color: var(--primary-color);
}

.program-content p {

  color: var(--text-light);
    line-height: 1.6;
   margin-bottom: 20px;
     }

.program-features		{
  display: flex;
   gap: 10px;
  flex-wrap: wrap;
}

.program-features span {
  background: var(--gradient-primary);
  color: var(--white);
	 padding :    5px 12px;
    border-radius: 15px;
  font-size: 0.85em;
}

.thankyou-container {
  min-height: calc(100vh - 160px);
  padding: 120px 20px 60px;
   max-width: 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns     :  2fr 1fr;
   gap: 60px;
	align-items: start;
}

.thankyou-content {

    text-align: center;
}

.success-icon {
   margin-bottom: 40px;
}

.checkmark-circle {
          width: 80px;
   height: 80px;
    border-radius: 50%;
  background: var(--gradient-primary);
  margin: 0 auto;
   display  :    flex;
   align-items: center;
  justify-content   : center;
   position: relative;
			animation: successPulse 2s infinite;
}

.checkmark {
    width    :        25px;
   height: 15px;
  border: 4px solid var(--white);
    border-top: none;
                    border-right: none;
  transform: rotate(-45deg);
    margin-top: -5px;
	
}@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-content h1 {
	font-size: 2.8em;
    margin-bottom: 30px;
  color: var(--primary-color);
}


.main-message {
    font-size: 1.3em;
  margin-bottom: 50px;
  color: var(--text-light);
  line-height: 1.6;
}

.next-steps {
   text-align: left;
  margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
  color: var(--primary-color);
   text-align: center;
}

.steps-list {
  flex-direction: column;
    display: flex;
  gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
      align-items: flex-start;
}

.step-number {

  background: var(--gradient-primary);
  color: var(--white);
   width: 40px;
   height: 40px;
  border-radius :      50%;
         display: flex;
    align-items: center;
   justify-content     :   center;
    font-weight: bold;
  flex-shrink: 0;
     }

.step-content h3 {
  font-size: 1.3em;
   margin-bottom: 8px;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-light);
    line-height: 1.6;
}

.additional-info {
  background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
                    margin-bottom  :40px;
  text-align: left;

}  

.additional-info h2 {
  font-size: 1.8em;
      margin-bottom: 15px;
  color: var(--primary-color);
}

.additional-info p {
  color: var(--text-light);
  line-height: 1.6;
}

.action-buttons {
    display: flex;
   	gap: 20px;
      justify-content     :   center;
       margin-bottom: 50px;
      flex-wrap :      wrap;
}

.contact-reminder {
  background: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.reminder-content h3 {


  font-size: 1.5em;
  margin-bottom  :   15px;
  color: var(--primary-color);


}

.reminder-content p {
  color: var(--text-light);
   margin-bottom: 15px;
}

.phone-number{
    font-size: 1.8em;
  color: var(--accent-color);
   margin: 20px 0;
} 

.availability {
   font-size: 0.9em;
  color: var(--text-light);
}

.thankyou-image img {
   width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px var(--shadow);
}@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5em;
    }
    
    .story-content,
    .expertise-content,
    .achievements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid,
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-content h1 {
        font-size: 2.2em;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
    
    .thankyou-content h1 {
        font-size: 1.8em;
    }
    
    .main-message {
        font-size: 1.1em;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}.cookies-privacy-section {
    padding: 80px 0;
  background: var(--bg-light);
}

.cookies-privacy-content {
    max-width: 800px;
      text-align: center;
    margin: 0 auto;
}

.cookies-privacy-content h2 {
  font-size   :      2.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.cookies-privacy-content p
	{
  color: var(--text-light);
	line-height: 1.7;
  margin-bottom: 20px;
}