* {
  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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.nav-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
 top: 0;
         width:100%;
    z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navigation-container {
  max-width: 1200px;
  margin: 0 auto;
   display: flex;
    justify-content: space-between;
  align-items: center;
  padding :       1rem 2rem;
}

.brand-section .logo-img {
               height: 45px;
   width   : auto;
	
}

.nav-links {
	display: flex;
    gap: 2rem;
}

.nav-links a {

   text-decoration    :   none;
          color: #333;
    font-weight :       500;
	 transition: color 0.3s ease;
  position: relative;
	}



.nav-links a:hover {
    color: #667eea;
}

.nav-links a:after {
  content: '';
   position: absolute;
   width: 0;
                    height: 2px;
  bottom: -5px;
    left: 0;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%; 

}

.burger-icon {
    display: none;
   flex-direction    :     column;
   cursor    :  pointer;
   gap: 4px;
}

.burger-icon span {
     height: 3px;
          transition: 0.3s;
	 width    :    25px;
   background: #333;
}  

.burger-icon.active span:nth-child(1)	{
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-icon.active span:nth-child(2) {
     opacity : 0;
     }

.burger-icon.active span:nth-child(3)		{
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
   align-items: center;
   padding: 120px 2rem 60px;
  overflow: hidden;
}


.hero-content {
   max-width: 1200px;
   grid-template-columns: 1fr 1fr;
     gap: 4rem;
  align-items: center;
   margin: 0 auto;
  display    :      grid;
}

.hero-content h1{
   font-size:     3.5rem;
    font-weight: 700;
   color: white;
         margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
  display: flex;
   gap  :        1.5rem;
		 flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
   padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
	font-size: 1.1rem;
}

.primary-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}



.primary-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.secondary-btn {
  background: transparent;
  color     :        white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-visual img {
   width: 100%; 
   height: auto; 
  border-radius: 20px; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); 
    transition: transform 0.3s ease;
}

.hero-visual img:hover {
  transform: scale(1.05); 

}

.features-area {
    padding: 100px 2rem;
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.content-container


{
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.content-container h2 {
   font-size: 2.8rem;
    color: #333;
   margin-bottom  :        3rem;
  font-weight: 700;
}

.features-grid {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;
    margin-top: 3rem;


}

.feature-card {
  background   :        white;
  border-radius: 20px;
   padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
    text-align: left;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15); 

}

.feature-card img {
   width: 100%;
    height: 200px;
    object-fit: cover;
   border-radius: 15px;
   margin-bottom: 1.5rem;
}



.feature-card h3 {
  font-size  :      1.5rem;
      color: #333;
       margin-bottom: 1rem;
      font-weight: 600;
}

.feature-card p	{
    color    :  #666;
    line-height: 1.7;
  font-size:        1rem;
}

.training-showcase     {
    padding: 100px 2rem;
  background: linear-gradient(135deg, #2c3e50, #3498db);
}

.showcase-container {
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-text h2{
     font-size: 2.5rem;
   color   : white;
      margin-bottom: 1.5rem;
 font-weight: 700;
}

.showcase-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
   margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
       padding: 0;
}



.benefits-list li{
  color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
         padding-left: 2rem;
   font-size: 1rem;
}

.benefits-list li:before {
  content: '✓';
   position: absolute;
  left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem; 
	
}

.showcase-image img {
  width:  100%;
  height     :   auto;
	border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-section  {
  background: linear-gradient(135deg, #ff6b6b, #ffd93d); 
	    padding: 80px 2rem; 
	  text-align: center;


}  

.cta-content h2 {
  font-size: 2.5rem;
   color: white;
   margin-bottom: 1rem;
  font-weight: 700;
}

.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;
}

.cta-button {
	display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
    font-weight: 600;
    font-size:    1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease; 

}

.cta-button:hover {
	  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);


}

.contact-section {

	    padding: 100px 2rem;
  background: linear-gradient(45deg, #f8f9fa, #ffffff);
     }

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: start;
}

.contact-info h2 {
       font-size: 2.5rem;
  color: #333;
	margin-bottom: 1rem;
               font-weight: 700;
}

.contact-info p {

	       color: #666;
   font-size: 1.1rem;
   margin-bottom: 2rem;
  line-height: 1.6;
	}

.contact-details {
  display: flex;
   flex-direction: column;
 gap: 1.5rem;


} 

.contact-item strong {
  color: #333;
    font-size: 1.1rem;
  display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
   color: #666;
    margin: 0;
  font-size:      1rem;
} 

.contact-form {

  background: white;
   padding: 2.5rem;
       border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
	   display:block;
  margin-bottom: 0.5rem;
   color: #333;
  font-weight: 500;
    font-size: 1rem;
	}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 12px 15px;
   border: 2px solid #e9ecef;
    border-radius    : 10px;
   font-size: 1rem;
	transition: border-color 0.3s ease;
  font-family: inherit;
}

.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);
}

