* {
  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: #fafafa;
}

.container {
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}



.primary-nav {
	  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
  top: 0;
   width: 100%;
   z-index     : 1000;
   border-bottom: 1px solid #e0e0e0;}

.nav-wrapper {
   max-width:      1200px;
  margin: 0 auto;
  display: flex;
	justify-content: space-between;
    align-items     :center;
   padding: 15px 20px;
}

.brand-section {
                    display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height   :     40px;
    width: auto;


}

.brand-text {

               font-size: 24px;
   font-weight: 700;
   color: #2c3e50;
}

.nav-links		{
  display    : flex;
   list-style: none;
               gap: 30px;
}

.nav-links a {
	text-decoration: none;
   color   : #555;
  font-weight: 500;
   transition: color 0.3s ease;
}

.nav-links a:hover  
  {
                    color: #3498db;
}

.mobile-toggle {
  display  :        none;
   cursor: pointer;
  gap     : 4px;
  flex-direction: column;
}

.mobile-toggle span {
  width: 25px;
  -webkit-transition: 0.3s;
   -moz-transition: 0.3s;
  height: 3px;
    background: #333;
   transition: 0.3s;
}

.mobile-menu {
  display: none; 
	    position     :       fixed; 
	   top: 70px; 
	  left: 0; 
	   width: 100%; 
	       background: white; 
	  box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
	   flex-direction: column; 
	   padding: 20px; 
	   z-index: 999;
}

.mobile-menu a {
    padding: 15px 0;
  text-decoration: none;
   color: #333;
  border-bottom: 1px solid #eee;

}

.hero-section		{
   display: flex;
  align-items: center;
    min-height: 100vh;
   padding: 120px 20px 60px;
   max-width: 1200px;
	margin: 0 auto;
  gap: 60px;
}

.hero-content {

   flex: 1;


}

.hero-content h1 {
    font-size: 48px;
   font-weight: 800;
    color    :      #1a252f;
  margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
   color: #666;
  margin-bottom: 30px;
    line-height  :    1.6;
}

.hero-actions {
     display: flex;
        gap: 20px;
       flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
  padding: 15px 30px;
   text-decoration: none;
   border-radius: 8px;
    font-weight    :600;
	transition: all 0.3s ease;
   display    :      inline-block;
}

.primary-btn {

  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;

}

.primary-btn:hover 
 {
  background: linear-gradient(135deg, #2980b9, #21618c);
  transform: translateY(-2px);
     }

.secondary-btn {
    background  :       transparent;
    color: #3498db;
    border: 2px solid #3498db;


}

.secondary-btn:hover {
	 background: #3498db;
  color :    white;
} 

.hero-visual   {
  flex: 1;
}

.hero-visual img {

	    width: 100%;
		 height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
     }

.intro-section {
  padding: 80px 0;
  background: white;
}

.intro-grid {


  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items  : center;
     }

.intro-text h2		{
  font-weight: 700;
   margin-bottom: 25px;
    color: #2c3e50;
	 font-size: 36px;
}

.intro-text p {
  font-size: 18px;
  color: #555;
    margin-bottom: 20px;
               line-height: 1.7;
}

.intro-image img {
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-section h2 {
   text-align: center;
    font-size: 40px;
  color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
	   background: white;
  padding: 35px;
      border-radius  :12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	

}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 24px;
   color :    #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
        font-size: 16px;
}

.methodology-section {
  background: white;
  padding   :80px 0;
}

.method-content {
  display: grid;
	 grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items    : center;
}

.method-text h2  
  {
	 font-size: 36px;
  color: #2c3e50;
    margin-bottom: 30px;
  font-weight: 700;
}

.method-text h3 {
    font-size     :    22px;
    color: #34495e;
  margin: 25px 0 15px;
  font-weight  :    600;
}

.method-text p {
    font-size: 16px;
    color: #555;
   line-height: 1.7;
  margin-bottom: 20px;
} 

.method-visual img {


   width   :       100%;
  border-radius  :        12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
     }

.cta-section {
   padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
    color    :       white;
	text-align     :      center;
}

.cta-content h2    {
   font-size: 42px;
	 margin-bottom: 20px;
   font-weight: 700;
}

.cta-content p {
  font-size: 20px; 
	   margin-bottom: 30px; 
	  opacity: 0.9; 
	  line-height: 1.6;
	
}

.cta-button {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
	padding: 18px 40px;
    text-decoration     :  none;
    border-radius   :    8px;
  font-weight:     600;
   font-size: 18px;
    transition: all 0.3s ease;
     display: inline-block;
} 

.cta-button:hover
{
  background: linear-gradient(135deg, #c0392b, #a93226);
  transform: translateY(-3px);
}

.expertise-section {
   padding  :        80px 0;
  background: #f8f9fa;
}

.expertise-section h2 {
	   text-align: center;
    font-size: 40px;
         color: #2c3e50;
  margin-bottom: 60px;
   font-weight: 700; 


}

.expertise-grid {

	    display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;

}

.expertise-item {
   background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  border-left: 4px solid #3498db;
}

.expertise-item h4   {

	  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
     }

.expertise-item p {
   color: #666;
 line-height: 1.6;
	font-size: 15px;
}

.workshop-preview {
   padding: 80px 0;
  background: white;
	}

.workshop-layout {
	    display: grid;
   grid-template-columns: 1fr 1fr;
          gap    :     60px;
   align-items: center;


}

.workshop-image img  {
	 width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.workshop-details h2 {
   	margin-bottom: 20px;
  color: #2c3e50;
   font-weight: 700;
  font-size: 36px;
     }

.workshop-details h3 {
   font-size: 24px;
   color: #34495e;
	margin-bottom: 20px;
   font-weight: 600;
}

.workshop-details p {

	  line-height: 1.7;
    color: #555;
  font-size: 16px;
   margin-bottom: 25px;


	}

.workshop-features {
          list-style   :none;
}

.workshop-features li {
  padding: 8px 0;
	color: #555;
  position: relative;
  padding-left: 20px;
}

.workshop-features li:before {
   font-weight: bold;
   left: 0;
  content: "✓";
	color: #27ae60;
    position: absolute;
}

.contact-section {

  padding: 80px 0;
    background: #f8f9fa;


}

.contact-layout {
	display :  grid;
	grid-template-columns: 1fr 1fr;
   gap: 60px;
}

.contact-info h2 {
	    font-size: 36px;
   color     : #2c3e50;
   margin-bottom: 20px;
  font-weight: 700;
}

.contact-info p {
   font-size: 18px;
	color: #555;
   margin-bottom:  30px;
   line-height: 1.6;
}

.contact-item		{
			 margin-bottom: 25px;}

.contact-item h4
	{
   font-size: 18px;
         color: #2c3e50;
	margin-bottom: 8px;
   font-weight: 600;
}

.contact-item p {
   color: #666;
       font-size: 16px;
    margin-bottom: 0;
}


.consultation-form {
   background: white;
  padding: 35px;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
	  display     :   block;
    margin-bottom: 5px;
  color  :#2c3e50;
	 font-weight: 500;
	}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
   border: 2px solid #e0e0e0;
  border-radius: 6px;
                    font-size: 16px;
  transition: border-color 0.3s ease; 
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
	
}

.submit-btn {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
   color: white;
	padding: 15px 30px;
   border :none;
   border-radius: 6px;
   font-size: 16px;
  font-weight: 600;
   cursor:   pointer;
    transition: all 0.3s ease;
    width: 100%; 

}

.submit-btn:hover {
  background: linear-gradient(135deg, #229954, #27ae60);
  transform: translateY(-2px);
}

.expansion-section {

  padding: 80px 0;
   background: white;

}

.expansion-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap     :  60px;
  align-items: center;
}


.expansion-visual img {
    width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.expansion-text h2 {
       font-size: 36px;
    font-weight: 700;
     color: #2c3e50;
   margin-bottom: 25px; 
	
}

.expansion-text p {
   font-size: 16px;
	    color    : #555;
	    line-height: 1.7;
	    margin-bottom: 20px;
}

.main-footer {
			background: #2c3e50;
                    color: white;
    padding: 60px 0 20px;
}

.footer-content
	{
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
    display: grid;
	grid-template-columns  :     2fr 1fr 1fr;
   gap: 40px;
}

.footer-logo {
    height  :50px;
          margin-bottom  :     15px;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: #bdc3c7;
  line-height: 1.6;
    font-size: 15px;
}

.link-column h4,
.footer-contact h4 {
   margin-bottom    :      15px;
 color: white;
   font-weight: 600;
}

.link-column a {

	  display   :   block;
    color: #bdc3c7;
	text-decoration: none;
    margin-bottom: 8px;
                    transition: color 0.3s ease;

}

.link-column a:hover {
  color: white;
}

.footer-contact p {
    color: #bdc3c7;
   margin-bottom: 8px;
	 font-size    :    15px;
}

.footer-bottom {
  border-top: 1px solid #34495e;
    margin-top: 40px;
  padding-top: 20px;
   text-align: center;
    max-width   :     1200px;
    margin-left: auto;
   margin-right: auto;
}

.footer-bottom p {
  color: #95a5a6;
  font-size: 14px;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 100px 20px 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .intro-grid,
    .method-content,
    .workshop-layout,
    .contact-layout,
    .expansion-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-actions {
        justify-content: center;
    }
}.page-header {
   padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
   text-align: center;
}

.page-header h1 {
   font-size: 48px;
 color: #2c3e50;
  margin-bottom: 15px;
    font-weight: 800;
}

.header-subtitle
	{
    font-size: 20px;
   color: #666;
  max-width: 600px;
   margin  :      0 auto;
   line-height: 1.5;
}

.company-story 
 {
   padding: 80px 0;
	background: white;
}

.story-layout {
   display: grid;
        grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
         font-size: 36px;
    color: #2c3e50;
 margin-bottom: 25px;
    font-weight: 700;
}

.story-content p {
     font-size     : 16px;
   color:    #555;
	 line-height: 1.7;
    margin-bottom: 20px;


}

.story-visual img {
    width: 100%;
    border-radius : 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.mission-values {
	   padding: 80px 0;
   background: #f8f9fa;
	}

.mission-grid {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
}

.mission-card, .values-card {
   background: white;
  padding: 40px;
   border-radius    :     12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mission-card h3, .values-card h3
	{
	     font-size: 28px;
    color: #2c3e50;
	margin-bottom: 20px;
  font-weight: 700;
}

.mission-card p {
   font-size: 16px;
   color: #555;
    line-height     : 1.7;
}

.values-list {
    list-style: none;
		padding: 0;
}

.values-list li {
   position: relative;
   color: #555;
   padding-left: 25px;
  line-height: 1.6;
  font-size: 16px;
  padding: 10px 0;
	
}

.values-list li:before		{
  content: "•";
   position: absolute;
  left :      0;
	color: #3498db;
   font-weight: bold;
	 font-size: 20px;
}

.team-expertise {
  padding: 80px 0; 
	 background: white;

}

.team-expertise h2 {
    text-align: center;
  font-size: 40px;
                    color: #2c3e50;
    margin-bottom   :  60px;
    font-weight :  700;
}

.expertise-showcase {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
       align-items: center;
}

.expertise-visual img {
               width: 100%;
	border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.expertise-details h3

{
    font-size: 28px;
 color: #2c3e50;
	margin-bottom: 20px;
  font-weight: 700;
}

.expertise-details p {
    font-size   :        16px;
   margin-bottom: 30px;
          line-height: 1.7;
   color: #555;
     }

.experience-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {

	    text-align: center;
}

.stat-number  {
	display :        block;
  font-size: 36px;
  font-weight     :     800;
  color: #3498db;
   line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
	 color: #666;
  margin-top: 5px;
  font-weight :500;

}

.methodology-deep {
   padding: 80px 0;

	  background: #f8f9fa;

}

.methodology-layout {
  display: grid;
    grid-template-columns  :     1fr 1fr;
  gap  :    60px;
   align-items: center;
}

.method-description h2 {
   font-size :  36px;
	   color: #2c3e50;
	   margin-bottom: 30px;
	 font-weight: 700;
}



.method-description h4 {
       font-size: 20px;
  color: #34495e;
    margin: 25px 0 10px;
   font-weight: 600;
}

.method-description p {

  font-size: 16px;
   color: #555;
    line-height: 1.7;
  margin-bottom: 20px;}

.method-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.workshop-philosophy  {
   padding: 80px 0;
	 background: white;
}

.workshop-content {
	  display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
	}

.workshop-image-section img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.workshop-text-section h2 {
	 font-size: 36px;
  color: #2c3e50;
    margin-bottom: 25px;
	 font-weight: 700; 

}

.workshop-text-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
   margin-bottom: 20px;
}

.workshop-benefits {
   margin-top: 30px;
}

.workshop-benefits h4 {
    font-size: 18px;
         color: #2c3e50;
      margin-bottom: 15px;
    font-weight: 600;
}

.workshop-benefits ul {

	  list-style :   none;
  padding: 0;}

.workshop-benefits li {
    padding: 8px 0;
   color:    #555;
               position: relative;
   padding-left: 25px;
}

.workshop-benefits li:before {
  content: "✓";
   position : absolute;
  left: 0;
    color: #27ae60;
   font-weight: bold;
}

.business-approach {
   padding: 80px 0;
    background: #f8f9fa; 
	
}

.approach-grid  
  {
    display   :   grid;
   grid-template-columns: 1fr 1fr;
    gap  : 60px;
  align-items: center;
}

.approach-text h2 {
    font-size    :       36px;
  color: #2c3e50;
  margin-bottom: 25px;
    font-weight: 700;
}

.approach-text p {
  font-size: 16px;
  color: #555;
   line-height: 1.7;
    margin-bottom: 20px;
}

.approach-image img {
      width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);}

.commitment-section {
  padding: 80px 0;
    background: white;
}

.commitment-content h2 {
  text-align: center;
    font-size    :     40px;
    color: #2c3e50;
  margin-bottom: 20px;
   font-weight :        700;
}

.commitment-intro {
    margin-bottom: 50px;
	line-height: 1.6;
    text-align     :       center;
   max-width: 700px;
   font-size: 18px;
  margin-right: auto;
    margin-left:        auto;
	color: #666;


}

.commitment-points {
  display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap     :       30px;
}

.commitment-item {
   padding: 30px;
  text-align: center;
}

.commitment-item h4 {
  font-size: 22px;

	   color: #2c3e50;

	   margin-bottom: 15px;

	    font-weight     :       600;
}

.commitment-item p {
   font-size: 15px;
   color: #666;
    line-height: 1.6;
}

.thankyou-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
   text-align: center;
}

.thankyou-content h1 {
    font-size: 48px;
   font-weight: 800;
    margin-bottom: 20px;
}

.thankyou-message {
     font-size     :    20px;
  max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
   opacity: 0.95;}

.success-icon {
    margin-bottom: 30px;
}

.checkmark-circle {
  width:        80px;
   height: 80px;
   border-radius: 50%;
  background: rgba(255,255,255,0.2);
    display: inline-flex;
  align-items: center;
   justify-content: center;
    margin: 0 auto;
}

.checkmark {
    width  :       25px;
    height: 15px;
	border: solid white;
   border-width: 0 0 4px 4px;
  transform: rotate(-45deg);
}

.next-steps {
   padding: 80px 0;
	 background: white;
}

.steps-layout {
	display: grid;
        grid-template-columns: 1fr 1fr;
                    gap  :      60px;
	 align-items: center;
}

.steps-content h2 {
  font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
   font-weight: 700;
}

.process-steps {
   display: flex;
	    flex-direction: column;
	  gap: 30px;
}

.step-item {
	display: flex;
  gap: 20px;
    align-items: flex-start;
}

.step-number {
      width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #3498db;
       color: white;
     display: flex;
     align-items: center;
     justify-content  : center;
     font-weight: bold;
       font-size: 18px;
       flex-shrink: 0;
     }

.step-details h3 {
   font-size: 20px;
    color:   #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-details p {
    font-size: 15px;
   color: #666;
 line-height: 1.6; 
	
}

.steps-visual img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.preparation-tips {
    padding: 80px 0;
      background: #f8f9fa;

}

.tips-layout {
    grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 60px;

  display   : grid;
}

.tips-image img {

    width: 100%;
   border-radius:      12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
     }

.tips-content h2 {
    font-size: 32px;

                    color:#2c3e50;

    margin-bottom: 20px;

   font-weight: 700;
}

.tips-content p {
   font-size     :        16px;
    color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.preparation-list {
     list-style: none;
  padding: 0;
  margin: 25px 0;


}


.preparation-list li {
      padding-left    :       25px;
	padding: 10px 0;
    font-size: 15px;
   color: #555;
		 position: relative;
}

.preparation-list li:before {
  content: "→";
   position: absolute;
                    left: 0;
   color: #3498db;
	font-weight: bold;
}

.tips-note {
  background: rgba(52, 152, 219, 0.1);

   padding: 15px;

   border-radius: 8px;

    font-style: italic;

      color  :       #2c3e50;

  border-left: 4px solid #3498db;
}

.while-waiting {
	padding: 80px 0;
   background: white;
}

.waiting-content h2 {
   text-align   :  center;

   font-size: 36px;

  color: #2c3e50;

      margin-bottom: 50px;

   font-weight: 700;
	
}

.waiting-grid {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.waiting-card {
    background: #f8f9fa;
               padding: 30px;
   border-radius: 12px;
   text-align: center;
   transition: transform 0.3s ease;
}

.waiting-card:hover {
  transform: translateY(-5px);

}

.waiting-card h4 {
   font-size: 20px;
  color: #2c3e50;
  margin-bottom: 15px;
   font-weight: 600;
}

.waiting-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}



.success-stories-preview {
	 padding: 80px 0;
  background: #f8f9fa;
}

.success-layout {
        display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items: center; 
	
}

.success-text h2 {
	 font-size: 36px;
  color :   #2c3e50;
    margin-bottom: 25px;
   font-weight: 700;
}

.success-text p {
  font-size: 16px; 
	   color   :     #555; 
	    line-height: 1.7; 
		margin-bottom: 30px;


}

.success-stats {
   display: flex;
  gap: 30px;
   flex-wrap: wrap;
}  

.success-stat {
    text-align: center;
}

.stat-value		{
   display   : block;
   font-size: 32px;
   font-weight: 800;
			color :  #27ae60;
   line-height   :     1;
}

.stat-desc {
  display: block;
  font-size   :13px;
    color: #666;
  margin-top: 5px;
  max-width: 120px;
    line-height: 1.3;
}

.success-visual img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.final-message {
    background: white;
    text-align: center;
   padding: 80px 0;
}

.final-content h2 {
	font-size: 40px;
   color: #2c3e50;
   margin-bottom: 20px;
  font-weight: 700;
}

.final-content p {
     font-size: 18px;
    color  : #666;
	margin-bottom: 30px;
  max-width: 600px;
    margin-left: auto;
     margin-right: auto;
   line-height   :    1.6;
}

.final-actions {
  display: flex;
   gap: 20px;
    justify-content: center;
  flex-wrap: wrap;
} 

.return-home, .learn-more {
   padding: 15px 30px;
  text-decoration: none;
  border-radius    :   8px;
  font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block;
}

.return-home {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.return-home:hover {
  background: linear-gradient(135deg, #2980b9, #21618c);
  transform: translateY(-2px);
}

.learn-more {
    background: transparent;
    color: #3498db;
  border: 2px solid #3498db;


}

.learn-more:hover {
  background: #3498db;
    color: white;
}@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .story-layout,
    .mission-grid,
    .expertise-showcase,
    .methodology-layout,
    .workshop-content,
    .approach-grid,
    .steps-layout,
    .tips-layout,
    .success-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-stats,
    .success-stats {
        justify-content: center;
    }

    .commitment-points {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 36px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .final-actions {
        flex-direction: column;
        align-items: center;
    }
}.cookies-section,
.privacy-section {
    padding: 80px 0;
   background: #f8f9fa;
}


.cookies-section h2,
.privacy-section h2 {
       text-align: center;
     font-size: 40px;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 700;

}@media (max-width: 768px) {
    .cookies-section h2,
    .privacy-section h2 {
        font-size: 32px;
    }
}