* {
    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-color: #fafafa;
}

.main-header {
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   position: fixed;
   top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;

}

.main-header.scrolled {
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(10px);
}

.navigation-wrapper{
   max-width: 1200px;
	margin: 0 auto;
  padding: 0 20px; 
	
}

.nav-container {
	display: flex;
   justify-content: space-between;
    align-items   :  center;
	height: 70px;


}

.company-logo {
   height: 45px;
  width: auto;
}

.nav-menu {
   display: flex;
  list-style: none;
	gap: 2rem;


}

.nav-link {
    color: #fff;
	text-decoration: none;
   font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
	
}

.nav-link:hover,
.nav-link.active {

   color: #3498db;}

.nav-link::after   {
  content: '';
  position: absolute;
    bottom: -5px;
       left: 0;
   width   :      0;
  height: 2px;
    background: #3498db;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
          width: 100%;
}

.menu-toggle {
	display: none;
    flex-direction: column;
    cursor: pointer;
   padding: 5px;
}

.burger-line {
  width: 25px;
  height: 3px;
    background    :   #fff;
    margin: 3px 0;
    transition: 0.3s;
   border-radius: 2px;
}

.menu-toggle.active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}



.menu-toggle.active .burger-line:nth-child(2) {
  opacity    :     0;
}

.menu-toggle.active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero-banner {
    margin-top  :     70px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
	display: grid;
    grid-template-columns: 1fr 1fr;
  gap    :        3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
	color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;

}

.hero-subtitle {
	font-size: 1.2rem;
	color: #5a6c7d;
  margin-bottom: 2rem;
    line-height: 1.6;
} 

.hero-actions  
  {
   display:    flex;
   gap: 1rem;
   flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    padding: 12px 24px; 
   border-radius: 8px; 
   text-decoration   :none; 
  font-weight: 600; 
	transition: all 0.3s ease; 
    display: inline-block;
}

.primary-button {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.secondary-button {
  background  :    transparent;

  color  :#3498db;

    border: 2px solid #3498db;
}

.secondary-button:hover {
  background: #3498db;
 color: white;
}

.hero-image {
        width :   100%;
  height  :  auto;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}  

.services-overview {
    padding: 80px 0;
  background: white;
}

.section-container {
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-overview h2 {
       text-align: center;
   font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
  font-weight: 700;
}

.service-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}  

.service-item {
  background     :      #f8f9fa;
          border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
  transform: translateY(20px);
}

.service-item.fade-in {
   opacity: 1;
  transform: translateY(0);
                    transition: all 0.6s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	
}

.service-image {
    width: 100%;
   height: 200px;
   object-fit: cover;
}

.service-item h3 {
    font-size: 1.4rem;
  color: #2c3e50;
	margin: 1.5rem;
    font-weight  :   600;
} 

.service-item p {
   padding  :        0 1.5rem 1.5rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.workshop-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
} 

.workshop-content {
      opacity: 0;
	gap: 3rem;
   align-items: center;
      display: grid;
    grid-template-columns: 1fr 1fr;
  transform: translateX(-20px);}

.workshop-content.fade-in {
  opacity: 1;
     transform: translateX(0);
     transition   :        all 0.6s ease;
}

.workshop-section h2 {
       font-size: 2.3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;}

.workshop-section p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
	 line-height     :   1.6;
}

.workshop-benefits  {
  list-style: none;
}


.workshop-benefits li {
    padding  :    0.5rem 0;
     position: relative;
  padding-left: 1.5rem;
}

.workshop-benefits li::before {
  content: "→";
    position: absolute;
   left: 0;
  color  : #3498db;
    font-weight :     bold;
}

.workshop-image {
    width:    100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-section {
	padding: 80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
  color: white;
}

.cta-container {
       max-width: 800px;
  margin: 0 auto;
   padding: 0 20px;
  opacity: 0;
  transform: translateY(20px);
	}

.cta-container.fade-in {
	opacity: 1;
  transform: translateY(0);
   transition: all 0.6s ease;
     }



.cta-section h2  
  {
  font-size: 2.5rem;
  margin-bottom:    1.5rem;
    font-weight: 700;
}

.cta-section p {
   font-size: 1.2rem;
  margin-bottom  :       2rem;
   line-height: 1.6;

}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
   background: white;
    color: #f5576c;
			text-decoration: none;
   border-radius: 50px;
  font-weight: 600;
    font-size  :     1.1rem;
    transition: all 0.3s ease;
  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.3);
}  