.form-group textarea {
   resize:   vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
               color: white;
	 border: none;
	padding: 15px 30px;
	border-radius: 50px;
  font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
		 width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.footer-section {
  background     :        #1a1a1a;
   color  :      white;
   padding     :    60px 2rem 20px;
}


.footer-content {

    max-width: 1200px;
  margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;}

.footer-logo {
               height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
} 

.footer-info {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

}

.footer-column h4 {
  color: white;

    margin-bottom: 1rem;

  font-size: 1.1rem;

   font-weight:      600;
}

.footer-column ul {
                    list-style: none;
}

.footer-column ul li {
   margin-bottom: 0.5rem;
}

.footer-column ul li a {
               font-size: 0.95rem;
  text-decoration: none;
    color     :#ccc;
   transition: color 0.3s ease;
}

.footer-column ul li a:hover {
	color: #667eea;
}



.footer-column p {
   color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
   margin: 0;
}

.footer-bottom	{
      border-top: 1px solid #333;
    padding-top: 1.5rem;
   text-align: center;
     }

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}@media (max-width: 768px) {
    .burger-icon {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.mobile-active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-container h2 {
        font-size: 2.2rem;
    }
    
    .showcase-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navigation-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 100px 1rem 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .features-area,
    .training-showcase,
    .contact-section {
        padding: 60px 1rem;
    }
    
    .content-container h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 60px 1rem;
    }
    
    .footer-section {
        padding: 40px 1rem 20px;
    }
}.about-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  min-height: 60vh;
   display: flex;
    align-items: center;
   justify-content: center;
     text-align    :center;
   padding: 120px 2rem 60px;
}

.about-hero-content h1 {
     font-size: 3.2rem;
   color: white;
   margin-bottom: 1.5rem;
         font-weight: 700;
}

.about-hero-subtitle {
  font-size  :     1.3rem;
  color: rgba(255, 255, 255, 0.85);
   max-width: 700px;
  margin: 0 auto;
    line-height: 1.6; 

}

