* {
   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: #ffffff;
}

.container {
  max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}


.main-navigation {


  position: fixed;
    top: 0;
   left  : 0;
   right     :        0;
    z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
                    transition: all 0.3s ease;
	}

.main-navigation.scrolled {
	  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);

}

.nav-wrapper {

			max-width:   1200px;
     margin: 0 auto;
       padding: 0 20px;
       display: flex;
       justify-content:       space-between;
      align-items: center;
     height: 70px;
}

.company-logo {
	height: 45px;
    width:  auto;
}

.desktop-nav {
    display: flex;
   gap: 40px; 
	
}

.nav-item {
	  text-decoration: none; 
  color: #333; 
   font-weight: 500; 
   position: relative; 
         transition: color 0.3s ease;}

.nav-item:hover,
.nav-item.active {
   color: #2563eb;
}

.nav-item::after {
  content: '';
  position: absolute;
    bottom: -5px;
  left: 0;
   width: 0;
    height: 2px;
  background: #2563eb;
     transition: width 0.3s ease; 

}

.nav-item:hover::after,
.nav-item.active::after {
   width: 100%;
}

.mobile-toggle {
   display: none;
    flex-direction: column;
  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);
}

.mobile-nav  {
    display: none;
    position: absolute;
    top: 100%;
   left: 0;
	right: 0;
    background: white;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-item {
  display: block;
    padding  :      15px 20px;
   text-decoration: none;
  color: #333;
  border-bottom  :  1px solid #f0f0f0;
  transition :  background 0.3s ease;
}

.mobile-nav-item:hover {
    background: #f8f9fa;
          color: #2563eb;
}

.hero-area {
   margin-top: 70px;
                    padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {


   max-width: 1200px;
    margin: 0 auto;
    padding:      0 20px;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap :       60px;
   align-items: center;
	}

.hero-text h1 {
    font-size: 3.2rem;
   font-weight: 700;
    color: #1e293b;
    margin-bottom    :        24px;
   line-height: 1.2;
}

.hero-description {
   font-size: 1.2rem;
  color: #475569;
  margin-bottom:     40px;
   line-height: 1.7;
}

.hero-buttons {
    display: flex;
   gap: 20px;
  flex-wrap: wrap;
}

.primary-btn {
       background: #2563eb;
               color: white;
  padding: 15px 32px;
   text-decoration: none;
   border-radius: 8px;
  font-weight  :  600;
  transition: all 0.3s ease;
        display: inline-block;
}

.primary-btn:hover {

   background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
     }

.secondary-btn {
                    background: transparent;
	color: #2563eb;
    padding: 15px 32px;
 text-decoration: none;
  border: 2px solid #2563eb;
  border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.secondary-btn:hover {
        color: white;
  background: #2563eb;
  transform: translateY(-2px);
}

.hero-visual img {
     width: 100%;
    height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-showcase {
  padding: 100px 0;
    background    :      white;
}

.services-showcase h2 {
  text-align: center;
	 font-size: 2.8rem;
  font-weight: 700;
    margin-bottom: 60px;
    color: #1e293b;
}

.services-grid		{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap    :40px;
}

.service-card {

   background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition    :       all 0.3s ease;
      opacity: 0;
  transform: translateY(30px);

}

.service-card.animate-in {
    opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
   height: 220px;
  object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;

	  font-weight: 600;

	  margin: 24px 24px 16px;

	  color:     #1e293b;
	
}

.service-card p  
  {
  color: #64748b;
  margin: 0 24px 24px;
    line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
   padding: 80px 0;
  text-align: center;
	}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
        padding: 0 20px;
}

.cta-content h2 {
   color: white;
  margin-bottom: 20px;
    font-weight: 700;
    font-size: 2.4rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
   margin-bottom: 40px;
    line-height: 1.7;

}  

.cta-button   {
   background: white;
   color: #2563eb;
    padding: 18px 36px;
  text-decoration: none;
    border-radius : 8px;
       font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
   display  :     inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.training-programs {
  padding: 100px 0;
    background: #f8fafc;
}

.training-programs h2

{
  font-size: 2.8rem;
   text-align     :      center;
   margin-bottom: 60px;
   color: #1e293b;
   font-weight: 700;
}

.programs-layout {
   display: grid;
    grid-template-columns: 2fr 1fr;
	gap: 60px;
	 align-items    :   start;
}

.program-main {
    background: white;
  border-radius: 16px;
	overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
     opacity: 0;
  transform: translateX(-30px);
}

.program-main.animate-in {
    opacity: 1;
  transform: translateX(0);
}

.program-main img		{
    width: 100%;
   height: 280px;
    object-fit: cover;
}

.program-details {
   padding: 40px;
}

.program-details h3  
  {
  font-size: 1.8rem; 
	  color: #1e293b; 
	  margin-bottom: 20px; 
	   font-weight: 600;
}

.program-details p {
    color :    #64748b;
  margin-bottom: 30px;
   line-height: 1.7;
   font-size: 1.05rem;
}

.program-features {
   gap: 12px;
  flex-wrap: wrap;
       display  :flex;
}

.program-features span {

	  background: #e2e8f0;
  color: #334155;
          padding: 8px 16px;
  border-radius: 20px;
   font-size :     0.9rem;
    font-weight     : 500;

}

.workshop-info {
	 background: white;
   border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06); 

}

.workshop-info h4 {
   font-size: 1.4rem;
    color: #1e293b;
   margin-bottom: 24px;
    font-weight: 600;
}

.workshop-item {
   display: flex;
  flex-direction     :        column;
  margin-bottom: 20px;
  padding: 16px;
  background: #f8fafc;
    border-radius: 8px;
   border-left   :       4px solid #2563eb;
}

.workshop-date {
                    font-size: 0.9rem;
    color    :        #2563eb;
       font-weight:    600;
	 margin-bottom : 4px;
}

.workshop-title {
       color: #334155;
   font-weight: 500;
}

.contact-section		{
   	 padding: 100px 0;
   background: white;
}

.contact-section h2    {

    font-size: 2.8rem;
  text-align: center;
    margin-bottom: 60px;
	 color: #1e293b;
   font-weight: 700;

}

.contact-layout {
  display  :   grid;
    grid-template-columns: 1fr 2fr;
   gap: 60px;
   max-width: 1200px;
	 margin: 0 auto;
   padding: 0 20px;
}

.contact-info h3 
 {


  font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 30px;
    font-weight: 600;
     }

.contact-item{
   display: flex; 
    flex-direction :     column; 
	 margin-bottom: 20px;
}

.contact-label {
  font-weight:   600;
   color: #2563eb;
   margin-bottom: 4px;
}

.contact-form {
   background :#f8fafc;
   padding: 40px;
	border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
   opacity:      0;
  transform: translateY(30px);
}

.contact-form.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.form-row{
    display: grid;

	  grid-template-columns: 1fr 1fr;

	   gap: 20px;

	  margin-bottom: 20px;
}

.form-field {
	display: flex;

   flex-direction: column;
}

.form-field label {
    font-weight: 600;
  color :        #374151;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    -o-transition: all 0.3s ease;
    padding  : 12px 16px;
    -webkit-border-radius: 8px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
   transition: all 0.3s ease;
   background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus


{
    outline  :   none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: #ef4444;


}

.submit-btn {
  background: #2563eb;
    color: white;
   padding: 16px 32px;
        border: none;
    border-radius: 8px;
	font-size: 1.1rem;
   font-weight: 600;
        cursor: pointer;
    transition: all 0.3s ease;
         width: 100%;
}

.submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.site-footer {
               background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}



.footer-content {
               max-width:   1200px;
   margin: 0 auto;
  padding: 0 20px;
  opacity   :  0;
  transform: translateY(30px);
}

.footer-content.animate-in {
	 opacity: 1;
  transform: translateY(0);
}

.footer-main {


         display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 40px;
         margin-bottom  :     40px;
     }

.footer-logo    {
  height:40px;

	width: auto;

   margin-bottom: 20px;

  filter: brightness(0) invert(1);
}

.footer-description {
  color: #cbd5e1;
	 line-height: 1.6;
   max-width : 300px;
}

.footer-column h4 {
  margin-bottom: 16px;
          color: white;
     font-weight: 600;
}

.footer-column a {
	   display: block;
          color: #cbd5e1;
   text-decoration: none;
  margin-bottom: 8px;
    transition: color 0.3s ease;


}

.footer-column a:hover {
  color: #2563eb;
}

.footer-contact h4 {
         margin-bottom: 16px;
}

.footer-contact p {


   color: #cbd5e1;
  margin-bottom: 8px;
   line-height: 1.6;
	}

.footer-bottom {
	    padding-top: 30px; 
		 border-top: 1px solid #334155; 
		text-align: center;


}

.footer-bottom p {
    color: #94a3b8;
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    .services-showcase h2,
    .training-programs h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 24px;
    }
}.page-header {
     margin-top: 70px;
   padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
   text-align: center;
}

.page-header-content 
 {
    max-width: 800px;
    margin     :        0 auto;
    padding: 0 20px;
}

.page-header h1 {
	   font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;

}

.page-subtitle {
   font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
   line-height    :    1.7;
}

.company-story {
      padding: 100px 0;
   background: white;
}

.story-layout {
  display   :       grid;
	grid-template-columns: 1fr 1fr;
  gap  :        60px;
    align-items: center;
}

.story-text h2 {
	font-size: 2.8rem;
    color: #1e293b;
   margin-bottom: 40px;
    font-weight: 700;
}

.story-text p {


   color    :       #475569;
   margin-bottom: 24px;
   line-height: 1.7;
                    font-size: 1.05rem;
     }

.story-visual img {
   width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.approach-section {
   padding: 100px 0;
   background: #f8fafc;
}

.approach-section h2 {
    font-size: 2.8rem;
  text-align: center;
  margin-bottom:       60px;
  color: #1e293b;
   font-weight: 700;
	
}

.approach-grid {
   display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.approach-item {
  background: white;
         padding: 40px;
	 border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
          transition: transform 0.3s ease;
}

.approach-item:hover

{
  transform: translateY(-10px);
}

.approach-number


{
    width: 60px;
  height: 60px;
  background: #2563eb;
  color: white;
   border-radius    :  50%;
    display: flex;
               align-items: center;
   justify-content: center;
  font-size: 1.5rem;
    font-weight: 700;
   margin: 0 auto 24px;
}

.approach-item h3    {
                    font-size: 1.4rem;
  color: #1e293b;
  margin-bottom: 16px;
  font-weight: 600;
}

.approach-item p {
	    color: #64748b;
  line-height: 1.6;


}

.expertise-areas {
   padding:100px 0;
  background: white; 
	
}

.expertise-layout {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items  :        start;
}

.expertise-content h2
	{
	font-size: 2.8rem; 
	  color: #1e293b; 
	  margin-bottom: 40px; 
	  font-weight: 700;
}

.expertise-item {
  margin-bottom: 32px;
  padding:       24px;
  border-left  :        4px solid #2563eb;
    background :        #f8fafc;
}

.expertise-item h4
{
  font-size :      1.2rem;
    color: #1e293b;
   margin-bottom: 8px;
  font-weight: 600;
}

.expertise-item p {
        color: #64748b;
   line-height: 1.6;



}

.expertise-visual img {
  width: 100%;
	 border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-choose-us {
    padding: 100px 0;
   background: #f8fafc;
}

.why-choose-us h2		{
    font-size: 2.8rem;
  text-align: center;
   margin-bottom: 60px;
   color: #1e293b;
                    font-weight: 700;
}

.benefits-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.benefit-card {
    background: white;
   padding: 40px;
                    border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   text-align: center;
      transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
   margin: 0 auto 24px;
   display: flex;
  align-items: center;
    justify-content: center;
}

.icon-placeholder {
   width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 12px;
}

.benefit-card h3 {
    font-size: 1.4rem;
  color: #1e293b;
   margin-bottom: 16px;
         font-weight: 600;
}

.benefit-card p	{
   color: #64748b;
   line-height: 1.6;
}

.success-stories {
    padding: 100px 0;
	background: white;
}

.success-stories h2 {
    font-size     :   2.8rem;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
  font-weight: 700;
}

.stories-layout {
  display: grid;
    gap: 60px;
}

.story-card {
  background :  #f8fafc;
	 border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
   display: grid;
     grid-template-columns: 1fr 2fr;
   align-items: center;
}

.story-image img {
   width: 100%;
    height: 300px;
  object-fit  : cover;
}

.story-content {
    padding: 40px;}

.story-content h3 {
   font-size: 1.6rem;
	 color     :      #1e293b;
    margin-bottom: 20px;
	font-weight: 600;
} 

.story-content p {
  margin-bottom  :       24px;
    line-height: 1.7;
    color: #64748b;
}

.story-metrics {
  display: flex;
   gap: 20px;
	flex-wrap: wrap;
}

.metric {
  background: #2563eb;
    color: white;
   padding: 8px 16px;
   border-radius: 20px;
    font-size: 0.9rem;
                    font-weight: 600;
}

.thankyou-section {
       margin-top     :       70px;
   padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 60vh;
	}

.thankyou-container {


   max-width: 1200px; 
	   margin: 0 auto; 
	  padding: 0 20px; 
	    display: grid; 
	   grid-template-columns: 2fr 1fr; 
	    gap: 60px; 
	  align-items   :       start;}

.thankyou-content  
  {


  text-align: center;}

.success-indicator {
   margin-bottom: 40px;
	
}



.checkmark-circle    {
  width :  100px;
    height: 100px;
	background: #10b981;
  border-radius: 50%;
         margin: 0 auto;
    display: flex;
      align-items: center;
   justify-content: center;
  position:   relative;
	 animation: scaleIn 0.5s ease-out;
}

.checkmark {
   width: 40px;
   height: 20px;
    border-left: 4px solid white;
    border-bottom: 4px solid white;
  transform: rotate(-45deg);
   animation: checkmarkDraw 0.3s ease-out 0.2s forwards;
  opacity : 0;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { opacity: 0; transform: rotate(-45deg) scale(0); }
    100% { opacity: 1; transform: rotate(-45deg) scale(1); }
}.thankyou-content h1 {
      font-size: 2.8rem;
  color: #1e293b;
   margin-bottom: 24px;
	font-weight: 700;

}

.thankyou-message {
       font-size: 1.1rem;
   color:        #475569;
    margin-bottom: 50px;
  line-height: 1.7;
    max-width: 600px;
    margin-left     : auto;
  margin-right: auto;
	}

.next-steps {
    margin-bottom: 50px;
          text-align: left;
}

.next-steps h2 {


  font-size: 2.2rem;
  color: #1e293b;
    margin-bottom: 40px;
    font-weight: 600;
	 text-align: center;

}

.steps-timeline 
 {
    display: grid;
    margin: 0 auto;
  max-width: 600px;
    gap: 30px;}

.step-item {
  display: flex;
  align-items: flex-start;
    gap: 20px;
                    padding  :       24px;
  background: white;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number {
   	 width: 40px;
               height: 40px;
    background    :       #2563eb;
    color: white;
  border-radius: 50%;
    display: flex;
	align-items: center;
   justify-content: center;
  font-weight     :  700;
  flex-shrink: 0;


}

.step-content h3 {
    font-size: 1.2rem;
  color: #1e293b;
   margin-bottom: 8px;
	font-weight: 600;
}

.step-content p {

	  color: #64748b;
    line-height: 1.6;
}

.thankyou-actions {
     display    :      flex;
    gap: 20px;
       justify-content: center;
  flex-wrap: wrap;

}

.thankyou-sidebar {
    display   :flex;
  flex-direction: column;
  gap: 40px;
}

.contact-reminder,
.additional-resources     {
	  background: white;
   padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);}

.contact-reminder h3,
.additional-resources h3 {
  font-size: 1.4rem;
  color     :#1e293b;
    margin-bottom: 16px;
    font-weight: 600;
}



.contact-reminder p,
.additional-resources p {
  color: #64748b;
    margin-bottom     :20px;
         line-height: 1.6; 

}

.urgent-contact {
               gap: 16px;
    display: flex;
   flex-direction  :       column;
}

.contact-item     {
                    display: flex;
   flex-direction: column;
}

.contact-label {
     font-weight: 600;

  color: #2563eb;

    margin-bottom    :        4px;



}

.contact-value {
     color   :       #334155;
	}


.resource-list {
   list-style: none;
  padding: 0;
}

.resource-list li {
    padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.resource-list li:last-child {
    border-bottom: none;


}

.resource-list li:before {
  content: "→";
    color: #2563eb;
  margin-right: 8px;
	 font-weight: 600;
}

.additional-info {
	padding: 80px 0;
  background: white;
}

.info-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}



.info-card {
    background: #f8fafc;
    border-radius: 16px;
   overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card img {
     width: 100%; 
	   height: 200px; 
	  object-fit: cover;
}

.info-content    {
    padding: 32px;
}

.info-content h3 {
    font-size: 1.4rem;
  color: #1e293b;
                    margin-bottom    :16px;
	 font-weight: 600;
}

.info-content p {
    color    :       #64748b;
    line-height: 1.6;
}@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.4rem;
    }
    
    .story-layout,
    .expertise-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-card {
        grid-template-columns: 1fr;
    }
    
    .story-image img {
        height: 200px;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .approach-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .approach-section,
    .expertise-areas,
    .why-choose-us,
    .success-stories {
        padding: 60px 0;
    }
    
    .approach-section h2,
    .expertise-content h2,
    .why-choose-us h2,
    .success-stories h2,
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .approach-item,
    .benefit-card {
        padding: 24px;
    }
    
    .story-content {
        padding: 24px;
    }
    
    .contact-reminder,
    .additional-resources {
        padding: 24px;
    }
}.cookies-section,
.privacy-section {
	padding: 100px 0;
   background: #f8fafc;
}

.cookies-content,
.privacy-content {
   max-width: 800px;
 margin: 0 auto;
   background: white;
	padding:40px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    opacity     :    1;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.cookies-content.animate-in,
.privacy-content.animate-in {
  -ms-transform: translateY(0);
   opacity: 1;
  transform: translateY(0);
  -moz-transform: translateY(0);
}

.cookies-content h2,
.privacy-content h2 {

	   font-size: 2.8rem;
   color: #1e293b;
                    margin-bottom: 30px;
  font-weight: 700;
    text-align: center;
}

.cookies-content h3,
.privacy-content h3     {
	 font-size: 1.6rem;
    color: #1e293b;
   margin: 24px 0 16px;
	font-weight: 600;
}

.cookies-content p,
.privacy-content p {
    color: #64748b;
   margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
	
}@media (max-width: 768px) {
    .cookies-content,
    .privacy-content {
        padding: 24px;
    }

    .cookies-content h2,
    .privacy-content h2 {
        font-size: 2.2rem;
    }
}