.contact-section {

    padding: 80px 0;
  background: #f8f9fa;}


.contact-section h2
	{
  text-align: center;
   font-size: 2.5rem;
    color:       #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-wrapper {
  display: grid; 
	    grid-template-columns   :   1fr 2fr; 
	   gap: 3rem; 
	    align-items: start;
}

.contact-info h3		{
       font-size: 1.8rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
	 font-weight: 600;
}

.contact-details p {

    margin-bottom     :   1rem;
               color: #5a6c7d;
   line-height   : 1.6;
	}

.contact-form {
    background: white;
    padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group	{
  margin-bottom: 1.5rem;
}

.form-row {

	  display:        grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;}

.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: 12px 15px;
    border: 2px solid #e1e8ed;
  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;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;


}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
   padding: 15px 30px;
  border: none;
    border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor  :    pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover 
 {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.site-footer {
   background: #2c3e50;
   color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
    align-items: start;
}

.footer-logo {
   height: 50px;
     width: auto;
  filter: brightness(0) invert(1);


}

.footer-info {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.footer-section h4 {
     color: #3498db;
   margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links {


    list-style: none;

}



.footer-links li {
   margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
  text-decoration: none;
    transition: color 0.3s ease; 
	
}

.footer-links a:hover {
    color: #3498db;
}

.footer-section p    {
    color: #bdc3c7;
   line-height: 1.6;
   margin-bottom: 0.5rem;
}

.footer-bottom {
	  border-top: 1px solid #34495e;
   margin-top: 2rem;
       padding-top: 1rem;
   text-align: center;
    color: #95a5a6;
	}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #2c3e50;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-overview h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .workshop-section h2 {
        font-size: 1.8rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-container {
        padding: 0 15px;
    }
}.fade-in {
               -moz-animation: fadeInUp 0.6s ease forwards;
   animation : fadeInUp 0.6s ease forwards;
	-webkit-animation     :    fadeInUp 0.6s ease forwards;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.about-hero  
  {
       margin-top    :  70px;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  padding:      100px 0;

  color: white;

    text-align: center;
     }

.about-hero-content {
   max-width: 800px;

    margin: 0 auto;

   padding: 0 20px;
}

.about-hero h1 {
   font-size: 3rem;
    font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-subtitle {
     font-size: 1.3rem;
  line-height: 1.6;
   opacity: 0.9;
}

.expertise-section {
   padding: 80px 0;
  background: white;
}

.expertise-content {
                    display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap     : 4rem;
  align-items: center;
}

.expertise-text h2 {
   font-size: 2.3rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
  font-weight: 700;
}

.expertise-text p {
    color: #5a6c7d;
  line-height: 1.7;
    margin-bottom     :  1.5rem;
  font-size: 1.1rem;
}

.expertise-highlights
	{
   grid-template-columns  :1fr; 
	 gap  :       1.5rem; 
    margin-top: 2rem; 
    display: grid;
}

.highlight-item {
  background: #f8f9fa;
	    padding :      1.5rem;
	        border-radius: 10px;
	  border-left: 4px solid #3498db;
}

.highlight-item h3 {

         color: #2c3e50;
  font-weight: 600;
  font-size: 1.2rem;
	margin-bottom:    0.5rem;
	}

.highlight-item p {
  color: #5a6c7d;
	margin: 0;
    font-size: 1rem;
}

.expertise-image {
  width: 100%;
   height: auto;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.methodology-section {

  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	}

.methodology-section h2 {
  text-align: center;
                    font-size: 2.5rem;
  color: #2c3e50;
               margin-bottom:3rem;
	 font-weight: 700;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.methodology-step {
   background: white;
  padding: 2rem;
   border-radius  :        15px;
   text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
 transition: transform 0.3s ease;
}

.methodology-step:hover {
  transform: translateY(-5px);
} 

.step-number {
                    display: inline-block;
    width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
   border-radius: 50%;
       line-height: 60px;
    font-size: 1.5rem;
   font-weight: 700;
    margin-bottom: 1.5rem;
}

.methodology-step h3 {
    color: #2c3e50;
   font-size: 1.3rem;
  margin-bottom: 1rem;
    font-weight: 600;
}

.methodology-step p {
	color: #5a6c7d;
   line-height: 1.6;
}

.achievements-section {
   padding :        80px 0;
   background    :      white;
}

.achievements-content {
   display: grid;
   grid-template-columns  :       1fr 1.2fr;
   gap: 4rem;
   align-items: center;


}

.achievements-image {
   width: 100%;

	  height: auto;

	    border-radius: 15px;

	  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.achievements-text h2 {
  font-weight: 700;
     color: #2c3e50;
   margin-bottom     :      1.5rem;
   font-size: 2.3rem;
}

.achievements-text p {
   color     :     #5a6c7d;
  line-height     :1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.achievement-stats {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
  gap: 1.5rem;
}

.stat-item     {
    text-align: center;
   padding: 1.5rem;
  background: #f8f9fa;
               border-radius: 10px;
}

.stat-number  
  {
	font-size: 2.5rem;
    font-weight   :   700;
    color: #3498db;
  margin-bottom: 0.5rem;
}

.stat-label {
    color: #5a6c7d;
   font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mission-section {
     padding: 80px 0;
  background: #f8f9fa;
	}

.mission-section h2 {
  text-align: center;
   font-size: 2.5rem;
    color: #2c3e50;
	margin-bottom: 3rem;
    font-weight: 700;
	}

.mission-content {

   display :   grid;
    gap: 3rem;
}

.mission-item {
   display: grid;
    grid-template-columns   :  1fr 1.5fr;
   gap: 2rem;
   align-items: center;
    background: white;
  padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mission-item:nth-child(even) {
    grid-template-columns   : 1.5fr 1fr;
}

.mission-item:nth-child(even) .mission-image {

  order: 2;

}

.mission-image {
   width: 100%;
   height: 200px;
   object-fit: cover;
   border-radius  :       10px;
}

.mission-text h3 {
  color: #2c3e50;
  font-size: 1.4rem;
    margin-bottom: 1rem;
   font-weight: 600;
}

.mission-text p {
       color: #5a6c7d;
   line-height: 1.6;
     }

.values-section {
  padding :80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.values-section h2 {
   text-align:  center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
    font-weight   : 700;
}

.values-grid  
  {
	display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
    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(-5px);
}

.value-card h3 {
   font-size  :1.3rem;

	  margin-bottom: 1rem;

	    font-weight: 600;
     }

.value-card p {
   line-height: 1.6;
  opacity: 0.9;
}

.thankyou-hero {
   margin-top: 70px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 100px 0;
  color     :  white;
   text-align: center;

}


.thankyou-container {
   max-width    :   800px;
      margin: 0 auto;
   padding: 0 20px;
}

.success-visual {
	 margin-bottom: 2rem;
}

.success-icon {
  display: inline-block;
   width: 80px;
    -moz-border-radius: 50%;
  height: 80px;
  background: white;
  border-radius: 50%;
   position: relative;
  margin-bottom: 2rem;
}

.checkmark {
   position: absolute;
   top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
    width    :   25px;
        height: 15px;
  border   :  3px solid #f5576c;
       border-top: none;
  border-right: none;
  transform: translate(-50%, -60%) rotate(-45deg);
	
}

.thankyou-content h1		{


    font-size: 2.8rem;
   font-weight:  700;
   margin-bottom: 1.5rem;
    line-height: 1.2;


}

.thankyou-subtitle {
    opacity    :     0.9;
	line-height: 1.6;
    font-size: 1.2rem;
}  

.confirmation-details {
   padding: 80px 0;
   background: white;


}

.confirmation-details h2 {
   text-align: center;
	font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom    :    3rem;
   font-weight: 700; 

}

.steps-timeline {
   max-width: 800px;
   margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.timeline-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
  align-items: start;
  padding  :    2rem;
   background: #f8f9fa;
   border-radius: 15px;
	 position: relative;
}

.timeline-step:not(:last-child)::after {
  content: '';
         position: absolute;
    left: 39px;
    bottom  :   -1rem;
    width: 2px;
	 height: 1rem;
   background: #3498db;
}

.step-icon {
  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;

		margin     :       0 auto;
}

.step-content h3 {
     color   :#2c3e50;
   font-size: 1.3rem;
   margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p		{
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.step-timing {
   color: #3498db;
  font-weight: 600;
	 font-size: 0.9rem;
}

.preparation-section
	{
  padding: 80px 0; 
   background     :      #f8f9fa;
}

.preparation-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
   align-items :     center;

}

.preparation-text h2  {
    font-size: 2.3rem;
   	 color: #2c3e50;
      margin-bottom: 1.5rem;
       font-weight: 700;
}

.preparation-text p {
    color: #5a6c7d;
   line-height: 1.7;
  margin-bottom: 2rem;
    font-size: 1.1rem;

}

.preparation-checklist {


   gap: 1.5rem;
        display    :  grid;
     }

.checklist-item {
  background  :  white;
   padding: 1.5rem;
               border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.checklist-item h4 {
  color: #2c3e50;
   font-size: 1.1rem;
    margin-bottom: 0.5rem;
   font-weight: 600; 

}

.checklist-item p {
	 color: #5a6c7d; 
    margin: 0; 
   font-size: 0.95rem; 
    line-height: 1.5;
}

.preparation-image {
 width: 100%;
   height: auto;
    border-radius    :       15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.resources-section 
 {
    padding : 80px 0;
    background: white;
}

.resources-section h2 {
    text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;
  font-weight: 700;
}



.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
}

.resource-card {
    background: #f8f9fa;
    border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
     transition: transform 0.3s ease;
}  

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.resource-content {
   padding: 1.5rem;
}

.resource-content h3 {
  font-weight: 600;
    color  : #2c3e50;
         font-size: 1.2rem;
	margin-bottom :    0.5rem;
}


.resource-content p {
   color: #5a6c7d;
  line-height : 1.6;
   margin  :      0;}

.contact-reminder     {
	padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   text-align: center;
}

.reminder-content {
    max-width:  800px;
   margin: 0 auto;
	padding: 0 20px;
}

.contact-reminder h2 {
   font-size: 2.3rem;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-reminder p    {
	 font-size: 1.1rem;
   line-height: 1.6;
	margin-bottom: 2rem;
  opacity: 0.9; 
	
}

.contact-info-reminder {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  margin-bottom: 2rem;
}

.contact-detail {
  background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
  backdrop-filter: blur(10px);
}

.contact-detail h4 {
   font-size: 1.1rem;
	 margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3498db;
}


.contact-detail p	{
    margin: 0;
                    opacity: 0.9;
}

.return-home-btn {

	          display:    inline-block;
  padding: 12px 30px;
     background: white;
  color: #667eea;
    text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
   transition :    all 0.3s ease;
  margin-top :    1rem;
     }

.return-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .expertise-content,
    .achievements-content,
    .preparation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mission-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .mission-item:nth-child(even) .mission-image {
        order: 0;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-step::after {
        display: none;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-info-reminder {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .expertise-text h2,
    .achievements-text h2,
    .preparation-text h2 {
        font-size: 1.8rem;
    }
    
    .methodology-section h2,
    .mission-section h2,
    .values-section h2,
    .confirmation-details h2,
    .resources-section h2 {
        font-size: 2rem;
    }
    
    .contact-reminder h2 {
        font-size: 1.8rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .methodology-grid,
    .values-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}.content-wrapper {

    max-width   :       800px;
	 margin: 0 auto;
   padding   :        2rem 0;
}

.content-wrapper h1 {
   margin-bottom: 2rem;
    text-align: center;
               font-size: 2.5rem;
  font-weight    : 700;
        color: #2c3e50;
}

.content-wrapper h2 {
   font-size: 1.8rem;
	color: #2c3e50;
    margin: 1.5rem 0 1rem;
   font-weight: 600;
}

.content-wrapper p {
   color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-wrapper ul {
  margin-bottom: 1.5rem;
}