* {
   margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
   line-height: 1.6;
   color: #2c3e50;
    background-color: #f8fafa;
}

.container {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;

}

.nav-container {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
   padding: 1rem 0;
	position: fixed;
    top:0;
   width: 100%;
   z-index: 1000;
  box-shadow: 0 2px 10px 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;
}

.nav-logo {
    height: 45px;
	width: auto;
}

.nav-links {
   display: flex;
  gap: 2rem;

}

.nav-item {
   color    :        white;
   text-decoration: none;
  font-weight: 500;
     transition    :      color 0.3s ease;
  font-size   :   1.1rem;
}

.nav-item:hover {
  color: #f1c40f;
}

.burger-menu {
  display: none;
    flex-direction: column;
    cursor: pointer;
   gap: 4px;
}

.burger-menu span {
	 width: 25px;
  height: 3px;
	background: white;
    transition: 0.3s;
}

.mobile-nav {
   display: none;

          background: #27ae60;

       padding: 1rem;
}

.mobile-nav-item {
    display: block;
   color   :    white;
   text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.hero-section {
  display: flex;
    align-items: center;
  min-height: 100vh;
   padding: 120px 20px 60px;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  max-width     :        1200px;
  margin: 0 auto;
  gap: 3rem;
}

.hero-content {
  flex: 1;
	 max-width: 550px;
}

.hero-content h1 {
  color  :     #2c3e50;
  margin-bottom: 1.5rem;
	font-weight: 700;
   line-height: 1.2;
  font-size:      3.2rem;
}

.hero-subtitle {
	margin-bottom :     2.5rem;
               line-height: 1.6;
    font-size: 1.3rem;
   color: #34495e;
}

.hero-actions {
   gap: 1.5rem;
    display: flex;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary	{

		padding: 1rem 2rem;
    text-decoration: none;
   -moz-border-radius: 8px;
     border-radius: 8px;
          -webkit-border-radius    :     8px;
  font-weight: 600;
  transition: all 0.3s ease;
   display   :   inline-block;
}

.cta-primary {
    background: #e67e22;
    color  :      white;
}

.cta-primary:hover {
   background: #d35400;
  transform: translateY(-2px);
}

.cta-secondary {
	background    :     transparent;

  color: #27ae60;

  border: 2px solid #27ae60;
}

.cta-secondary:hover {
        background: #27ae60;
    color: white;
}

.hero-visual {
    flex: 1;
  max-width: 500px;
}

.hero-image {
  width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-section {
   padding: 80px 20px;
  background: white;
}

.expertise-section h2


{
  text-align: center;
    font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 3rem;
   font-weight: 600;
}

.expertise-grid {
  display     :   grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
 max-width: 1200px;
                    margin: 0 auto;
}

.expertise-card {
   background: #f8f9fa;
    border-radius: 12px;
   border: 1px solid #e9ecef;
   overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.expertise-img {
   width :    100%;
                    height: 220px;
   object-fit: cover;
}

.expertise-card h3 {
    font-size     : 1.5rem;
  color: #2c3e50;
  padding: 1.5rem 1.5rem 0.5rem;
     font-weight: 600;
}

.expertise-card p {
    padding: 0 1.5rem 1.5rem;

	    color: #5a6c7d;

	    line-height: 1.6;
}

.workshop-highlight {


    padding: 80px 20px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white; 
	
     }

.workshop-content {
  max-width:     1200px;
  margin: 0 auto;
     display: grid;
        grid-template-columns: 1fr 1fr;
  gap    :4rem;
	 align-items    :   center;
}

.workshop-text h2 {
  font-size: 2.5rem;
    margin-bottom  :      1.5rem;
        font-weight: 600;

}

.workshop-text p {
   font-size: 1.1rem;

    margin-bottom: 2rem;

  line-height: 1.7;

  opacity   :       0.95;
}

.workshop-benefits {
    list-style: none;
   padding: 0;
}

.workshop-benefits li
	{
    padding: 0.7rem 0;
	position:       relative;
  padding-left: 2rem;
   font-size: 1.05rem;
}

.workshop-benefits li:before {
  content: "✓";
   position: absolute;
        left: 0;
  color: #f1c40f;
    font-weight: bold;
  font-size: 1.2rem;
}

.workshop-image {
    width: 100%;

	  height:      auto;

	   border-radius: 12px;

	  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cta-section
{
  padding: 80px 20px;
  background: #2c3e50;
   color: white;
         text-align: center;
     }

.cta-content h2  
  {


    font-size: 2.8rem;
  margin-bottom    :      1.5rem;
    font-weight    :     600;
}

.cta-content p {
   font-size: 1.2rem;
	margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
	margin-right   : auto;
   line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
  background: #e74c3c;
   color    :       white;
    padding: 1.2rem 2.5rem;
  text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
  background: #c0392b;
  transform: translateY(-2px);

}

.contact-section {


   padding: 80px 20px;
    background  :       #ecf0f1;
	}

.contact-section h2	{
   text-align   :       center;
   font-size: 2.8rem;
    color: #2c3e50;
	margin-bottom     :     3rem;
  font-weight: 600;
}

.contact-wrapper {
   max-width: 1000px;
  margin: 0 auto;
  display: grid;
       grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info h3 {
	font-size: 1.8rem;
  color   :       #2c3e50;
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact-item {
  margin-bottom    :      1.5rem; 

}

.contact-item strong {
      color: #27ae60;
  display: block;
        margin-bottom: 0.5rem;
  font-size: 1.1rem;


}

.contact-item p  {
    color: #5a6c7d;
   line-height: 1.6;
}

.contact-form		{
     background: white;
   padding: 2.5rem;
          border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;


}

.form-group label {
  display: block;
   margin-bottom :     0.5rem;
   color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
	padding: 0.8rem;
  border: 2px solid #bdc3c7;
  border-radius: 6px;
   font-size  :     1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 border-color: #27ae60;
  outline: none;
}

.submit-btn {
    background: #27ae60;
  color: white;
   padding: 1rem 2rem;
    border: none;
        border-radius  :        6px;
  font-size: 1.1rem;
    font-weight: 600;
  cursor: pointer;
  transition     :background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
	    background: #219a52;}

.footer-section {
   background: #2c3e50;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
   max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 2rem;


}

.footer-logo {
   height: 40px;
   width: auto;
          margin-bottom: 1rem;
  filter: brightness(0) invert(1);
	
}

.footer-brand p {

	   color: #bdc3c7;
    line-height: 1.6;
  margin-bottom: 1rem;}

.footer-links h4,
.footer-legal h4,
.footer-contact h4  {
    margin-bottom: 1rem;
    color :       #ecf0f1;
  font-weight: 600;


}

.footer-links ul,
.footer-legal ul {
    list-style: none;
	 padding: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a  
  {
    color: #bdc3c7;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #f1c40f;
}

.footer-contact p {
  color     :       #bdc3c7;

  margin-bottom: 0.5rem;

   line-height: 1.6;
}

.footer-bottom {
  margin-top: 2rem;
   padding-top  :        2rem;
   text-align     :    center;
  border-top: 1px solid #34495e;
    color: #95a5a6; 

}@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 40px;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .expertise-section h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.nav-item.active {
        color: #f1c40f;
    font-weight: 600;
}

.about-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   color: white;
  padding: 140px 20px 80px;
   text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
   margin-bottom: 1.5rem;
  font-weight: 700;
         max-width: 900px;
    margin-left   :  auto;
   margin-right: auto;
}

.about-lead {
    font-size: 1.4rem;
    line-height: 1.7;
  max-width: 800px;
   margin: 0 auto;
   opacity: 0.95;
}

.story-section {

    padding    :       80px 20px;
  background: #f8f9fa;
     }

.story-grid {

	  max-width: 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: 2fr 1fr;
   gap: 3rem;
  align-items: center;}

.story-content h2 {
    font-size: 2.5rem;
	 color: #2c3e50;
  margin-bottom: 2rem;
    font-weight    :600;
}

.story-content p {
    font-size: 1.1rem;
   line-height: 1.7;
  color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.key-achievements {
  background: white;
  padding: 2rem;
   border-radius: 10px;
               margin-top: 2.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);

}

.key-achievements h3		{
   color: #27ae60;
    font-size: 1.5rem;
  margin-bottom: 1rem;
   font-weight: 600;

}

.key-achievements ul {
   list-style: none;
    padding: 0;
}

.key-achievements li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ecf0f1;
                    color: #34495e;
  position: relative;
    padding-left: 2rem;
	
}


.key-achievements li:before {
  content: "▶";
  position: absolute;
    left: 0;
    color  :   #e67e22;
 font-size: 0.8rem;
}

.story-image {
  width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.expertise-deep {
  padding: 80px 20px;
  background: white;
}



.expertise-deep h2 {
   text-align: center;
    font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 4rem;
  font-weight  :   600;
}

.expertise-showcase {
    max-width: 1200px;
  margin: 0 auto;
}

.expertise-item {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
  margin-bottom: 4rem;
    align-items: center;
}

.expertise-item.reverse {
    direction: rtl; 
	
}

.expertise-item.reverse .expertise-details {
    direction: ltr; 
	
}

.expertise-visual {
   width: 100%;
   height:    280px;
   object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.expertise-details h3
	{
  font-size: 2rem;
       color    :  #2c3e50;
	 margin-bottom: 1.5rem;
   font-weight: 600;
}

.expertise-details p {
   font-size: 1.1rem;
  line-height   :       1.7;
   color: #5a6c7d;
  margin-bottom: 2rem;
}

.expertise-specs {
  display: flex;
    flex-wrap: wrap;
  gap: 0.8rem;

}

.expertise-specs span		{

    background: #ecf0f1;
    color : #2c3e50;
  padding: 0.5rem 1rem;
   border-radius: 20px;
               font-size: 0.9rem;
   font-weight: 500;
	}

.methodology-section {

	padding: 80px 20px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;}

.methodology-section h2 {

	   text-align: center;
    font-size    :       2.8rem;
  margin-bottom: 4rem;
   font-weight: 600;
	}

.method-steps {
  max-width: 1000px;
  margin    :     0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.method-step {
  text-align: center;
  background: rgba(255,255,255,0.1);
      padding: 2.5rem 1.5rem;
   border-radius :     12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.step-number {
   font-size   :  3rem;
  font-weight: 700;
    color:       #f1c40f;
    margin-bottom  :        1rem;
}

.method-step h3   {
     font-size: 1.3rem;
  margin-bottom: 1rem;
               font-weight: 600;
}

.method-step p    {
      line-height: 1.6;
   opacity: 0.9;
}

.values-commitment {
   padding: 80px 20px;
               background:     #f8f9fa;
}

.values-grid  {
    max-width: 1200px;
  margin  :     0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.values-content h2 {
      font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.values-content p {
    font-size: 1.1rem;
	  line-height: 1.7;
	  color: #5a6c7d;
		margin-bottom: 2.5rem;
}

.value-points {
   display: flex;
   flex-direction: column;
     gap:1.5rem;
}



.value-point
	{
  background    :     white;
   padding:   1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.value-point h4 {
    color: #27ae60;
   font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight   :      600;
}

.value-point p {
  color: #5a6c7d;
   line-height: 1.6;
  margin: 0;
}

.values-image {
    width: 100%;
    height   :  auto;
    border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cta-about {
      padding: 80px 20px;
   background: #e67e22;
  color: white;
   text-align: center; 

}

.cta-about-content h2 {
	 font-size: 2.8rem;
    margin-bottom: 1.5rem;
  font-weight: 600;
}  

.cta-about-content p {
	font-size: 1.2rem;
  margin-bottom: 2.5rem;
   max-width: 700px;
    margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
    opacity: 0.95;
}

.cta-button-about {
   background: white;
   color: #e67e22;
    padding: 1.2rem 2.5rem;
      text-decoration: none;
    border-radius    : 8px;
  font-weight: 600;
                    font-size: 1.1rem;
  transition: all 0.3s ease;
    display: inline-block;
} 

.cta-button-about:hover {
  background: #ecf0f1;
  transform: translateY(-2px);
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
                    color: white;
    padding: 140px 20px 80px;
  text-align: center;
}

.thankyou-content {
  max-width: 800px;
   margin: 0 auto;
}

.success-indicator {
  margin-bottom: 2rem;


}

.checkmark-circle {
  width: 80px;
    height: 80px;
    border-radius: 50%;
  background: rgba(255,255,255,0.2);
	display: flex;
  align-items: center;
   justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(10px);
}

.checkmark {
   width: 30px;
   height: 15px;
		border: 3px solid white;
  border-top: none;
    border-right: none;
  transform: rotate(-45deg);
}

.thankyou-content h1 {
   font-size: 3rem;
   	margin-bottom: 1.5rem;
            font-weight: 700;
}

.thankyou-subtitle {
	 font-size: 1.3rem;
  line-height: 1.7;
    opacity: 0.95; 

}

.next-steps {

	    padding: 80px 20px;
          background: white;
     }

.next-steps h2{
   font-weight: 600;
  margin-bottom: 4rem;
  font-size: 2.8rem;
    color:        #2c3e50;
	 text-align :   center;
}

.steps-timeline 
 {
     max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
   margin-bottom: 3rem;
         align-items: flex-start;
}

.timeline-marker  {
    width: 50px;
               height:     50px;
    background  :#3498db;
  color: white;
    border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content    :       center;
    font-weight  :  700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content {
  flex :        1;
}

.timeline-content h3 {

	  font-size   :   1.5rem;
    color: #2c3e50;
   margin-bottom: 0.5rem;
  font-weight: 600;}

.timeline-content p {
  color: #5a6c7d;
  line-height: 1.6;
   margin-bottom: 0.5rem;
}

.timeline-duration {
    color: #27ae60; 
	   font-weight: 600; 
	  font-size: 0.9rem;
}

.while-waiting {
        padding: 80px 20px;
    background: #f8f9fa;
}

.waiting-content {
   max-width: 1200px;

	  margin  :       0 auto;

	   display: grid;

	    grid-template-columns: 2fr 1fr;

	  gap: 3rem;

	    align-items  :   center;
}

.waiting-text h2 
 {
   font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom     :    1.5rem;
     font-weight: 600; 

}

.waiting-text p {
   font-size: 1.1rem;
                    line-height: 1.7;
  color: #5a6c7d;
  margin-bottom: 2rem;
}

.preparation-tips {

	  background    :    white;
    padding    :      2rem;
    border-radius  :        10px;
    margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	}

.preparation-tips h3 {
  color: #3498db;
   font-size: 1.3rem;
               margin-bottom  : 1rem;
    font-weight: 600;
}

.preparation-tips ul {
  list-style: none;
	padding: 0;
}

.preparation-tips li {
   padding: 0.5rem 0;
	color:    #34495e;
    position: relative;
   padding-left: 1.5rem;
}

.preparation-tips li:before {
  content: "✓";
    position: absolute;
    left: 0;
   color: #27ae60;
    font-weight: bold;
}

.contact-reminder {
  background: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
  border-left: 4px solid #e67e22;
}

.contact-reminder h4 {
  color: #e67e22;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-reminder p {
      color: #2c3e50;
   margin: 0.5rem 0;
    font-weight: 500;
     }

.waiting-image {
    width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);

}

.resources-preview {
    padding: 80px 20px;
   background: white;
}

.resources-preview h2 {
    text-align: center;
   font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 3rem;
  font-weight: 600; 

}

.resources-grid {
	max-width:1000px;
  margin: 0 auto;
  display:     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.resource-card {
    background: #f8f9fa;
  padding: 2rem;
   border-radius: 12px;
  text-align: center;
  border: 1px solid #ecf0f1;
   transition     :      transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px); 
	  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.resource-card h3 {
	font-size: 1.3rem;
 color: #2c3e50;
  margin-bottom:  1rem;
    font-weight    :        600;
}

.resource-card p {
  color: #5a6c7d;
         line-height: 1.6;
}

.cta-thankyou {
        padding: 80px 20px;
  background: #34495e;
  color: white;
   text-align: center;
}

.cta-thankyou-content h2 {
   font-size: 2.8rem;
   margin-bottom: 1.5rem;
   font-weight: 600;
	
}

.cta-thankyou-content p {
   margin-right   :auto;
		margin-bottom: 2.5rem;
    max-width  :700px;
  opacity: 0.9;
     line-height: 1.6;
  margin-left: auto;
   font-size: 1.2rem;
}

.cta-actions {
   display: flex;
  gap   : 1.5rem;
   justify-content: center;
   flex-wrap: wrap;}

.cta-btn-primary {
    background: #27ae60;
  color  :  white;
         padding: 1.2rem 2.5rem;
               text-decoration: none;
   border-radius: 8px;
    font-weight  :     600;
   font-size: 1.1rem;
  transition: all 0.3s ease;
   display: inline-block;
}

.cta-btn-primary:hover 
 {
         background: #219a52; 
	  transform: translateY(-2px);
}

.cta-btn-secondary {
   background: transparent;
    color  :      white;
  padding: 1.2rem 2.5rem;
	text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
  font-size: 1.1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn-secondary:hover {
  background: white;
   color: #34495e;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .about-lead {
        font-size: 1.2rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-item.reverse {
        direction: ltr;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.3rem;
    }
    
    .thankyou-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.9rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.9rem;
    }
    
    .expertise-deep h2,
    .next-steps h2,
    .resources-preview h2 {
        font-size: 2.2rem;
    }
    
    .method-step {
        padding: 2rem 1rem;
    }
    
    .preparation-tips,
    .key-achievements {
        padding: 1.5rem;
    }
}.privacy-section {
    padding: 80px 20px;
   background: white;
    max-width: 1200px;
	 margin: 0 auto;

}

.privacy-section h2 {
  font-size     :       2.8rem;
   color    :     #2c3e50;
  margin-bottom: 2rem;
    font-weight   : 600;
  text-align: center;
}

.privacy-section h3 {
    font-size: 1.8rem;

	  color: #2c3e50;

	  margin:  1.5rem 0;

	               font-weight: 600;
}

.privacy-section p {
    font-size: 1.1rem;
   color: #5a6c7d;
   line-height: 1.7;
    margin-bottom: 1.5rem;
}@media (max-width: 768px) {
    .privacy-section {
        padding: 60px 20px;
    }

    .privacy-section h2 {
        font-size: 2.2rem;
    }

    .privacy-section h3 {
        font-size: 1.6rem;
    }

    .privacy-section p {
        font-size: 1rem;
    }
}