* {
    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 {
   padding: 0 20px;
      max-width: 1200px;
      margin: 0 auto;
}

.main-navigation {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   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: 15px 20px;
}

.site-logo {
    height: 45px;
   width: auto;
}

.desktop-menu	{
   display     :     flex;
       gap: 30px;
}

.nav-item {
      text-decoration: none; 
    color: #333; 
   font-weight: 500; 
          -webkit-transition: color 0.3s ease; 
    transition: color 0.3s ease; 
  -o-transition: color 0.3s ease; 
	 -moz-transition: color 0.3s ease; 
  padding: 8px 0;
}

.nav-item:hover,
.nav-item.active {
  color: #2c5aa0;
}

.mobile-toggle {
    display     :     none;
 flex-direction: column;
   cursor: pointer;
    gap: 4px;
}

.burger-line		{
  width: 25px;
               height    :3px;
  background: #333;
    transition: 0.3s;
}

.mobile-menu {
  display  : none;
  background: #fff;
  border-top    : 1px solid #eee;
  padding: 20px;
}

.mobile-nav-item {
      display: block;
   padding: 12px 0;
    text-decoration    :  none;
    color: #333;
         border-bottom: 1px solid #f0f0f0;
}

.hero-section   {
  margin-top: 80px;

	       padding  :60px 0;

	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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: 2.8rem;
  font-weight: 700;
  margin-bottom   :     20px;
  color :   #1a1a1a;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.hero-buttons {
   display :      flex;
   gap: 20px;
}

.btn-primary, .btn-secondary  {
    padding     :15px 30px;
  text-decoration     :        none;
      border-radius     : 8px;
    font-weight: 600;
	transition: all 0.3s ease;
    display    :     inline-block;
}

.btn-primary {
   background: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background: #1e3d6f;
  transform: translateY(-2px);
}

.btn-secondary   {
    background: transparent;

	               border    :      2px solid #2c5aa0;

		color: #2c5aa0;
}

.btn-secondary:hover {
    background: #2c5aa0;
   color    :  white;
}

.hero-image img {

	width: 100%;
   height: auto;
         border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}

.benefits-showcase {
   padding: 80px 0;
    background: #fff;
}

.benefits-showcase h2 {
  text-align: center;
  font-size: 2.5rem;
   margin-bottom: 50px;
  color: #1a1a1a;}


.benefits-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
     border-radius: 12px;
     background: #f8f9fa;
   transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
  margin-bottom   :20px;
}

.benefit-card h3
{
   font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c5aa0;
}

.benefit-card p   {
    color: #666;
   line-height: 1.6;
}

.services-section {


	padding: 80px 0;
  background: #f8f9fa;}

.services-section h2
{
	text-align: center;
    font-size    : 2.5rem;
    margin-bottom: 60px;
    color   :     #1a1a1a; 

}

.services-layout {
          display: flex;
  flex-direction     :       column;
  gap :50px;
}

.service-item {
   display: grid;
         grid-template-columns     :    1fr 1fr;
      gap: 40px;
    align-items: center;
    background: white;
   padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-item:nth-child(even) 
 {

		direction: rtl;


}

.service-item:nth-child(even) .service-content {
   direction: ltr;
}

.service-item img {
                    -webkit-border-radius: 8px;
    width: 100%;
  height: 300px;
   object-fit: cover;
   border-radius: 8px;
}

.service-content h3 {
   font-size: 1.8rem;
   margin-bottom :      20px;
   color: #2c5aa0;
}

.service-content p {
   color    :   #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features     {
   list-style: none;
}

.service-features li {
   padding: 8px 0;
    color: #555;
	 position: relative;
    padding-left: 20px;
}

.service-features li:before {
  content: "✓";
   position     : absolute;
    left: 0;
	color: #2c5aa0;
    font-weight: bold;
}

.cta-section {
   padding    :  80px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
	color: white;
   text-align: center;
}

.cta-content h2 
 {
    font-size: 2.5rem;
    margin-bottom: 20px;

}

.cta-content p {
         font-size: 1.2rem;
  margin-bottom    :40px;
   opacity: 0.9;
}

.cta-stats {
  display: flex;
  justify-content    : center;
   gap:     60px;
    margin-bottom: 40px;
}

.stat-item {
       text-align: center;
}

.stat-number {
    display: block;
       font-size: 2.5rem;
       font-weight: bold;
       color: #fff; 
	
}

.stat-label {
	 display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.btn-primary.large {
	font-size: 1.2rem;
  padding: 18px 40px;
}

.approach-section {
    padding: 80px 0;
   background: white;
	
}

.approach-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
	align-items: center;
}

.approach-text h2 {
     font-size: 2.5rem;
    margin-bottom: 30px;
       color: #1a1a1a;

}

.approach-text p {
    color: #666;
  margin-bottom: 40px;
   line-height: 1.6;
  font-size: 1.1rem;
}

.approach-steps {
  flex-direction: column;
	   gap: 30px;
	    display: flex;
}

.step-item {
        display: flex;
   align-items: flex-start;
	 gap: 20px;
}

.step-number {

  background: #2c5aa0;
   color: white;
   width: 50px;
    height :    50px;
   border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content: center;
  font-weight: bold;
    flex-shrink: 0;

}

.step-content h4 {
    font-size: 1.3rem;
   margin-bottom: 8px;
   color: #2c5aa0;
}

.step-content p {
		color: #666;
   margin: 0;
}

.approach-image img {
   width: 100%;
	height: auto;
                    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-section{
  padding   :    80px 0;
   background: #f8f9fa;
}

.contact-header {


   text-align: center;
  margin-bottom    :        60px;

}

.contact-header h2 {

	  font-size: 2.5rem;
   margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-header p {
	font-size: 1.1rem;
  color: #666;
   max-width  :      600px;
  margin: 0 auto;
}

.contact-form-wrapper {


    max-width   :    800px;
  margin: 0 auto;
    background  :       white;
    padding: 50px;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);}

.contact-form {
  gap    :       25px;
   flex-direction: column;
   display: flex;
}

.form-row {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 25px;
}

.form-group		{
	    display     :flex;
  flex-direction: column;


}

.form-group.full-width	{
  grid-column: span 2;
}

.form-group label {
  margin-bottom: 8px;
       font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	  border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
				 padding: 15px;
    border-radius: 8px;
	font-size :       16px;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color   :      #2c5aa0;
} 

.submit-btn {
    width  :fit-content;
	margin: 20px auto 0;
    font-size: 1.1rem;
}

.site-footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
   max-width:     1200px;
    margin: 0 auto;
   padding: 0 20px;
}

.footer-main {
    display   :      grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
   margin-bottom: 40px;
}

.footer-logo {
     height: 45px; 
    width: auto; 
  filter: brightness(0) invert(1); 
   margin-bottom: 20px;
}

.footer-description {
   color: #ccc;
    line-height: 1.6;
}  

.footer-links {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
	}

.footer-column h4
{
  margin-bottom: 20px;
    color: #fff;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
   margin-bottom: 10px;
}

.footer-column a {
	text-decoration: none; 
	  color: #ccc; 
	   transition: color 0.3s ease;
}

.footer-column a:hover {
      color: #2c5aa0;

}

.contact-info p {
  color: #ccc;
    margin-bottom: 8px;
}

.footer-bottom {
	border-top: 1px solid #333;
  padding-top: 20px;
    text-align: center;
   color: #888;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-item:nth-child(even) {
        direction: ltr;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .benefits-showcase h2,
    .services-section h2,
    .contact-header h2,
    .approach-text h2 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}.about-hero {
                    margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
   color: white;
  text-align    :   center;
}

.about-hero-content h1 {
   font-size: 3rem;
      font-weight: 700;
  margin-bottom: 25px;
   line-height: 1.2;
}

.hero-lead {
  font-size: 1.3rem;
   opacity: 0.9;
    max-width: 800px;
  margin: 0 auto;
    line-height     :     1.6;
	
}

.story-section {
    padding: 100px 0;
   background:     #fff;
}

.story-layout {
      align-items: center;

	grid-template-columns: 1fr 1fr;

  display: grid;

   gap: 70px;}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
          color: #1a1a1a;
}

.story-content p {
   font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

.story-highlight {
    background: #f8f9fa;
  padding: 30px;
    border-left: 4px solid #2c5aa0;
    margin-top: 40px;
  border-radius: 8px;
}

.story-highlight h3 {
    color: #2c5aa0;
  margin-bottom: 15px;
  font-size: 1.4rem;
	}

.story-image img   {
    width: 100%;
   height: auto;
   border-radius :     12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.approach-philosophy {
   padding     :100px 0;
  background: #f8f9fa;
}

.approach-philosophy h2 {
			text-align: center;
   font-size: 2.5rem;
   margin-bottom   :    60px;
    color: #1a1a1a;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.philosophy-item {
                    background: white;
  padding: 45px 35px;
    border-radius: 12px;
	text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.philosophy-item:hover


{
  transform: translateY(-8px);
}

.philosophy-icon {

	    font-size: 3.5rem;
  margin-bottom   :  25px;


}

.philosophy-item h3 {
   font-size: 1.6rem;
    margin-bottom: 20px;
   color: #2c5aa0;
}

.philosophy-item p {
    color:     #666;
  line-height: 1.6;
}

.expertise-section {
    padding: 100px 0;
   background: white;
}

.expertise-content {

		display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items :     center;


}

.expertise-text h2 {
	font-size     :       2.5rem;
   margin-bottom: 30px;
   color: #1a1a1a;
}

.expertise-text > p {
   color: #666;
   line-height: 1.6;
  margin-bottom: 40px;
   font-size    :   1.1rem;
}

.expertise-areas {
   display: flex;
   flex-direction: column;
  gap: 30px;
}

.area-item {
         border-left: 4px solid #2c5aa0;
                    border-radius: 8px;
    background: #f8f9fa;
    padding: 25px;
}

.area-item h4 {
   color:    #2c5aa0;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.area-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.expertise-visual{
     position    : relative;
}

.expertise-visual img {
  width: 100%;
  height: 400px;
    object-fit: cover;
  border-radius: 12px;
}

.stats-overlay {


   position: absolute;
	bottom: -20px;
    left  :  20px;
  right: 20px;
   background: white;
  padding: 25px;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	 display    :      grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 20px;

}

.stat-box {
    text-align: center;
}

.stat-num {
  font-weight: bold;
    font-size  :    2rem;
  color: #2c5aa0;
  display: block;
}

.stat-desc {

	   display: block;
       font-size: 0.9rem;
  color: #666;
     }

.values-section {
      padding: 100px 0;
  background: #f8f9fa;
} 

.values-section h2 {


       text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
    color: #1a1a1a;


}

.values-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;


}

.value-card {
                    padding: 40px 30px;
   border-radius    :       12px;
   text-align: center;
    transition    :    transform 0.3s ease;
}

.value-card:hover {
	  transform: translateY(-5px);


}

.value-card.primary {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
   color: white;
}

.value-card.secondary {
   background: white;
  border: 2px solid #2c5aa0;
}

.value-card.tertiary {

	   background: #1a1a1a; 
       color: white;

}

.value-card h3
{
         font-size: 1.5rem;
  margin-bottom: 20px; 

}

.value-card p


{
    opacity: 0.9;
       line-height: 1.6;
}

.results-showcase	{
   padding: 100px 0;
               background: white;
}

.results-content

{
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  align-items: center;
}

.results-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
	 margin-bottom: 30px;
}

.results-text > p {
   color: #666;
	   line-height: 1.6;
	       margin-bottom: 40px;
	   font-size: 1.1rem;
}

.results-list {
    display: flex;
 flex-direction: column;
               gap: 25px;
}

.result-item {
         display  :  flex; 
  align-items: flex-start; 
   gap: 20px; 
   padding: 20px; 
		background: #f8f9fa; 
    border-radius  :      8px;
}

.result-icon {
    font-size: 2rem;
  flex-shrink: 0;
}

.result-text h4 {
   color: #2c5aa0;
   margin-bottom: 8px;
    font-size: 1.2rem;
}

.result-text p {
   line-height: 1.5;
   color: #666;
  margin: 0;
}

.results-image img {

   width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	}

.future-vision {
   background: #f8f9fa;
  padding: 100px 0;
}

.vision-content h2 {
    text-align: center;
    font-size: 2.5rem;
   margin-bottom: 30px;
   color: #1a1a1a;
}

.vision-lead {

	   text-align: center;
  font-size: 1.3rem;
   color     :  #666;
    max-width: 800px;
   margin: 0 auto 60px;
   line-height: 1.6;
	}

.vision-goals {
   margin-bottom  :   60px;
}

.goal-item {
   display: grid;
   grid-template-columns: 1fr 2fr;
  gap:       50px;
   align-items: center;
  background: white;
   padding: 50px;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}


.goal-item img {
  width: 100%;
    height:       250px;
   object-fit: cover;
   border-radius: 8px;
}

.goal-content h3 {

  font-size: 1.8rem;
   margin-bottom: 20px;
   color: #2c5aa0;


}

.goal-content p {
         color :   #666;
    line-height: 1.6;
   font-size: 1.1rem;
}  

.vision-commitment {
   background: white;
  padding: 50px;
   border-radius     :12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.vision-commitment h3 {
    font-size: 1.8rem;
   margin-bottom    :      25px;
  color: #2c5aa0;
}

.vision-commitment p {
   color: #666;
  line-height: 1.6;
    font-size: 1.1rem;
    max-width    : 800px;
   margin: 0 auto; 
	
}

.thankyou-container {
	  margin-top: 80px;
    padding  :   60px 0 100px;
   background: #f8f9fa;
  min-height: calc(100vh - 80px);
	}

.thankyou-content {

	  margin   :      0 auto;
  text-align     :center;
   max-width: 900px;
}

.success-icon		{
	width: 80px;
  height: 80px;
   background: #28a745;
    color   :   white;
  border-radius: 50%;
	 display: flex;
    align-items: center;
    justify-content    :     center;
   font-size   :      2.5rem;
  font-weight: bold;
    margin: 0 auto 30px;
}

.thankyou-content h1 {

	 font-size: 2.8rem;
  color: #1a1a1a;
   margin-bottom: 25px; 



}

.thankyou-message {
          font-size: 1.2rem;
    color :     #666;
  margin-bottom: 60px;
    line-height: 1.6;
}

.next-steps {
   background: white; 
   padding:50px; 
  border-radius    :     12px; 
	 margin-bottom: 60px; 
  box-shadow: 0 8px 25px rgba(0,0,0,0.08); 
    text-align: left;
}

.next-steps h2
	{
  text-align: center;
   font-size  : 2.2rem;
	 margin-bottom: 40px;
   color: #2c5aa0;
}

.steps-timeline {
   display: flex;
    flex-direction: column;
   gap: 30px;
}

.timeline-item {
  display: flex;
   align-items: flex-start;
    gap: 25px;
    padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
}

.timeline-number
{
    width: 50px;
                    height   :    50px;
  background: #2c5aa0;
   color: white;
    border-radius :     50%;
               display: flex;
   align-items: center;
      justify-content: center;
   font-weight: bold;
  font-size: 1.2rem;
  flex-shrink:       0;
}

.timeline-content h3 {
  color: #1a1a1a;
 margin-bottom  :        10px;
    font-size: 1.3rem;
}

.timeline-content p {


    color: #666;
   margin-bottom: 8px;
  line-height: 1.6;

}

.timeline-duration {

      color: #2c5aa0;
    font-weight    :     600;
 font-size: 0.9rem;


}

.immediate-value {
    background: white;
    padding: 50px;
   border-radius: 12px;
   margin-bottom: 60px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.immediate-value h2 {


   font-size   :    2.2rem;
   margin-bottom: 20px;
    color: #2c5aa0;
   text-align: center;}

.immediate-value > p {
   color: #666;
    margin-bottom: 40px;
  font-size: 1.1rem;
	 text-align: center;
}

.breathing-exercise {
  background    :  #f8f9fa;
    padding: 40px;
      -webkit-border-radius     :     12px;
   border-radius: 12px;
  border-left     :     4px solid #2c5aa0;}

.breathing-exercise h3 {
  margin-bottom: 30px;
   font-size: 1.6rem;
	 text-align: center;
   color: #2c5aa0;


}

.exercise-steps {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap :     30px;
  margin-bottom: 30px;
}

.exercise-step {
	text-align: center;
    padding  :   25px;
  background: white;
  border-radius: 8px;
}

.step-number {
  display: block;
   width: 60px;
   height: 60px;
    background: #2c5aa0;
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
   font-weight: bold;
  margin: 0 auto 15px;
   display: flex;
   align-items: center;
    justify-content: center;
}

.exercise-step p {
    color: #666;
   line-height: 1.5;
   margin: 0;
}

.exercise-note {
   color  :    #666;
	font-style: italic;
	 text-align: center;
	 margin: 0;
    line-height: 1.6;
}

.expectations-info {
	background: white;
  padding: 50px;
   border-radius: 12px;
	 margin-bottom: 60px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.expectations-info h2 {

   font-size: 2.2rem;
   margin-bottom: 40px;
   color: #2c5aa0;
       text-align: center;

}

.expectation-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.expectation-item {
    text-align: center;
   padding: 30px;
    background    :    #f8f9fa;
   border-radius: 8px;


}

.expectation-icon {
			font-size: 2.5rem;
   margin-bottom  :   20px;
}

.expectation-item h4 {

	   font-size   : 1.2rem;
  color: #2c5aa0;
    margin-bottom: 15px;
}

.expectation-item p {


   color: #666;
         line-height: 1.6;
  margin: 0;




}

.thankyou-actions {
     display: flex;
 gap: 25px;
	justify-content: center;
   margin-bottom: 60px;
   flex-wrap: wrap;
}

.emergency-info {
	background: #fff3cd;
   border: 1px solid #ffeaa7;
    padding: 25px;
    border-radius: 8px;
  text-align: center;
}

.emergency-note {


    color: #856404;
   margin: 0;
  font-size: 1rem;
         line-height: 1.6;}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content h2,
    .expertise-text h2,
    .results-text h2 {
        font-size: 2rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats-overlay {
        position: static;
        margin-top: 20px;
        grid-template-columns: 1fr;
    }
    
    .values-layout {
        grid-template-columns: 1fr;
    }
    
    .results-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .goal-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .exercise-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expectation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .next-steps,
    .immediate-value,
    .expectations-info {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .story-content h2,
    .expertise-text h2,
    .results-text h2,
    .vision-content h2 {
        font-size: 1.8rem;
    }
    
    .philosophy-item,
    .area-item {
        padding: 30px 20px;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}.cookies-section,
.privacy-section

{
   padding: 80px 0;
  background: #f8f9fa;
}  

.cookies-content,
.privacy-content {
  max-width: 800px;
               margin: 0 auto;
   padding:     0 20px;
}

.cookies-content h1,
.privacy-content h1 {
	 font-size: 2.5rem;
         color:  #1a1a1a;
    margin-bottom: 30px;
   text-align: center;
}

.cookies-content h2,
.privacy-content h2 {

  font-size: 1.8rem;
   color: #2c5aa0;
    margin: 30px 0 15px;}

.cookies-content p,
.privacy-content p {
          font-size: 1.1rem;
                    color: #666;
	line-height: 1.6;
               margin-bottom: 20px;
}@media (max-width: 480px) {
    .cookies-content h1,
    .privacy-content h1 {
        font-size: 2rem;
    }

    .cookies-content h2,
    .privacy-content h2 {
        font-size: 1.5rem;
    }
}