.company-story     {
    padding: 100px 2rem;
  background: linear-gradient(45deg, #f8f9fa, #ffffff);
}

.story-container    {
	   max-width: 1200px;
   margin     :    0 auto;
    display: grid;
    grid-template-columns    :     1fr 1fr;
  gap :       4rem;
   align-items: center;

     }

.story-text h2 {
	font-size: 2.5rem;
       color: #333;
     margin-bottom: 2rem;
      font-weight: 700;
}

.story-text p {
   font-size: 1.1rem;
  color: #666;
    line-height  :        1.8;
    margin-bottom: 1.5rem;
}

.story-visual img {
  width: 100%;
	 height: auto;
               border-radius:    20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.team-approach {
   padding     :100px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.approach-container {
  max-width: 1200px;
    margin: 0 auto;
    text-align: center;
	
}

.approach-container h2 {
   font-size: 2.8rem;
   color: white;
    margin-bottom: 3rem;
  font-weight: 700;
}

.approach-grid {
	display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2.5rem;
  margin-top: 3rem;
}

.approach-item {
  background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left; 
	
}

.approach-item h3 {
    font-size: 1.4rem;
    color: white;
  margin-bottom  :       1rem;
  font-weight: 600;
}

.approach-item p {
  color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size :1rem;
}

.expertise-showcase
{
    padding: 100px 2rem;
  background: linear-gradient(45deg, #ffffff, #f8f9fa);
}

.expertise-content  
  {
    max-width    :   1200px;
   margin     :       0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 4rem;
   align-items: center;
}

.expertise-text h2 {
   font-size: 2.5rem;
	    color: #333;
		margin-bottom    : 2rem;
	      font-weight: 700;
}

.competency-list {

	 display: flex;
  flex-direction: column;
	gap: 1.5rem;


}

.competency-item h4  
  {
   font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
  font-weight: 600;
}

.competency-item p {
  color  :#666;
  line-height: 1.6;
        font-size: 1rem;
}

.expertise-visual img {
       width   :   100%;
   height: auto;
   border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
	
}

.methodology-section {
    padding   :       100px 2rem;
  background: linear-gradient(135deg, #ff6b6b, #ffd93d);
}

.methodology-container {
  max-width: 1200px;
   margin: 0 auto;
    text-align: center;
}

.methodology-container h2 {
    font-size: 2.8rem;
   color: white;
  margin-bottom: 3rem;
  font-weight: 700;
}

.methodology-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
  background: rgba(255, 255, 255, 0.15);
	padding: 2rem;
    border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
   text-align: left;
    position: relative;
	}

.step-number {
  font-size: 3rem;
    font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
    position: absolute;
  top: 1rem;
   right: 1.5rem;
    line-height: 1;
}

.step-item h3 {
  font-size: 1.3rem;
  color: white;
	margin-bottom: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.step-item p {
  color: rgba(255, 255, 255, 0.9);
   line-height: 1.6;
   font-size: 0.95rem;}

.success-stats {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #2c3e50, #3498db);
}

.stats-container {


    max-width: 1200px;
  margin: 0 auto;
   text-align: center;


}

.stats-container h2 {
             font-size: 2.5rem;
   color    :      white;
    margin-bottom: 3rem;
    font-weight: 700;

}


.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; 
	
}

.stat-item {

	   text-align: center;
         padding: 1.5rem; 
}

.stat-number {
    font-size:      3.5rem;
	 font-weight  :   800;
  color: #4CAF50;
   display: block;
                    margin-bottom: 0.5rem; 

}

.stat-label {
   font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
   font-weight: 500;
}

.values-section {
               padding: 100px 2rem;
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.values-container   {
    max-width: 1200px;
   margin :    0 auto;
   text-align: center;
}



.values-container h2 {
   font-size: 2.8rem;
    color: #333;
  margin-bottom:      3rem;
  font-weight: 700;
}

.values-grid {
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

   gap: 2.5rem;

   margin-top: 3rem;
}

.value-card {
	   background: white;
    padding: 2.5rem;
    border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
 text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.value-card h3 {
    font-size: 1.5rem;
    color     :#333;
   margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  color: #666;
		line-height: 1.7;
   font-size: 1rem;
}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 90vh;
    display: flex;
   align-items: center;
    justify-content: center;
    padding: 120px 2rem 60px;
}

.thankyou-container {
    max-width: 1000px;
   margin  :       0 auto;
   text-align: center;
}

.thankyou-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
	padding: 3rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.success-icon {
    margin-bottom: 2rem;
}

.checkmark-circle {
   width: 80px;
  height: 80px;
   border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  margin: 0 auto;
    display: flex;
   align-items: center;
   justify-content: center;
    position    :        relative;
	animation: scaleIn 0.6s ease-out;
}  

.checkmark {

  width: 24px;
    height: 12px;
   border-left: 3px solid white;
    border-bottom: 3px solid white;
  transform: rotate(-45deg);
      animation:checkmarkDraw 0.3s ease-out 0.3s both;


}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    50% { width: 24px; height: 0; }
    100% { width: 24px; height: 12px; }
}.thankyou-content h1

{
      font-size: 2.8rem;
    color  :   #333;
    margin-bottom: 1rem;
  font-weight: 700;
}

.thankyou-subtitle {
   font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.confirmation-details {
  margin-bottom: 3rem;
   text-align: left;
}

.confirmation-details h2    {
   font-size   :        2rem;
   color: #333;
  margin-bottom: 2rem;
    text-align: center;
   font-weight: 600;
}

.next-steps {
   display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.step {
	display: flex;
    align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(102, 126, 234, 0.05);
   border-radius: 15px;
  border-left: 4px solid #667eea;
}

.step-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width:40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
  align-items :    center;
  justify-content: center;
   font-weight: 600;
   flex-shrink: 0;
}

.step-content h3 {
   font-size: 1.2rem; 
  color: #333; 
  margin-bottom: 0.5rem; 
   font-weight: 600;
     }

.step-content p {
  color:   #666;
					line-height: 1.6;
    font-size: 0.95rem;
}

.additional-info   {
	margin-bottom   :     3rem;
  text-align: left;
}

.additional-info h2 {
  font-size: 2rem;
          color: #333;
  margin-bottom: 2rem;
   text-align: center;
         font-weight: 600;
}

.info-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
  background: rgba(255, 107, 107, 0.05);
  padding: 1.5rem;
    border-radius: 15px;
  border-left: 4px solid #ff6b6b;
}

.info-card h3 {

    font-size: 1.1rem;
   color: #333;
   margin-bottom: 0.5rem;
	font-weight: 600;}

.info-card p {
	 font-size   :      0.9rem;
    line-height: 1.6;
    color: #666;
}

.contact-reminder {
   margin-bottom: 3rem;
}

.contact-reminder h2 {

   font-size:   2rem;
	 color: #333;
  margin-bottom: 2rem;
	font-weight: 600;
     }



.contact-info-grid
	{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  background: rgba(102, 126, 234, 0.05);
   padding: 2rem;
    border-radius: 15px;
}

.contact-detail {
    text-align: center;
}

.contact-detail h4 {
    font-size: 1.1rem;
         color: #333;
 margin-bottom: 0.5rem;
  font-weight: 600;

}

.contact-detail p {
	color: #666;
   line-height: 1.5;
  font-size: 0.95rem;
} 

.action-buttons {
   display: flex;
    gap: 1.5rem;
  justify-content: center;
	flex-wrap: wrap;
}

.primary-action-btn,
.secondary-action-btn
{
  padding: 15px 30px;
    border-radius: 50px;
	text-decoration: none;
    font-weight: 600;
   font-size: 1.1rem;
  transition: all 0.3s ease;
}

.primary-action-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
   border: none;
}

.primary-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); 

}

.secondary-action-btn {
    background: transparent;
	 color: #667eea;
  border: 2px solid #667eea;


}

.secondary-action-btn:hover {
    background     : #667eea;
  color: white;
  transform: translateY(-2px);

}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-container,
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .approach-grid,
    .methodology-steps,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .next-steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 1rem 40px;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .company-story,
    .team-approach,
    .expertise-showcase,
    .methodology-section,
    .success-stats,
    .values-section {
        padding: 60px 1rem;
    }
    
    .approach-container h2,
    .methodology-container h2,
    .stats-container h2,
    .values-container h2 {
        font-size: 2rem;
    }
    
    .story-text h2,
    .expertise-text h2 {
        font-size: 2rem;
    }
    
    .thankyou-hero {
        padding: 100px 1rem 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}.cookies-section,
.privacy-section {
    padding: 100px 2rem;
  background: linear-gradient(45deg, #f8f9fa, #ffffff);
}

.cookies-section .content-container,
.privacy-section .content-container {
          max-width:    1200px;
    margin: 0 auto;
  text-align: left;
}

.cookies-section h2,
.privacy-section h2    {

  font-size    :  2.8rem;
   color: #333;
  margin-bottom: 2rem;
  font-weight: 700;


	}

.cookies-section h3,
.privacy-section h3
{
    font-size: 1.8rem;
  color: #333;
  margin-top: 2rem;
	margin-bottom: 1rem;
   font-weight: 600;
}

.cookies-section p,
.privacy-section p {
                    color: #666;
        font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom:        1.5rem;
}

.cookies-section .benefits-list,
.privacy-section .benefits-list {
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .cookies-section,
    .privacy-section {
        padding: 60px 1rem;
    }

    .cookies-section h2,
    .privacy-section h2 {
        font-size: 2.2rem;
    }

    .cookies-section h3,
    .privacy-section h3 {
        font-size: 1.5rem;
    }

    .cookies-section p,
    .privacy-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cookies-section,
    .privacy-section {
        padding: 40px 1rem;
    }

    .cookies-section h2,
    .privacy-section h2 {
        font-size: 1.8rem;
    }

    .cookies-section h3,
    .privacy-section h3 {
        font-size: 1.3rem;
    }
}.benefits-list li {
   color: #111;
}