* {
  margin: 0;
   padding: 0;
   box-sizing :border-box;
}

body		{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #333;
}

.container {
	 max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.primary-nav {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  position: fixed;
   top: 0;
   width: 100%;
   z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-wrapper {
    max-width: 1200px;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
  align-items: center;
  padding: 0 20px;
    height   :  70px;
}

.brand-section .site-logo {
   height: 45px; 
   width: auto;
}

.desktop-menu {
	display :     flex; 
    gap: 40px;
}

.nav-item {
	color: #fff;
    text-decoration: none;
  font-weight: 500;
   padding: 10px 0;
   transition: color 0.3s ease;
    position: relative;
}  

.nav-item:hover,
.nav-item.active {
  color: #3498db;
}

.nav-item::after   {


  content: '';
    position: absolute;
   bottom: 0;
  left: 0;
   width: 0;
   height: 2px;
  background: #3498db;
  transition: width 0.3s ease;


}

.nav-item:hover::after,
.nav-item.active::after


{
  width: 100%;
} 

.mobile-toggle {
  display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width:     25px;
   height: 3px;
    background: #fff;
   transition: 0.3s;
}

.mobile-menu {
       display: none;
    background: #2c3e50;
   padding: 20px;
    position: absolute;
	 top: 100%;
  left: 0;
  right: 0;
}

.mobile-nav-item {
	display: block;
    color: #fff;
    text-decoration: none;
   padding: 15px 0;
   border-bottom: 1px solid #34495e;
  font-weight: 500;
}

.hero-section {
    margin-top: 70px;
	padding  :  80px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	display  :       flex;
   align-items: center;
    min-height: 600px; 
	
}

.hero-content {
   flex    :      1;
   max-width    :  600px;
   margin: 0 auto;
  padding-right: 40px;
} 

.hero-content h1 {
  font-size   :        3.2rem;
  color: #2c3e50;
          margin-bottom: 20px;
  line-height: 1.2;
   font-weight: 700;
}


.hero-subtitle {
   font-size   :      1.3rem;
   color: #555;
    margin-bottom: 30px;
   line-height: 1.5;
}

.cta-buttons {
    display: flex;
   gap: 20px;
    flex-wrap: wrap; 
	
}

.primary-btn,
.secondary-btn  
  {
      padding: 15px 30px;
    text-decoration: none;
  -webkit-border-radius: 8px;
       border-radius: 8px;
  font-weight: 600;
   transition: all 0.3s ease;
  display   :      inline-block;
}

.primary-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);
     color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.secondary-btn {
   border: 2px solid #3498db;
    color: #3498db;
         background: transparent;
}

.secondary-btn:hover {

	    background     :        #3498db;
	color: white;

}

.hero-image	{
   flex: 1;
   text-align: center;
}

.hero-image img {
  max-width: 100%;
   height: auto;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-overview {
                    padding   :100px 20px;
   background: #fff;
} 

.services-overview h2 {
   text-align: center;
    font-size: 2.5rem;
  color:     #2c3e50;
   margin-bottom: 60px;
}

.services-grid {
	display  :grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
                    max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #f8f9fa;
  border-radius: 12px;
	padding: 30px;
    text-align  :      center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

}

.service-card img {
 width: 100%;
  height: 200px;
   object-fit: cover;
  border-radius: 8px;
   margin-bottom: 20px;
}

.service-card h3 {

	   font-size: 1.5rem;
    color: #2c3e50;
  margin-bottom: 15px;
	}

.service-card p {
   color: #666;
   line-height: 1.6;
}

.training-programs {
      padding   :    100px 20px;
  background: linear-gradient(135deg, #f1f2f6, #ddd6fe);
}

.content-split {
    display: grid;
	 grid-template-columns: 1fr 1fr;
	        gap: 60px;
	  align-items: center;
	   max-width: 1200px;
	  margin: 0 auto;
}

.text-content h2 {
	   font-size: 2.3rem;
   color  :  #2c3e50;
  margin-bottom: 25px;


}

.text-content p     {
         color   :#555;
         margin-bottom: 30px;
   line-height: 1.7;
    font-size: 1.1rem;
}

.program-features {
  list-style: none;
    margin-bottom: 35px;
}

.program-features li {
    padding:    10px 0;
   padding-left: 25px;
  position: relative;
  color: #555;
          font-size: 1.05rem;
}

.program-features li::before {
	  content: '✓';

	    position     : absolute;

	  left: 0;

	    color: #27ae60;

	   font-weight: bold;
}

.accent-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
   color   :      white;
   padding: 15px 30px;
   text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
	display: inline-block;
       transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);}

.accent-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.image-content img {
   width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta-section		{
  background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 80px 20px;
    text-align: center;
	color: white;
}

.cta-content h2 {
	 font-size: 2.5rem;
			margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
   margin-bottom  :        35px;
    opacity: 0.9;
}

.cta-button {
  background : white; 
	  color: #667eea; 
	   padding: 18px 40px; 
	   text-decoration: none; 
	  border-radius: 50px; 
	    font-weight: 700; 
	  font-size: 1.1rem; 
	   transition: all 0.3s ease; 
	   display: inline-block; 
	  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.contact-section {

  padding :    100px 20px;
    background: #f8f9fa; 
	} 

.contact-section h2 {
    text-align  :     center;
     font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 50px; 
	
}

.contact-form{
   max-width: 800px;
	margin: 0 auto;
    background: white;
  padding: 50px;
                    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
     display: grid;
	 grid-template-columns: 1fr 1fr;
  gap     :    25px;
  margin-bottom: 25px;
}

.form-group {
	   flex-direction: column;
    display  :        flex;
     }

.form-group label {
	margin-bottom   :   8px;
  font-weight    :600;
   color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
	   padding: 12px 15px;
   border: 2px solid #e9ecef;
    border-radius: 8px;
   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: #3498db;
}

.submit-btn {
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
   padding: 15px 40px;
  border: none;
   border-radius: 8px;
    font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
   transition : all 0.3s ease;
   width :       100%;
    margin-top: 20px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.site-footer {
   background: #2c3e50;
    color: white;
   padding: 50px 20px 20px;
}

.footer-content	{
  max-width: 1200px;
  margin    : 0 auto;
  display:  grid;
   grid-template-columns: auto 1fr;
	gap: 60px;
   align-items: start;
}

.footer-logo {
    height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap :     40px;
}

.footer-info h4 {
   margin-bottom: 15px;
   color: #3498db;
    font-size: 1.2rem;
}

.contact-details p {
    margin-bottom: 8px;
   color: #bdc3c7;
}

.quick-links a {
    -o-transition: color 0.3s ease;
  display: block;
        color: #bdc3c7;
   text-decoration: none;
    -moz-transition: color 0.3s ease;
  margin-bottom: 8px;
	-webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.quick-links a:hover  {

  color: #3498db;
	}

.footer-bottom {
  text-align: center;
	margin-top: 40px;
  padding-top: 20px;
  border-top   : 1px solid #34495e;
   color: #95a5a6;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}.page-header {
                    margin-top: 70px;
	 padding   :80px 20px;
  background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
       text-align: center;
}

.page-header h1 {
   font-size: 3rem; 
	  margin-bottom:      20px; 
	  font-weight: 700;
}

.header-subtitle {
	font-size: 1.3rem;
  opacity: 0.9;
   max-width: 800px;
    margin: 0 auto;
}


.company-story {

	    padding: 100px 20px;

	  background: #fff;

}

.story-content {
      display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items: center;
    max-width: 1200px;
  margin :      0 auto;
     }

.story-content h2 
 {
  font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 30px;
     }

.story-content p {
   font-size: 1.1rem;
    line-height: 1.7;
  color   :#555;
		 margin-bottom: 25px;
}

.story-image img {
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.approach-section {
    padding     :100px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);

}

.approach-section h2 {

		margin-bottom: 60px;
   color: #2c3e50;
   text-align: center;
  font-size: 2.5rem;
     }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap     :      40px;
    max-width     :      1200px;
   margin: 0 auto;

}

.approach-item {
   background: white;
	    padding: 35px;
	   border-radius: 12px;
		text-align: center;
	  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	    transition: transform 0.3s ease;
}



.approach-item:hover
	{
  transform: translateY(-5px);
}

.approach-item h3 {
   font-size: 1.4rem;
   color: #3498db;
  margin-bottom: 20px;
}

.approach-item p {
 color: #666;
	line-height: 1.6;
}

.expertise-showcase {
    padding: 100px 20px;
	background: white;
	}

.expertise-content {
   display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 60px;
       align-items: center;
   max-width: 1200px;
  margin: 0 auto;
}

.expertise-text h2 {
  font-size: 2.3rem;
   color: #2c3e50;
   margin-bottom  :40px;
}

.expertise-category {
	margin-bottom: 35px;

  padding-bottom    :  25px;

    border-bottom: 1px solid #e9ecef;
}

.expertise-category:last-child {
  border-bottom: none;
	margin-bottom: 0;
}

.expertise-category h4


{
   font-size     :      1.3rem;
  color: #3498db;
          margin-bottom: 15px;
}

.expertise-category p {
  color: #666;
					line-height: 1.6;
}  

.expertise-visual img {
    width: 100%;
      border-radius     :  12px;
     box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.values-section	{


   padding: 100px 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;

}

.values-section h2 {
      text-align: center;
    font-size: 2.5rem;
  margin-bottom: 60px;

}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  max-width: 1200px;
    margin: 0 auto;
}  

.value-card {

	  background: rgba(255,255,255,0.1);
   padding: 40px;
	border-radius: 15px;
   text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;


}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
}

.value-card h3 {
  font-size: 1.5rem;
          margin-bottom: 20px;
}

.value-card p {

    opacity: 0.9;
  line-height: 1.6;
     }

.experience-section {
   padding:      100px 20px;
    background: #f8f9fa;
}

.experience-layout
	{
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items   :      center;
	 max-width: 1200px;
    margin: 0 auto;
}

.experience-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.experience-details h2 {
		 font-size: 2.3rem;
          color: #2c3e50;
    margin-bottom  :   40px;
}

.stats-grid {
    display   :      grid;
   grid-template-columns: 1fr 1fr;
  gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
  text-align :        center;
    padding: 25px;
   background: white;
       border-radius     :        10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
   display: block;
    font-size: 2.5rem;
   font-weight: 700;
    color: #3498db;
  margin-bottom: 10px;
}

.stat-label {
	 font-size: 0.95rem;
	  color: #666;
	  display: block;
}

.experience-description 
 {
    color :#666;
   line-height: 1.7;
    font-size: 1.1rem;
}

.methodology-section {
    padding :    100px 20px;
   background     :   white;
}

.methodology-section h2 {


    text-align: center;
     font-size  :    2.5rem;
   color: #2c3e50;
  margin-bottom:      60px;
}

.methodology-steps {
    max-width: 1000px;
  margin: 0 auto;
}

.method-step {
    display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
    margin-bottom: 50px;
   align-items: flex-start;
}

.method-step:last-child {
    margin-bottom: 0;
}

.step-number {
  width: 60px;
    height  :   60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color  :   white;
    border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
  font-size: 1.5rem;
      font-weight: 700;
   position: relative;
}

.method-step:not(:last-child) .step-number::after	{
  content: '';
  position: absolute;
  -webkit-transform: translateX(-50%);
   top: 100%;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
    width: 2px;
    height   :        60px;
  background: #e9ecef;


}

.step-content h3 {
  font-size: 1.4rem;
     color  :        #2c3e50;
      margin-bottom: 15px; 
	
}

.step-content p {
  color: #666;
   line-height: 1.6;
}

.location-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f1f2f6, #ddd6fe);
}

.location-content {
	   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
               align-items: center;
   max-width  :     1200px;
    margin: 0 auto;
	}

.location-info h2 {
	 color: #2c3e50;
	margin-bottom: 25px;
    font-size: 2.3rem;
}



.location-info p {
         font-size: 1.1rem;
   color: #555;
   line-height: 1.7;
    margin-bottom: 30px; 
	
}

.address-details
{


   background: white;
    padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);


}

.address-details h4 {
    color: #3498db;
    margin-bottom: 15px;
     font-size: 1.2rem;
}

.address-details p {
	margin-bottom: 10px;
  color: #666;
}

.location-visual img     {
    width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.thankyou-main {
	margin-top: 70px;
    padding: 80px 20px;
  min-height: calc(100vh - 140px);
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.thankyou-content {
	max-width: 900px;
	 margin: 0 auto;
    text-align: center;
}

.success-icon {
  margin-bottom     :    40px;
}



.checkmark-circle {
	width: 100px;
   height: 100px;
  background: linear-gradient(135deg, #27ae60, #229954);
  border-radius: 50%;
  display: flex;
   align-items: center;
  justify-content: center;
  margin     : 0 auto;
  position: relative;
         animation: scaleIn 0.6s ease-out;
}  

.checkmark {
  width: 30px;
   height: 15px;
    border: 4px solid white;
   border-top: none;
  border-right: none;
  transform: rotate(-45deg);
	animation: checkmarkDraw 0.4s ease-out 0.3s both;
}


.thankyou-content h1 {
    font-size: 3rem;
    color: #2c3e50;
  margin-bottom: 30px;
					font-weight: 700;
}

.thank-message
	{
   font-size: 1.3rem;
  color: #555;
  margin-bottom :      60px;
  line-height: 1.6;
  max-width: 700px;
   margin-left: auto;
    margin-right     :auto;
}

.next-steps {
  margin-bottom: 60px;
  background  :        white;
  padding: 50px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.next-steps h2 {
   font-size: 2.2rem;
  color:        #2c3e50;
   margin-bottom: 40px; 

} 

.steps-timeline {


   text-align : left;
    max-width: 600px;
    margin: 0 auto;
	}

.timeline-item {
  gap: 25px;
  margin-bottom: 40px;
    align-items: flex-start;
    display: grid;
          grid-template-columns: 60px 1fr;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 50px;
  height :  50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
   border-radius: 50%;
                    display: flex;
  align-items: center;
  justify-content: center;
    font-weight: 700;
  font-size    :1.2rem;
   position: relative;
}

.timeline-item:not(:last-child) .timeline-marker::after  {
  content: '';
  position: absolute;
    top: 100%;
  left: 50%;
  transform: translateX(-50%);
    width: 2px;
	 height: 50px;
    background: #e9ecef;
}

.timeline-content h3 {
   font-size: 1.3rem;
   color    :        #2c3e50;
   margin-bottom: 10px;
}

.timeline-content p {
   color: #666;
   line-height: 1.6;
}

.additional-info {
	margin-bottom: 50px;
}

.additional-info h2 {
					font-size: 2rem;
  margin-bottom: 40px;
          color: #2c3e50;}

.info-cards {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
  max-width: 800px;
	 margin: 0 auto;
	}

.info-card {
  background: white;
   padding: 35px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   text-align: left;
   transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  -moz-transform: translateY(-5px);
}

.info-card h3 {
  font-size  :       1.4rem;
  color: #3498db;
   margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-link {
    color: #3498db;
          text-decoration: none;
   font-weight: 600;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #2980b9;
}

.return-options {
    margin-bottom: 50px;
  display: flex;
    gap: 20px;
   justify-content: center;
    flex-wrap: wrap;
}

.return-btn {
   padding: 15px 30px;
   text-decoration : none;
   border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block;
}

.return-btn.primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
	color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.return-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
	}

.return-btn.secondary {
  border: 2px solid #3498db;

	  color    :  #3498db;

	    background: transparent;
     }

.return-btn.secondary:hover {
    background: #3498db;
   color: white;
}

.contact-reminder {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
   color: white;
   padding: 40px;
   border-radius: 12px;
                    max-width: 600px;
   margin: 0 auto;
}

.contact-reminder h3 {
  font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-reminder p  {

	   margin-bottom: 20px;
   opacity: 0.9;
     }

.urgent-contact p {
    margin-bottom: 10px;
       font-size: 1.1rem;
}

.urgent-contact strong	{
    opacity: 1;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmarkDraw {
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 30px;
        height: 15px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .next-steps {
        padding: 30px 20px;
    }
    
    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .return-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .next-steps h2,
    .additional-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-reminder {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .approach-item,
    .info-card {
        padding: 25px;
    }
}.cookies-section,
.privacy-section {
   padding : 100px 20px;

	   background: #fff;
}

.cookies-section h1,
.privacy-section h1 {

	   font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 30px;
  text-align: center;
     }

.cookies-section h2,
.privacy-section h2 {
               font-size: 1.8rem;
   color: #2c3e50;
    margin: 40px 0 20px;
}

.cookies-section p,
.privacy-section p {
  line-height: 1.7;
    color: #555;
         font-size: 1.1rem;
    margin-bottom: 20px;
}

.cookies-section ul,
.privacy-section ul {
  list-style: none;
   margin-bottom: 20px;
}

.cookies-section ul li,
.privacy-section ul li {
   padding: 10px 0;
   padding-left: 25px;
  position: relative;
  color: #555;
  font-size: 1.05rem;
}

.cookies-section ul li::before,
.privacy-section ul li::before {
  content: '✓';
   position: absolute;
  left: 0;
  color: #27ae60;
    font-weight  :       bold;


}