*


{
	 padding: 0;
    box-sizing: border-box;
   margin: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
      color: #2c3e50;
   overflow-x: hidden;
     }

.container  
  {
          max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    position: fixed;
   top: 0;
  left   :      0;
   right: 0;
  background: rgba(26, 35, 126, 0.95);
  backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {

  background: rgba(26, 35, 126, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);}

.navigation {
          padding: 1rem 0;
}

.nav-container {
  justify-content: space-between;
    max-width: 1200px;
      align-items: center;
  padding: 0 20px;
   display: flex;
    margin: 0 auto;
}



.site-logo {
	 height: 50px;
	width: auto;
}

.nav-menu {
 display: flex;
	list-style: none;
    gap: 2rem;
}

.nav-menu li a {
  color: #fff;
               text-decoration: none;
   font-weight: 500;
   transition: color 0.3s ease;
  font-size     :    16px;
}

.nav-menu li a:hover {
  color: #3498db;
}

.burger-menu     {
    display: none;
   flex-direction: column;
  cursor: pointer;
   width: 25px;
    height: 20px;
                    justify-content: space-between;
}

.burger-menu span {
  width: 100%;
  height: 3px;
   background: #fff;
          transition    :  all 0.3s ease;


}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2)  {
  opacity: 0;
}  

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

main {
    margin-top: 80px;
}

.hero-section{
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5c6bc0 100%);
  color:        #fff;
               padding: 80px 0;
    min-height: 70vh;
  display: flex;
   align-items: center;
}

.hero-content {
    max-width: 1200px;

   margin: 0 auto;

  padding: 0 20px;

   display: grid;

   grid-template-columns: 1fr 1fr;

       gap: 4rem;

    align-items: center;
}

.hero-text h1  
  {
   font-size: 3.2rem;
	 font-weight: 700;
  margin-bottom: 1.5rem;
   line-height: 1.2;


}

.hero-text p {
  font-size: 1.2rem;
		margin-bottom: 2rem;
	   opacity: 0.9;
	   line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
  flex-wrap:     wrap;
}

.primary-btn, .secondary-btn {


    transition: all 0.3s ease;
    padding: 15px 30px;
   display: inline-block;
		 text-decoration: none;
  border-radius: 6px;
  font-weight: 600;


}

.primary-btn {
   background: #e74c3c;
    color: #fff;
}

.primary-btn:hover {

	  background: #c0392b;
  transform: translateY(-2px);
	}

