* {
   margin: 0;
    padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color     :  #333;
					background-color: #f8f9fa;
     } 

.mainNav {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 1rem 0;
	position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navWrapper {
   max-width: 1200px;
  justify-content: space-between;
	padding: 0 2rem;
    display: flex;
  margin: 0 auto;
  align-items: center;


}

.companyLogo {
   height: 45px;
    width :    auto;
}

.navLinks {
   display: flex;
    list-style: none;
  gap   :       2rem;
}

.navLinks a {
   color: white;
     text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navLinks a:hover {
   color: #3498db;
  background-color: rgba(255,255,255,0.1);
   border-radius: 4px;
}

.menuToggle {
  display: none;
  flex-direction   :  column;
	 cursor: pointer;
}

.menuToggle span	{
   width: 25px;
    height  :   3px;
    background-color: white;
   margin: 3px 0;
    transition: 0.3s;
  border-radius: 2px;
}

.heroSection {
  background: linear-gradient(rgba(52, 73, 94, 0.8), rgba(44, 62, 80, 0.8)), url('templates/feedback_handling_training_1.webp');
    background-size: cover;
    background-position:   center;
	 min-height    :  80vh;
  display: flex;
   align-items: center;
   color: white;
  position: relative;
}

.heroContent {
   max-width: 1200px;
    margin: 0 auto;
   padding: 2rem;
  display  :grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.textBlock h1{
  font-size: 3.2rem;
		margin-bottom  :    1.5rem;
	    line-height: 1.2;
	  font-weight: 700;
}  

.textBlock p 
 {
    font-size: 1.3rem;
   margin-bottom: 2rem;
	opacity: 0.9;
}

.ctaButtons {
    display: flex;
   flex-wrap: wrap;
   gap: 1rem;
}

.primaryBtn, .secondaryBtn {
  padding: 14px 28px;
    -o-transition: all 0.3s ease;
	border-radius:6px;
    text-decoration: none;
  font-weight: 600;
    transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
         display:  inline-block;
}

.primaryBtn {
    background-color: #e74c3c;
  color :      white;
   border    :        2px solid #e74c3c;
}

.primaryBtn:hover {
   background-color: #c0392b;
    border-color: #c0392b;
  transform: translateY(-2px);
}

.secondaryBtn {
    background-color: transparent;
  color  :    white;
      border: 2px solid white;
}

.secondaryBtn:hover {
     background-color: white;
    color: #2c3e50;
}

.heroImage img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.benefitsArea {
   padding: 5rem 0;
  background-color: #ecf0f1;
}

.sectionContainer {
         max-width: 1200px;
    margin     :      0 auto;
  padding: 0 2rem;
}

.benefitsArea h2 {
    text-align: center;
	font-size :       2.5rem;
          margin-bottom     :    3rem;
  color: #2c3e50;
}

.benefitsList {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:       2rem;
}

.benefitCard {
	 background  :white;
   padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.benefitCard:hover {
  transform: translateY(-5px);

}

.benefitCard h3 {
   font-size :      1.4rem;
    margin-bottom: 1rem;
  color: #34495e;
}

.servicesSection {
	    padding: 5rem 0;
	    background-color: white;


}

.contentWrapper {
   max-width: 1200px;
                    margin: 0 auto;
		padding: 0 2rem;
}

.servicesSection h2		{
   text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
        color: #2c3e50;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.serviceItem {

						background: #f8f9fa;
   border-radius     :      10px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;}

.serviceItem:hover {


  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
     }

.serviceItem img {
  width: 100%;
    height     :  200px;
  object-fit: cover;
}

.serviceItem h3 {
   padding: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
  color: #2c3e50;
}

.serviceItem p {
   padding: 0 1.5rem;
   color: #7f8c8d;
   line-height: 1.6;
}

.servicePrice {
   padding: 1rem 1.5rem 1.5rem;
    font-size :     1.2rem;
    font-weight: 700;
   color: #e74c3c;
}

.ctaSection {
     background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  padding  :  4rem 0;
    text-align: center;
  color: white;

}

.ctaContainer {
  max-width: 800px;
    margin: 0 auto;
  padding: 0 2rem;
}

.ctaSection h2 {
  font-size: 2.3rem;
	 margin-bottom: 1rem;

}

.ctaSection p {
  font-size: 1.2rem;
	margin-bottom: 2rem;
   opacity: 0.9;
}

.ctaButton {
	  background-color: #e74c3c;
  color: white;
    padding: 16px 32px;
                    border-radius: 6px;
	text-decoration: none;
        font-weight     :     600;
    font-size: 1.1rem;
    display :    inline-block;
  transition: all 0.3s ease;}

.ctaButton:hover {
  -webkit-transform: translateY(-2px);
  background-color: #c0392b;
  -ms-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px); 



}

.contactSection{
    padding: 5rem 0;
    background-color: #ecf0f1;
}

.contactWrapper     {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
	
}

.contactSection h2 {
   text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.contactContent {
   display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contactInfo h3 {
    font-size: 1.5rem;
  margin-bottom: 2rem;
   color: #34495e;
}

.contactDetail {
  margin-bottom: 1.5rem;
}


.contactDetail strong {
   display: block;
  color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contactForm {
  background: white;
	 padding: 2.5rem;
    border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.formGroup {
    margin-bottom  :  1.5rem;
}

.formGroup label {


    display: block;
   margin-bottom: 0.5rem;
    font-weight: 600;
    color     :   #2c3e50; 
}

.formGroup input,
.formGroup select,
.formGroup textarea {
          width: 100%;
   padding:        12px;
    border: 2px solid #ddd;
    border-radius: 5px;
   font-size: 1rem;
    transition:  border-color 0.3s ease;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
        outline     :none;
    border-color: #3498db;
}

.submitBtn {
       background-color: #27ae60;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
   transition: background-color 0.3s ease;
   width: 100%;}

.submitBtn:hover {
    background-color: #219a52; 

}

.mainFooter

{
	  background-color: #2c3e50;
  color: white;
   padding: 3rem 0 1rem;
}

.footerContent {
  max-width: 1200px;
    margin     :  0 auto;
  padding: 0 2rem;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footerLogo {
         height: 40px;
    width: auto;
                    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footerSection h4 {

	         margin-bottom: 1rem;
   color:     #ecf0f1;}

.footerSection ul {
  list-style: none;
}

.footerSection ul li {
   margin-bottom: 0.5rem;
}

.footerSection a {
    color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footerSection a:hover {
        color   :    #3498db;
}

.footerBottom {
	 border-top: 1px solid #34495e;
    margin-top: 2rem;
   padding-top: 1rem;
   text-align: center;
  color: #bdc3c7;
}@media (max-width: 768px) {
    .menuToggle {
        display: flex
    }
    
    .navLinks {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2c3e50;
        flex-direction: column;
        padding: 1rem 0
    }
    
    .navLinks.active {
        display: flex
    }
    
    .heroContent {
        grid-template-columns: 1fr;
        text-align: center
    }
    
    .textBlock h1 {
        font-size: 2.5rem
    }
    
    .ctaButtons {
        justify-content: center
    }
    
    .contactContent {
        grid-template-columns: 1fr
    }
    
    .servicesGrid {
        grid-template-columns: 1fr
    }
    
    .benefitsList {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .navWrapper {
        padding: 0 1rem
    }
    
    .sectionContainer,
    .contentWrapper,
    .contactWrapper {
        padding: 0 1rem
    }
    
    .textBlock h1 {
        font-size: 2rem
    }
    
    .heroContent {
        padding: 1rem
    }
}.activeLink {
   color: #3498db !important;
  background-color: rgba(255,255,255,0.1);
   border-radius: 4px;
}

.aboutHero {
  background: linear-gradient(rgba(41, 128, 185, 0.8), rgba(52, 152, 219, 0.8));
    padding: 6rem 0 4rem;
	 text-align: center;
	color    :      white;
}

.aboutHeroContent {
   max-width: 800px;
   margin     :   0 auto;
  padding   :   0 2rem;
}

.aboutHero h1

{
  font-size: 3rem;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.aboutHero p {
          font-size: 1.3rem;
   opacity: 0.9;
}


.storySection {
   padding: 5rem 0;
    background-color  :   white;
}

.storyContainer {

  max-width: 1200px;
  margin: 0 auto;
    padding: 0 2rem;
          display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;}

.storyText h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}  

.storyText p {
  margin-bottom: 1.5rem;
   font-size     :  1.1rem;
  line-height: 1.7;
   color: #555; 
	
}

.storyImage img {
    width   :      100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.valuesSection {
	 padding: 5rem 0;
  background-color: #f8f9fa;
}

.valuesWrapper {
    margin: 0 auto;
    max-width: 1200px;
  padding: 0 2rem;
}

.valuesSection h2 {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
	color: #2c3e50;


}

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap   :2rem;
}

.valueCard {
    background: white;
      padding: 2.5rem 2rem;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   text-align: center;
  transition: transform 0.3s ease;
}

.valueCard:hover {
  transform: translateY(-8px);
	}

.valueCard h3 {
   font-size: 1.4rem;
	margin-bottom: 1rem;
   color: #34495e;
}

.teamSection {
  padding: 5rem 0;
   background-color: white;
}

.teamContainer {
	 max-width: 1200px;
               margin: 0 auto;
    padding: 0 2rem;
}

.teamSection h2 {
   text-align: center; 
	      font-size: 2.5rem; 
	   margin-bottom: 3rem; 
	   color: #2c3e50;
}

.teamGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;
}

.teamMember {
    background: #f8f9fa;
   border-radius: 12px;
                    overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease; 

}

.teamMember:hover    {

	  transform: translateY(-5px);}

.teamMember img {
   width: 100%;
  height: 250px;
    object-fit: cover;
}

.teamMember h3 {
   padding: 1.5rem 2rem 0.5rem;
 font-size: 1.4rem;
    color     :     #2c3e50;
}



.teamRole {
    padding: 0 2rem;
  color: #e74c3c !important;
    font-weight: 600;
  margin-bottom: 1rem !important;
}

.teamMember p:last-child {
  padding  : 0 2rem 2rem;
   color: #666;
   line-height: 1.6;
}

.approachSection {
	padding: 5rem 0;
  background-color: #ecf0f1;
}

.approachContent {
    max-width     :      1200px;
     margin   : 0 auto;
   padding: 0 2rem;
}

.approachSection h2 {
    text-align: center;
    font-size: 2.5rem;
	 margin-bottom    :   3rem;
    color: #2c3e50;
}

.approachGrid{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.approachItem

{
    background: white;
    padding: 2rem;
    border-radius     :       8px;
    border-left: 4px solid #3498db;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.approachItem h3 {
	font-size: 1.3rem;
  margin-bottom     :    1rem;
    color: #2c3e50;
}

.statsSection {
    padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.statsContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding    :      0 2rem;
}

.statsSection h2 {
	text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
} 

.statsGrid {
  display     :  grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
               gap: 2rem;
}

.statItem {
    text-align: center;
  padding: 2rem;
}  

.statNumber {
        font-size: 3rem;
    font-weight: 700;
  color    :#3498db;
  margin-bottom: 0.5rem;


}

.statLabel {
   font-size: 1.1rem;
	 opacity: 0.9;
}

.thankYouSection {
   padding: 6rem 0 4rem; 
	  background: linear-gradient(rgba(39, 174, 96, 0.1), rgba(46, 204, 113, 0.1)); 
	    min-height: 80vh;
}

.thankYouContainer {
  max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
	 display:      grid;
    grid-template-columns: 2fr 1fr;
   gap: 3rem;
   align-items:  center;
}

.successIcon {
   text-align: center;
   margin-bottom: 2rem; 
	
}

.checkmark {
  display: inline-block;
    width: 80px;
    height:      80px;
   background-color: #27ae60;
    border-radius: 50%;
  color: white;
  font-size: 2.5rem;
   line-height: 80px;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.thankYouContent h1 {
  font-size: 2.8rem;
    margin-bottom: 1.5rem;
  color :       #2c3e50;
    text-align: center;
}

.thankYouMessage {


	font-size: 1.2rem;
    margin-bottom: 3rem;
   color: #555;
               text-align: center;
   line-height: 1.6;


	}

.nextSteps h2 {
   font-size: 2rem;
  margin-bottom: 2rem;
    color: #2c3e50;
}

.stepsList   {
	   margin-bottom: 3rem;
     }

.stepItem		{
   display: flex;
   align-items: flex-start;
   margin-bottom: 2rem;
   gap: 1.5rem;
}

.stepNumber {
    background-color: #3498db;
               color   :        white;
  width: 40px;
   height: 40px;
    border-radius :       50%;
	display: flex;
		 align-items: center;
	justify-content:       center;
   font-weight:700;
  flex-shrink: 0;
}

.stepContent h3 {
	font-size: 1.3rem;
   margin-bottom: 0.5rem;
  color: #2c3e50;
}

.stepContent p   {
     color: #666;
    line-height: 1.6;
}

.additionalInfo {
    background   :       white;
   padding: 2rem;
   border-radius: 8px;
    border-left: 4px solid #27ae60;
       margin-bottom: 3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.additionalInfo h2 {
	font-size   :1.5rem;
   margin-bottom: 1rem;
    color: #2c3e50;
}


.additionalInfo p		{
    color: #666;
  line-height: 1.6;
}

.actionButtons {
      display     :       flex;
  gap: 1rem;
   flex-wrap: wrap;
    justify-content: center;
	}

.thankYouImage img {
   width: 100%;
  border-radius     :10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contactInfo {

	 padding     :      4rem 0;
   background-color: #f8f9fa;
	}

.contactInfoContainer {
    max-width: 800px;

	   margin: 0 auto;

	   padding: 0 2rem;

	      text-align: center; 
	
}

.contactInfo h2   {
  font-size: 2rem;
    margin-bottom: 1rem;
  color: #2c3e50;
}

.contactInfo > p   {
	   font-size: 1.1rem;
   margin-bottom: 2rem;
  color: #666;


}

.urgentContact {
   display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
  margin-top: 2rem;
}

.contactMethod {
   background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contactMethod h3 {
	color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contactMethod p{
  font-size: 1.1rem;
    margin-bottom: 0.5rem;
 color: #555;
}

.contactMethod small {
      color: #999;
  font-size: 0.9rem;

}@media (max-width: 768px) {
    .storyContainer {
        grid-template-columns: 1fr;
        gap: 2rem
    }
    
    .aboutHero h1 {
        font-size: 2.5rem
    }
    
    .thankYouContainer {
        grid-template-columns: 1fr;
        gap: 2rem
    }
    
    .thankYouContent h1 {
        font-size: 2.2rem
    }
    
    .actionButtons {
        flex-direction: column;
        align-items: center
    }
    
    .urgentContact {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .aboutHero h1 {
        font-size: 2rem
    }
    
    .thankYouContent h1 {
        font-size: 1.8rem
    }
    
    .stepItem {
        flex-direction: column;
        align-items: center;
        text-align: center
    }
}