* {
   margin: 0;
    padding: 0;
  box-sizing : border-box;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height   :   1.6;
	 color: #2c3e50;
 background-color: #ffffff;
}

.content-container
	{

	    max-width: 1200px;
   margin     :       0 auto;
	 padding: 0 20px;
     }

.main-navigation {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  max-width  :        1200px;

	         margin: 0 auto;

	   padding: 0 20px;

	  display: flex;

	  justify-content   :        space-between;

	  align-items: center;

	    height: 70px;
}

.company-logo {
    height: 45px;
  width: auto;
}

.desktop-menu {
   display :   flex;
    gap: 2rem;
}

.nav-item {
    color: white;
  text-decoration: none;
    font-weight   :     500;
	transition: all 0.3s ease;
   position    :  relative;
}

.nav-item:hover,
.nav-item.active {
 color: #f8f9fa;
}

.nav-item:after {
	  content: '';
	position: absolute;
  bottom: -5px;
	left: 0;
    width: 0;
    height     :   2px;
	background: #f8f9fa;
    transition: width 0.3s ease;


}

.nav-item:hover:after,
.nav-item.active:after {
   width: 100%;
}

.burger-menu {
   display: none;
     flex-direction: column;
   cursor: pointer;
	gap: 4px;
}

.burger-menu span {
   width: 25px;
	height: 3px;
   background: white;
      transition :       0.3s;
}

.mobile-menu {
	 display: none;
   background     :    #5a67d8;
    padding: 20px;
}

.mobile-nav-item {
    display: block;
  color: white;
    text-decoration: none;
   padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   padding    :        80px 0 60px;
    color     :white;
}

.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: 3.2rem;
  font-weight: 700;
   line-height: 1.2;
	margin-bottom: 1.5rem;

}