.secondary-btn {
   background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.secondary-btn:hover {
      background     :       #fff;
  color: #1a237e;}

.hero-image img {
  width: 100%;
   height: auto;
	 border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.services-overview {
  padding: 100px 0;
    background: #f8f9fa;
}

.services-overview h2
{
   text-align: center;
  font-size: 2.5rem;
   margin-bottom    :    3rem;
      color: #2c3e50;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
   margin-top: 2rem;
}

.service-card {
    background: #fff;
       padding: 2.5rem;
      border-radius: 10px;
   	text-align: center;
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);
       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.15);
}

.service-icon
{
    margin-bottom :     1.5rem;
}

.icon-placeholder {
    height: 80px;
  border-radius: 50%;
	 -webkit-border-radius: 50%;
                    width: 80px;
   margin: 0 auto;
}

.icon-placeholder.chaos


{
  background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.icon-placeholder.entropy {
  background: linear-gradient(45deg, #3498db, #2980b9);
}

.icon-placeholder.seminar	{
  background: linear-gradient(45deg, #9b59b6, #8e44ad);
}


.service-card h3 {
  font-size :  1.4rem;
   margin-bottom: 1rem;
          color: #2c3e50;
}

.service-card p

{
   color: #7f8c8d;
   line-height: 1.6;


}

.methodology-section {
  padding: 100px 0;
    background: #fff;
}

.methodology-content {
  display: grid;
   grid-template-columns   :      1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.method-text h2 {
    font-size  :2.5rem;
	margin-bottom: 1.5rem;
   color: #2c3e50;
}


.method-text p {
   font-size: 1.1rem;
               margin-bottom: 2rem;
  color: #7f8c8d;
  line-height: 1.7;
}

.method-features


{
  list-style: none;
    margin-bottom: 2rem;
}

.method-features li {
  padding: 0.5rem 0;
    color: #2c3e50;
  position: relative;
  padding-left: 1.5rem;
}

.method-features li:before   {
  content: "→";
  position: absolute;
    left: 0;
    color:       #3498db;
	font-weight    :        bold;
}

.learn-more-btn {
	 display: inline-block;
  padding: 12px 24px;
    background: #3498db;
   color: #fff;
  text-decoration: none;
    border-radius     :       6px;
   font-weight: 600;
   transition: all 0.3s ease;
}

.learn-more-btn:hover {
   background: #2980b9;
  transform: translateY(-2px);
}

.method-image img {
   width:     100%;
   height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 

}

.training-formats {

  padding: 100px 0;
               background: #f8f9fa;
     }

.training-formats h2 {
       text-align: center;
    font-size: 2.5rem;
                    margin-bottom: 3rem;
   color :      #2c3e50;

}

.formats-grid {
    display: grid;
    gap: 3rem;
}

.format-item {
  display :   grid;
  grid-template-columns: 300px 1fr;
          gap: 2rem;
   align-items: center;
  background: #fff;
	padding: 2rem;
         border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}

.format-item:nth-child(even)   {
   grid-template-columns: 1fr 300px; 
	
}

.format-item:nth-child(even) .format-content {
   order: -1;
}

.format-item img  {

   width: 100%;
  height :200px;
        object-fit: cover;
   border-radius: 8px;
	} 

.format-content h3 {
   font-size: 1.6rem;
	margin-bottom: 1rem;
  color   :   #2c3e50;
}

.format-content p	{
  color: #7f8c8d;
	 line-height: 1.7;
}

.cta-section {
  padding    :       100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	 color: #fff;
    text-align :    center;
}

.cta-content h2 {
    font-size: 2.8rem;
   margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom    :     3rem;
	opacity: 0.9;
	 max-width: 600px;
  margin-left :        auto;
  margin-right: auto;
}

.cta-stats {
     margin-right: auto;
    margin: 3rem 0;
   margin-left: auto;
 max-width: 600px;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.stat-item {
               text-align: center;
}

.stat-number {
		 display: block;
  font-size: 3rem;
   font-weight: 700;
   color: #3498db;


}

.stat-label {
    font-size: 0.9rem;
       opacity: 0.8;
   margin-top: 0.5rem;
}

.cta-button {
    display: inline-block;
  padding: 18px 36px;
  background: #e74c3c;
  color: #fff;
    text-decoration: none;
   border-radius: 6px;
  font-weight: 600;
    font-size: 1.1rem;
	 transition: all 0.3s ease;


}

.cta-button:hover {
  background    :      #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);

}

.contact-section {

	   padding: 100px 0;
    background: #f8f9fa;
	}

.contact-wrapper  
  {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: start; 
	
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info p {
    font-size: 1.1rem;
   margin-bottom: 2rem;
  color: #7f8c8d;
                    line-height: 1.7;
}

.contact-details {
   margin-top: 2rem;
}

.contact-item {
   margin-bottom: 1.5rem;
         padding: 1rem;
   background: #fff;
   border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item strong {
  display    :      block;
   color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-item span

{
   color: #7f8c8d;
}

.contact-form {
  background: #fff;
    padding:      2.5rem;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
    grid-template-columns: 1fr 1fr;
	 gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
   display: block;
   margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
   font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
	    padding: 12px 15px;
	       border: 2px solid #e0e6ed;
	   border-radius  :    6px;
	  font-size: 1rem;
	    transition: all 0.3s ease;
	   background: #fff;
	  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.focused label {
  color: #3498db;
}

.form-group textarea    {
  resize: vertical;
   min-height: 100px;

} 

.form-group:last-child {
   margin-bottom     :   2rem;
}

.submit-btn 
 {
	 width: 100%;
    padding: 15px;
	 background    :       #3498db;
    color: #fff;
	border: none;
   border-radius: 6px;
  font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
    transition   :      all 0.3s ease;
   font-family: inherit;
}

.submit-btn:hover {
   background :#2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3); 

}

.site-footer{
         padding: 60px 0 20px;
  color: #fff;
     background: #2c3e50;
	
}

.footer-content  
  {
         max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
   display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo img {
   height:       40px;
  width  :  auto;
    margin-bottom: 1rem;
}

.footer-section p {
   color:   #bdc3c7;
   line-height: 1.6;
    margin-bottom: 1rem; 

}

.footer-section h4 {
    font-size :     1.2rem;
    margin-bottom: 1rem;
    color: #fff; 

}

.footer-section ul {
	 list-style: none;
	
}

.footer-section ul li {

	   margin-bottom: 0.5rem;
	}

.footer-section ul li a
	{


    color: #bdc3c7;
	 text-decoration: none;
    transition:  color 0.3s ease;}

.footer-section ul li a:hover		{
   color: #3498db;
	
}

.footer-contact p {
        margin-bottom: 0.5rem;
   color: #bdc3c7;
}

.footer-bottom	{

 border-top: 1px solid #34495e;
       margin-top: 2rem;
      padding-top: 2rem;
     text-align: center;
      max-width: 1200px;
      margin-left: auto;
       margin-right: auto;
       padding-left: 20px;
      padding-right: 20px;
}

.footer-bottom p {
    color: #95a5a6;
       font-size: 0.9rem;

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 35, 126, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .methodology-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .format-item,
    .format-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .format-item:nth-child(even) .format-content {
        order: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .format-item {
        padding: 1.5rem;
    }
}.about-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)), url('../patterns/chaos_management_corporate_training_2.webp');
    background-size: cover;
   background-position: center;
   height: 60vh;
    display: flex;
   align-items: center;
  position: relative;
}

.hero-overlay {

    position: absolute;
    top: 0;
    left    :    0;
   right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(52, 152, 219, 0.8) 100%);
  display  :flex;
        align-items: center;
       justify-content:  center;


}

.about-hero-content {
   max-width: 800px;
		text-align: center;
    color: #fff;
  padding: 0 20px;
}

.about-hero-content h1 {
  font-size: 3.5rem;
               font-weight: 700;
  margin-bottom: 1.5rem;
    line-height  :     1.1;
}

.hero-subtitle {
   font-size: 1.3rem;
    opacity: 0.95;
   line-height: 1.6;


}

.company-story
{
   padding: 120px 0;
    background: #fff;


}

.story-layout {
  display: grid;
   grid-template-columns: 1fr 400px;
  gap     :    4rem;
      align-items   :     center;
}

.story-text h2 {
  font-size  :2.8rem;
	color: #2c3e50;
  margin-bottom: 2rem;
}

.story-text p {


  font-size: 1.15rem;
    line-height: 1.8;
    color: #7f8c8d;
  margin-bottom: 1.5rem;}

.story-stats {
   display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-box {
   text-align: center;
}

.stat-num {
  display     : block;
  font-size: 2.5rem;
   font-weight: 700;
   color: #3498db;
}

.stat-desc {
  font-size: 0.9rem;
   color: #95a5a6;
  margin-top: 0.5rem;
}

.story-visual img {
                    width: 100%;
   height: 400px;
   object-fit: cover;
  border-radius     :       12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.methodology-deep {
   padding :     100px 0;
    background: #f8f9fa;


}

.section-title {
   text-align: center;
	 font-size   : 2.6rem;
    color: #2c3e50;
  margin-bottom: 4rem;
}


.philosophy-grid
	{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
 gap: 2.5rem;
}

.philosophy-card {
    background: #fff;
   border-radius: 12px;
         overflow :    hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-8px);
}

.card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
   padding: 2rem;
}

.card-header h3 {
   font-size: 1.4rem;
  font-weight: 600;
}

.card-body {
   padding: 2rem;
}

.card-body p		{
 color: #7f8c8d;
	 line-height   :   1.7;
}

.approach-section {

	    padding: 120px 0;
    background: #fff;

}

.approach-content {
     display: grid;
	 grid-template-columns: 450px 1fr;
  gap: 5rem;
	align-items: start;
}

.approach-image img {
    width: 100%;
                    height: 500px;
    object-fit :      cover;
    border-radius    :     15px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.approach-text h2 {
   font-size: 2.6rem;
    color: #2c3e50;
		 margin-bottom: 3rem;
}

.approach-features {
	display: flex;
  flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
	display: flex;
  align-items: flex-start;
    gap: 1.5rem;

}

.feature-number {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  width: 50px;
  height: 50px;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
    font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
	
}

.feature-content h4 {
                    font-size: 1.3rem;
  color: #2c3e50;
    margin-bottom: 0.8rem;
	
}

.feature-content p {
    color: #7f8c8d;
   line-height: 1.7;
}

.expertise-areas {
   padding: 100px 0;
                    background: #f8f9fa;
}

.expertise-layout
	{
   display:   grid;
   grid-template-columns: 1fr 350px;
    gap: 4rem;
     align-items:      start; 
	
}

.expertise-item {
   background: #fff;
   padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
}

.expertise-item h3 {
    margin-bottom: 1rem;
                    font-size: 1.4rem;
   color: #2c3e50;
}

.expertise-item p {
	 color: #7f8c8d;
		 line-height  :       1.6;


}

.expertise-visual {

    position: relative;

}

.expertise-visual img {
      width: 100%;
   height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.visual-overlay {
  position: absolute;
		bottom: 0;
    left: 0;
   right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: #fff;
   padding: 2rem;
  border-radius: 0 0 12px 12px;
}

.overlay-text h4 {
	          margin-bottom: 0.5rem; 
	    font-size: 1.8rem;
     }

.overlay-text p {
	opacity: 0.9;

}

.values-mission {
    padding :     120px 0;
   background: #fff;
}

.values-grid    {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.mission-box, .values-box

{
    padding: 2rem;
}

.mission-box h2, .values-box h2 {
   font-size: 2.4rem;
    color :    #2c3e50;
   margin-bottom: 2rem;
}

.mission-box p {
   	font-size: 1.1rem;
      color: #7f8c8d;
  line-height  :     1.8;
    margin-bottom: 2rem;
}

.mission-principles ul {
    list-style: none;
    padding: 0;


}

.mission-principles li {
    padding    :        0.8rem 0;
      padding-left: 2rem;
    position: relative;
    color    :#2c3e50;
  border-bottom: 1px solid #ecf0f1;
}

.mission-principles li:before {
  content: "▸";
      position  :        absolute;
   left: 0;
	color: #e74c3c;
  font-weight: bold;
    font-size: 1.2rem;
}

.values-list {
	display :     flex;
    flex-direction: column;
	 gap: 2rem;
}

.value-item {
   background: #f8f9fa;
  padding: 1.5rem;
  border-radius    :      8px;
  border-left: 3px solid #9b59b6;
}

.value-item h4 {
  color: #2c3e50;
    margin-bottom: 0.8rem;
   font-size: 1.2rem;
}

.value-item p	{
  color: #7f8c8d;
   line-height:       1.6;
}

.results-impact {
   padding:     100px 0;
   background: #f8f9fa;
}



.results-showcase {
    max-width: 900px;
    margin  :      0 auto;
}

.result-card {
       background :       #fff;
   border-radius :      15px;
	 overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
   display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center; 

}

.result-image img {
	    width: 100%;
   height: 250px;
  object-fit: cover;}  

.result-content {
     padding  :   3rem;
}

.result-content h3  {
  color: #2c3e50;
   font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.result-content p {
    color :     #7f8c8d;
  line-height: 1.7;
   margin-bottom: 2rem;
}

.result-metrics {
      display: flex;
  gap: 2rem;
}

.metric {
   background: #e8f5e8;
      color: #27ae60;
    padding: 0.5rem 1rem;
   border-radius     :        20px;
  font-size: 0.9rem;
    font-weight: 600;
}

.why-choose-us {


  padding: 120px 0;
    background: #2c3e50;
  color: #fff;
}

.choice-layout {
  display: grid;
   grid-template-columns: 1fr 400px;
  gap: 5rem;
   align-items: center;
}

.choice-reasons h2    {
    font-size: 2.6rem;
    margin-bottom: 3rem;
}

.reasons-list {


    gap: 2rem;
   flex-direction: column;
	display: flex;

}

.reason-item {
    align-items: flex-start;
   gap: 1.5rem;
  display: flex;
}

.reason-icon {
  width: 60px;
   height     :      60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius    :   50%;
    display: flex;
   align-items: center;
      justify-content: center;
   font-size    :        1.5rem;
  font-weight: 700;
    flex-shrink: 0;
}

.reason-text h4 {
    font-size: 1.3rem;
	margin-bottom: 0.8rem;
}

.reason-text p {
   opacity: 0.9;
    line-height: 1.6;
}

.choice-visual {
	  background: rgba(255,255,255,0.1);
    padding: 3rem;
  border-radius: 15px;
	 text-align: center;
}

.big-stat {
    margin-bottom: 2rem;
}

.big-number		{
   display: block;
  font-size: 4rem;
   font-weight: 700;
   color :       #3498db; 
	
}

.big-label {
    font-size: 1.1rem;
      opacity: 0.9;
} 

.mini-stats {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 2rem;
}

.mini-stat {
	   text-align: center;
}

.mini-number {
    display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #e74c3c;
}

.mini-label {
   font-size: 0.9rem;
  opacity: 0.8;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #fff;
  padding     :  100px 0;
  text-align: center;
	
}

.thankyou-content h1 {
    font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thankyou-subtitle {
   font-size:     1.2rem;
    opacity: 0.95;
  max-width: 600px;
   margin: 0 auto 3rem;
  line-height: 1.7;
}

.success-animation {
  margin-bottom: 3rem;
}

.check-mark {
  display: inline-block;
    width:        100px;
    height  :100px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

.check-icon {
  font-weight: bold;
    font-size: 3rem;
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.next-steps {

  background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
    margin     :      3rem 0;}

.next-steps h2 {
   font-size: 2rem;
   margin-bottom: 2.5rem;
}

.steps-timeline {
	display :       flex;
   justify-content: space-between;
    gap: 2rem;
}

.step-item  {
 flex: 1;
		 text-align: center;
   opacity: 0.6;
        transition   :     opacity 0.3s ease;
}

.step-item.active {
    opacity: 1;
}



.step-number {
   width: 50px;
  height: 50px;
               background: #fff;
    color    :   #27ae60;
    border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content: center;
   font-weight :  700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step-content h3 {
   font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 0.95rem;
   opacity: 0.9;
   line-height: 1.5;
}

.preparation-tips {
   margin: 4rem 0;
}

.preparation-tips h2 {
    font-size: 2rem;
	 margin-bottom: 2.5rem;
}

.tips-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;}

.tip-card {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
  border-radius: 10px;
   text-align:     left;
}

.tip-card h4 {
   font-size: 1.3rem;
  margin-bottom: 1rem;
}



.tip-card p {
	opacity: 0.9;
  line-height: 1.6;
}

.thankyou-actions {
	display :     flex;
   gap: 1.5rem;
  justify-content: center;
    flex-wrap: wrap;
}

.primary-action, .secondary-action {
					padding: 15px 30px;
   text-decoration  :  none;
  border-radius  :    6px;
    font-weight: 600;
   transition: all 0.3s ease;
}

.primary-action {
   background: #fff;
	color: #27ae60;
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.secondary-action 
 {
   background: transparent;
  color: #fff;
    border: 2px solid #fff;
}

.secondary-action:hover 
 {
  background: rgba(255,255,255,0.1);
	}

.immediate-value {

  padding: 100px 0;
  background: #f8f9fa;
}

.value-content {
  text-align: center;
}

.value-content h2 {
   font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.value-content p {
  font-size   : 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
  max-width: 700px;
   margin-left: auto;
               margin-right: auto;
}

.resources-grid {

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
   max-width: 900px;
  margin :     0 auto;

}

.resource-item {
   background: #fff;
    border-radius: 12px;
	 overflow : hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
}

.resource-image img {
	 width: 100%;
  height: 200px;
        object-fit: cover;
}

.resource-content {
    padding:2rem;
}

.resource-content h3		{
   color: #2c3e50;
  font-size: 1.4rem;
         margin-bottom: 1rem;
}

.resource-content p {
    color: #7f8c8d;
     line-height  :        1.6;
  margin: 0;
}

.contact-backup {
  padding: 80px 0;
    background: #fff;

}

.backup-contact {
    text-align: center;
	max-width: 600px;
  margin: 0 auto;
}

.backup-contact h2 {
  font-size: 2.2rem;
  color: #2c3e50;
    margin-bottom:     3rem;
}

.contact-options {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.contact-option {
  display: flex;
   align-items: center;
   gap: 1.5rem;
    text-align: left;
}

.contact-icon   {
   width: 60px;
  height: 60px;
   border-radius: 50%;
  flex-shrink   :    0;
}

.phone-icon {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); 
	
}

.location-icon {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.contact-details h4 {
    color: #2c3e50;
  font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {

  color: #7f8c8d;
    margin-bottom: 0.3rem;}

.contact-details span {
		 color: #95a5a6;
    font-size: 0.9rem;
	
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-layout,
    .approach-content,
    .expertise-layout,
    .values-grid,
    .choice-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .result-card {
        grid-template-columns: 1fr;
    }

    .result-image img {
        height: 200px;
    }

    .philosophy-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        flex-direction: column;
    }

    .story-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .contact-options {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .approach-features,
    .reasons-list {
        gap: 1.5rem;
    }
}.policySection {
	   padding: 80px 2rem;
  background: #f8f9fa;
	}


.policyContainer {
  max-width: 800px;
  margin: 0 auto;
                    text-align: left;
}

.policyContainer h2 {
   font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom :  1.5rem;
   font-weight: 700;
}

.policyContainer p {

	  color: #7f8c8d;
                    margin-bottom: 1.5rem;
  line-height :      1.7;
 font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}