.hero-subtitle {
    font-size:  1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-buttons {
   display: flex;
   gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  padding: 15px 30px;
        border-radius: 8px;
          text-decoration   :        none;
   font-weight     : 600;
  transition: all 0.3s ease;
          display :       inline-block;
}

.cta-primary {
  background: white;
  color    :    #5a67d8;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-secondary {
	   border: 2px solid white;
  color: white;
  background: transparent;

}

.cta-secondary:hover {
    background: white;
   color: #5a67d8;
}

.hero-image img {
   width: 100%;
  height: auto;
	border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.expertise-showcase     {
    padding: 80px 0;
     background: #f8f9fa;

}

.expertise-showcase h2 {
        text-align: center;
  font-size: 2.5rem;
   margin-bottom: 3rem;
    color: #2c3e50;
}

.stats-grid		{


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;}

.stat-item {
    text-align: center;
  padding: 2rem;
	background: white;
    border-radius:   12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-number{
    font-size: 3rem;
  font-weight :  700;
   color: #667eea;
	 margin-bottom: 1rem;
}

.services-section {
  padding: 80px 0;
}

.services-section h2 {
  text-align: center;
   font-size :  2.5rem;
    margin-bottom:    3rem;
}

.services-layout {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.primary-service {
   grid-row: span 2;
}

.service-card {
	    background: white;
   border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
     }

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {


    width: 100%;
	 height    :        200px;
  object-fit: cover;
	}

.primary-service img {
   height: 250px;
}

.service-card h3 {
  color: #2c3e50;
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
  margin: 0 1.5rem 1rem;
    line-height    :      1.6;
}

.service-features {
       list-style: none;
   margin: 1.5rem;
               padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
	position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
  content: '✓';
  position: absolute;
	left: 0;
  color: #28a745;
  font-weight: bold;
}

.methodology-section {
       padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.methodology-content {
    max-width:     1200px;
    margin: 0 auto;
  padding: 0 20px;
      display: grid;
       grid-template-columns    :       1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.methodology-content h2 {
   font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.method-steps
	{
	margin-top: 2rem;
}

.step-item {
    display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number 
 {
  background: rgba(255,255,255,0.2);
     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 {
  margin-bottom: 0.5rem;
        font-size: 1.2rem;

}

.method-visual img	{
	width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.cta-section {

    padding: 80px 0;
				 background :      #f8f9fa;
    text-align   :  center;

}

.cta-content h2 {
  font-size: 2.5rem;
	margin-bottom: 1.5rem;
  color: #2c3e50;
}

.cta-content p    {
  font-size: 1.2rem;
  margin-bottom: 2rem;
    max-width :  800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features  
  {
  display   :    flex;
   justify-content: center;
  gap: 2rem;
	margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-feature     {
	 background: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  font-weight:500;
}

.cta-main-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color :    white;
      padding: 18px 40px;
                    border-radius: 8px;
	text-decoration: none;
   font-weight  :   600;
   font-size: 1.1rem;
	display:inline-block;
   transition  :all 0.3s ease;
}

.cta-main-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.conference-section {
    padding: 80px 0;
}

.conference-section h2


{
  text-align  :    center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
}

.events-grid


{

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem; 
	

}

.event-card {
		 background: white;
    border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;

}

.event-card.featured  
  {
       border: 3px solid #667eea;}

.event-card:hover {
  transform: translateY(-5px);
}

.event-date {

  background: #667eea;
   color: white;
          padding: 0.5rem 1rem;
    border-radius   :       20px;
  font-size: 0.9rem;
     font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
     }

.event-card h3 {
   color: #2c3e50;
   margin-bottom: 1rem;
}

.event-details {
    display   :     flex;
   justify-content: space-between;
    margin-top: 1.5rem;
  font-weight: 500;

}

.event-price {
     color: #667eea;
	}

.contact-section {
    padding: 80px 0;
	 background: #f8f9fa;
}  

.contact-layout {
	max-width    :       1200px;
  margin: 0 auto;
  padding:       0 20px;
  display: grid;
    grid-template-columns     : 1fr 1fr;
	gap    :        4rem;
}

.contact-info h2{
    color: #2c3e50;
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom     :   1rem;
  display:  flex;
    flex-direction: column;
    gap: 0.5rem; 
	
}

.consultation-form {
	   background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px 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;
       font-weight: 500;
	color: #2c3e50;


}

.form-group input,
.form-group select,
.form-group textarea {
	  width: 100%;
   padding: 12px;
   border: 2px solid #e9ecef;
                    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
     }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
	border-color: #667eea;
}

.form-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:        white;
   padding: 15px 30px;
	border  :    none;
  border-radius  :  8px;
    font-size:    1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
   transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);

  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.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: 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
   margin-top: 1rem;
    line-height: 1.6;
   opacity: 0.9;
} 

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-links {

	  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;}

.footer-column h4 {
    margin-bottom: 1rem;
    color    :  #ecf0f1; 
	
}

.footer-column a {
	display: block;
   color: #bdc3c7;
    text-decoration: none;
  margin-bottom: 0.5rem;
   transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom 
 {
      border-top     :      1px solid #34495e;
   margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
				 opacity: 0.8;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .primary-service {
        grid-row: auto;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 0 80px;
    color     :  white;
}

.about-hero-content {
   display: grid;
    gap    :4rem;
   align-items:    center;
   grid-template-columns: 2fr 1fr;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}

.hero-text-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom :  1.5rem;
   line-height: 1.2;
}

.hero-description {
  font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;

}

.hero-stats {
  display: flex;
    flex-direction: column;
   gap: 1.5rem;
}

.stat-box{
  background: rgba(255,255,255,0.15);
  padding: 1.5rem;
   border-radius: 12px;
    text-align: center;
  backdrop-filter: blur(10px);
}

.stat-value	{
    display: block;
  font-size: 2.5rem;
	 font-weight: 700;
   margin-bottom: 0.5rem;}

.stat-label {
    font-size:      0.9rem;
      opacity: 0.9;
	


}

.mission-section {
    padding     :  80px 0;
}

.mission-layout {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap   :    4rem;
  align-items     :center;
}

.mission-image img  
  {
   width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mission-content h2 {
  font-size     :2.5rem;
  margin-bottom: 1.5rem;
   color: #2c3e50;
}

.mission-content > p 
 {
  font-size   :        1.1rem;
  line-height  :       1.7;
    margin-bottom: 2rem;
}

.mission-points {
    display: flex; 
	    flex-direction: column; 
	  gap: 1.5rem;
}

.mission-point {
   padding: 1.5rem;
	background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.mission-point h4 {


    color: #2c3e50;
        margin-bottom  : 0.8rem;
  font-size: 1.2rem; 
	
	}

.expertise-section {
  padding: 80px 0;

               background: #f8f9fa;}

.expertise-section h2 {
	text-align :      center;
         font-size: 2.5rem;
  margin-bottom    :        3rem;
  color: #2c3e50;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap  :2rem;
}

.expertise-item	{
	background: white;
   border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-8px);
	
}

.expertise-item img {
    object-fit: cover;
               width: 100%;
    height: 220px;
}

.expertise-item h3 {
  font-size: 1.4rem;
       margin: 1.5rem 1.5rem 1rem;
  color: #2c3e50;
}

.expertise-item p
{
   margin     : 0 1.5rem 1.5rem;
   line-height: 1.6;
    color:        #555;
}

.approach-section {
  padding: 80px 0;
}

.approach-section h2 
 {
    text-align: center;
          font-size: 2.5rem;
   margin-bottom: 3rem;
	 color: #2c3e50;
}

.approach-description {
    max-width: 800px;

	  margin: 0 auto;

	    text-align: center;
}

.approach-description > p {
   font-size: 1.2rem;
   line-height: 1.7;
   margin-bottom: 3rem;
}

.approach-benefits {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    margin-top: 3rem;


}

.benefit-item {
  display: flex;
    gap: 1.5rem;
  align-items: flex-start;
   padding: 2rem;
  background: white;
    border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	  color: white;
	  width :       50px;
		height: 50px;
	  border-radius: 50%;
	   display: flex;
	     align-items: center;
	    justify-content: center;
	   font-weight: bold;
		flex-shrink    :0;
	   font-size: 1.2rem;
}

.benefit-text h4 {
                    margin-bottom  : 0.8rem;
    color:    #2c3e50;
}

.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;



}

.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;
  backdrop-filter: blur(10px);
    text-align: center;
}

.value-card h3  {
    font-size: 1.4rem;
    margin-bottom: 1rem;
	
}

.value-card p {
    line-height   :     1.6;
   opacity:     0.9;
}

.experience-section {
   padding: 80px 0;
}

.experience-layout {
    display:   grid;
      grid-template-columns: 2fr 1fr;
    gap: 4rem;
   align-items: center;
}

.experience-content h2 {
         font-size: 2.5rem;
   margin-bottom: 1.5rem;
	color: #2c3e50;
}

.experience-content > p {
   font-size: 1.1rem;
    line-height: 1.7;
	margin-bottom: 2rem;
}

.experience-highlights {
   display   :     flex;
   flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
       padding: 1.5rem;
   background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea; 

}

.highlight-item h4 {
   color: #667eea;
    font-weight :        bold;
   margin-bottom: 0.5rem;
}

.experience-stats {
   display: flex;
   flex-direction: column;
  gap: 2rem;
}

.big-stat {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 2rem;
   border-radius: 20px;
  text-align: center;
}



.big-number {
    display: block;
               font-size: 3rem;
    font-weight: 700;
     margin-bottom: 0.5rem;
}

.big-label {
   font-size: 1rem;
               opacity :0.9;
}

.small-stats {
  display: flex;
  flex-direction: column;
	 gap: 1rem;
}

.small-stat {
   background: white;
    padding: 1.5rem;
	 border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	text-align: center;
}

.small-number {
    display: block;
	font-size: 1.8rem;
  font-weight: bold;
    color   :#667eea;
    margin-bottom: 0.3rem;
}

.small-label {
   font-size: 0.9rem;
  color: #666;
}

.thankyou-main {
  min-height: calc(100vh - 140px);
   padding: 60px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 25%, #667eea 75%, #764ba2 100%);
}

.thankyou-container  {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
        display: grid;
  grid-template-columns: 2fr 1fr;
   gap: 4rem;
    align-items    :  start;
}

.thankyou-content {
    background: white;
  padding: 3rem;
    border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.success-icon {
  text-align: center;
   margin-bottom: 2rem;
}

.checkmark {
    width: 80px;
  height: 80px;
  border-radius: 50%;
   display     :    inline-block;
    stroke-width    :        3;
  stroke: #28a745;
   stroke-miterlimit  :    10;
   margin: 0 auto;
  position: relative;
    animation:  fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
               stroke-dasharray: 166;
    stroke-dashoffset:       166;
   stroke-width: 3;
  stroke-miterlimit: 10;
    stroke: #28a745;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
   position: absolute;
   top: 0;
   left: 0;
	width: 80px;
   height     :     80px;
  border-radius: 50%;
   border: 3px solid #28a745;
}

.checkmark-stem {

	    border-radius: 2px;
  position: absolute;
               top: 45px;
   left: 33px;
  background: #28a745;
  width: 3px;
  height: 15px;
  transform: rotate(45deg);
	animation: checkmark-stem 0.3s ease-in-out 0.8s forwards;
    transform-origin: bottom;
  opacity: 0;


}

.checkmark-kick {
      border-radius: 2px;
   position  :  absolute;
  top: 52px;
    left: 25px;
    background : #28a745;
   width: 3px;
  height: 8px;
  transform: rotate(-45deg);
  animation: checkmark-kick 0.3s ease-in-out 1.0s forwards;
    transform-origin    :     bottom;
	opacity: 0;
} @keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark-stem {
    100% {
        opacity: 1;
    }
}

@keyframes checkmark-kick {
    100% {
        opacity: 1;
    }
}.thankyou-content h1 {
  font-size: 2.5rem;
   color: #2c3e50;
    text-align :       center;
  margin-bottom    :    1.5rem;
}

.thankyou-message {
     font-size     :      1.2rem;
    text-align: center;
   line-height: 1.6;
  margin-bottom: 3rem;
  color: #555;
}

.next-steps h2 {
  font-size: 1.8rem;
	    color: #2c3e50;
	   margin-bottom: 2rem;
}

.steps-timeline {
  gap: 1.5rem;
  margin-bottom: 3rem;
  display: flex;
    flex-direction: column;
}

.timeline-step {
  display: flex;
     gap: 1.5rem;
   align-items: flex-start;
  padding: 1.5rem;
    background: #f8f9fa;
  border-radius: 12px;
  position: relative;
}

.timeline-step.active {
  background: rgba(102, 126, 234, 0.1);
          border-left: 4px solid #667eea;
}

.step-indicator {
    background     :   #667eea;
	color: white;
  width: 40px;
	height: 40px;
  border-radius    :   50%;
    display: flex;
   align-items: center;
  justify-content: center;
    font-weight: bold;
    flex-shrink: 0; 

}

.step-content h3 {
   color    :       #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
                    margin-bottom: 0.5rem;
  line-height: 1.5;
}

.step-time {
    font-size: 0.9rem;
       color: #667eea;
        font-weight: 500;
}



.while-waiting h2 {
  font-size: 1.8rem;
   color: #2c3e50;
    margin-bottom: 2rem;
}

.waiting-suggestions {
		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.suggestion-card {
  background: #f8f9fa;
    padding: 1.5rem;
               border-radius:        12px;
  border-left    :  4px solid #667eea;
}

.suggestion-card h3 {
    color: #2c3e50;
  margin-bottom   :  0.8rem;
      font-size: 1.1rem;
}

.suggestion-card p

{
    font-size: 0.95rem;
   line-height: 1.5;
	color: #555;
     }

.contact-reminder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 2rem;
               border-radius: 15px;
  margin-bottom: 3rem;
}

.contact-reminder h3	{
   margin-bottom:       1.5rem;
		 font-size: 1.3rem;
}

.contact-details {
   	display:  flex;
   flex-direction: column;
                    gap: 0.8rem;
	 margin-bottom: 1rem;

}

.contact-item {
    display :flex;
    gap: 1rem;
}

.contact-label {
    font-weight    :    600;
  min-width: 80px;

}

.contact-note {
     font-size: 0.9rem;
	 opacity: 0.9;
  font-style: italic;
}

.thankyou-actions {
	   display: flex;
  gap: 1rem;
   justify-content: center;
    flex-wrap: wrap;
     }

.btn-primary, .btn-secondary {
	padding: 15px 30px;
   border-radius: 8px;
    text-decoration:       none;
   font-weight :     600;
  transition : all 0.3s ease;
   display: inline-block;
     }

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:        white;
}

.btn-primary:hover {
     transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);}

.btn-secondary {
   border: 2px solid #667eea;
  color: #667eea;
   background: transparent;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
}

.thankyou-image {
    display  :       flex;
    align-items: center;
  justify-content: center;
}

.thankyou-image img {


  width  :    100%;
   max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);


     }@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-benefits {
        grid-template-columns: 1fr;
    }
    
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content {
        padding: 2rem;
    }
    
    .waiting-suggestions {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text-section h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}