* {
    margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}



body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
   color: #2c3e50;
   background: #f8f9fa;
  line-height: 1.6;

}

a {
    text-decoration: none;
   color: inherit;
  transition  :    color 0.3s ease;
}

.header-nav    {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
	padding: 1rem 0;
    position: sticky;
   top: 0;
   z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-container {
   max-width: 1200px;
  margin: 0 auto;
    padding :    0 2rem;
   display:     flex;
  justify-content  :        space-between;
  align-items: center; 

}

.logo-section  
  {
  flex-shrink: 0;
}

.nav-logo {
	 height: 2.5rem;
   width: auto;
  filter: brightness(0) invert(1);

}

.burger-btn

{
	display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding :   0.5rem;
	
}

.burger-line {
    background: #2c3e50;
    margin: 5px 0;
  width: 24px;
   height :2px;
	display: block;
   transition: all 0.3s ease;
}

.nav-list {
	  display: flex;
    list-style: none;
  gap: 2rem;
  align-items: center;


}

.nav-link {
   font-weight: 500;
   color: #2c3e50;
               padding: 0.5rem 0;
   border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-link:hover {
  border-bottom-color: #e67e22;
       color: #e67e22;
}@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .nav-list.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}.hero-block {
  max-width    : 1200px;
	 margin: 0 auto;
	 padding: 4rem 2rem;
  display: grid;
         grid-template-columns: 1fr 1fr;
    gap: 3rem;
	align-items: center;
}

.hero-content	{
   display :     flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
 line-height: 1.2;
   margin-bottom     :      1.5rem;
    color: #2c3e50;
}

.hero-subtitle  {
	    font-size    :      1.1rem;
          color: #555;
  margin-bottom: 2rem;
   line-height: 1.8;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
  padding: 1rem 2rem;
   border-radius: 8px;
   font-weight: 600;
  text-align: center;
      width: fit-content;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
       color: #fff;
}

.hero-image {
	width: 100%;
  height: auto;
    border-radius: 12px;
   object-fit  :    cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}@media (max-width: 768px) {
    .hero-block {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}.expertise-block {
    background: #fff;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.expertise-container {
 max-width: 1200px;
   margin: 0 auto;
}

.section-title    {
   font-size    :     2.2rem;

		font-weight: 700;

		text-align: center;

	  margin-bottom: 3rem;

	   color: #2c3e50;

	      position: relative;

	        padding-bottom: 1rem;
}

.section-title::after {
  content: '';
    position     :       absolute;
    bottom: 0;
  left: 50%;
  transform: translateX(-50%);
   width :60px;
    height :        4px;
      background:  #e67e22;
               border-radius: 2px;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}



.expertise-card {
		background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
   border: 1px solid #e0e0e0;
 transition: all 0.3s ease;
    text-align: center;
}

.expertise-card:hover {

  border-color: #e67e22;
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.15);
  transform: translateY(-4px);


}  

.expertise-icon

{
	    margin-bottom:        1.5rem;

}

.card-icon
	{
  width: 56px;
  height: 56px;
    stroke: #e67e22;
    fill: none;
    stroke-width    :      1.5;
}

.expertise-heading {
	font-size: 1.4rem;
          font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}



.expertise-text {
  font-size   : 0.95rem;
          line-height: 1.8;
     color: #666; 
	
}

.training-section {
        max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem;
}

.training-grid {
   display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 2rem;
}

.training-item


{
   background :       #fff;
	  border-radius: 12px;
	   overflow: hidden;
	  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
		 transition: all 0.3s ease;
	    border:     1px solid #e0e0e0;
}

.training-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.training-image {
   width: 100%; 
	    height     :    200px; 
	    object-fit: cover; 
	  display: block;
}

.training-info{
	 padding: 1.5rem;
}

.training-title    {

	       font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
  color: #2c3e50;


}

.training-desc {
  color: #666;
   font-size: 0.9rem;
  line-height: 1.6;
   margin-bottom: 1rem;
}

.training-tag {
    display: inline-block;

   background: #fff3e0;

  color: #e67e22;

  padding: 0.4rem 0.8rem;

	border-radius: 4px;

    font-size: 0.8rem;

		 font-weight     :      600;
}

.methodology-section {
     background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);

  padding: 4rem 2rem;

	margin: 2rem 0; 
	
	}

.methodology-content {
  margin: 0 auto;
  max-width: 1200px;
}

.methodology-block {
  display   :    grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items   :center;
}

.methodology-heading    {
    font-size: 1.6rem;
 font-weight: 600;
   margin-bottom:    1.5rem;
   color   :     #2c3e50;
}

.methodology-desc {

  color  :   #666;

    line-height: 1.8;

  margin-bottom: 1.5rem;

  font-size: 0.95rem;}

.methodology-list {
      list-style: none;
}

.methodology-list li {
     padding: 0.7rem 0;
   color: #555;
  padding-left: 1.8rem;
  position: relative;


}

.methodology-list li:before {
   color  :    #e67e22;
  content: '✓';
   font-size: 1.2rem;
          position: absolute;
  left: 0;
  font-weight: 700;
}

.methodology-visual {
	display     :       flex;
                    justify-content  :    center;
}

.methodology-icon {


   height     : 200px;
   stroke-width: 1;
	 width: 200px;
    fill: none;
  opacity: 0.8;
    stroke: #e67e22;
}@media (max-width: 768px) {
    .methodology-block {
        grid-template-columns: 1fr;
    }

    .methodology-icon {
        width: 150px;
        height: 150px;
    }
}.cta-section {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
	 color: #fff;
  padding    : 4rem 2rem;
    text-align: center;
    margin:  3rem 0;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
	 font-size  :  2.2rem;

    font-weight: 700;

    margin-bottom  :1rem;
     }

.cta-text {
  font-size: 1.1rem;
    margin-bottom: 2rem;
  line-height: 1.8;
   opacity    :  0.95;
}

.cta-button-primary {
   display: inline-block;
         background: #fff;
        color: #e67e22;
   padding: 1rem 2.5rem;
    border-radius: 8px;
        font-weight: 700;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);

}

.cta-button-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #d35400;
} 

.contact-section	{
	  background: #fff;
	 padding     :   4rem 2rem;
   margin: 3rem 0;
     }

.contact-container     {
   max-width: 700px;
   margin     :       0 auto;
}

.contact-intro {
    text-align: center;
   color: #666;
  margin-bottom: 2.5rem;
   font-size: 1rem;
}


.contact-form
{


    background: #f8f9fa;
   padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
	
     }

.form-row    {
          display :grid;
   grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group-full {
   margin-bottom: 1.5rem;
} 

.form-group {
               display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
   margin-bottom:      0.6rem;
    color: #2c3e50;
	font-size: 0.95rem;
}

.form-input {
   -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
  padding: 0.9rem;
     border: 1px solid #ddd;
    border-radius: 6px;
    -o-transition: border-color 0.3s ease;
   font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-input:focus		{
  outline: none;
          border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-textarea {
   padding: 0.9rem;
    border: 1px solid #ddd;
  border-radius: 6px;
  font-size    :     0.95rem;
    font-family: inherit;
	resize:       vertical;
  transition: border-color 0.3s ease;
}

.form-textarea:focus {
	outline: none; 
   border-color: #e67e22; 
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-button {
	 width: 100%;
   padding: 1rem;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
   color: #fff;
   border: none;
   border-radius: 6px;
   font-weight: 600;
  font-size: 1rem;
  cursor   :     pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.form-button:hover     {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
	}

.form-button:active     {
  transform: translateY(0);
}@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }
}.footer-block {

    background: #2c3e50;
   color: #ecf0f1;
   margin-top: 4rem;
      padding: 3rem 2rem 1.5rem;


}

.footer-content{
  max-width :      1200px;
  margin: 0 auto;
    display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
	padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section{
  display     :     flex;
   flex-direction :       column;
}

.footer-branding	{
  align-items    :flex-start;
	
}

.footer-logo {
    height: 3rem;
   width: auto;
    margin-bottom: 1rem;
}  

.footer-heading {
	font-weight: 700;
  margin-bottom: 1.2rem;
   color: #fff;
 font-size: 1rem;
}

.footer-list {
   list-style :  none;

}

.footer-list li {


    margin-bottom: 0.8rem;
     }

.footer-link {
  color    :        #bdc3c7;
	 transition: color 0.3s ease;
    font-size:    0.95rem;
}

.footer-link:hover {
    color: #e67e22;
}

.footer-text {
    color: #bdc3c7;
   line-height :      1.8;
   font-size: 0.9rem;
          margin-bottom   :      0.8rem;
}

.footer-copy {
    text-align: center;
  color: #95a5a6;
	font-size: 0.85rem;
  padding-top     :     2rem;
    margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .training-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.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;
    }
}.active-link{
   color: #e67e22;
  border-bottom-color: #e67e22;
}

.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); 
	 color: #fff; 
  padding: 6rem 2rem; 
   text-align:       center;
}

.services-hero-content	{
	   max-width: 1200px;
  margin: 0 auto;
}



.services-hero-title {
  font-size: 3rem;
        font-weight: 700;
 margin-bottom: 1rem; 

}

.services-hero-subtitle {
    font-size     :       1.3rem;
    opacity: 0.95;
}

.services-overview {
       background: #fff;
   padding: 3rem 2rem;
    margin    :      2rem 0;
}

.services-overview-container {
   max-width: 1200px;
   margin   :  0 auto;
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;


}

.overview-card {

	  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
   padding: 2rem;
    border-radius: 12px;
      border    :2px solid #e0e0e0;
                    text-align: center;
   transition     : all 0.3s ease;

}

.overview-card:hover {
  border-color: #e67e22;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
  transform: translateY(-6px);
}


.overview-icon {
  margin-bottom: 1.2rem;
    height: 60px;
    display:  flex;
   align-items: center;
   justify-content: center;
}

.overview-icon img {
	width: 50px;
   height: 50px;
   stroke: #e67e22;
   fill: none;
}

.overview-title {
   font-size: 1.3rem;
       font-weight: 600;
  margin-bottom: 0.8rem;
    color: #2c3e50;
}

.overview-desc {
   color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-detail-section {
  padding: 4rem 2rem;
}

.service-detail-container  {
     max-width: 1200px;
    margin     :   0 auto;
    display  :   flex;
  flex-direction :        column;
   gap: 4rem;


}

.service-detail-item


{
     display: grid;
  grid-template-columns    :  1fr 1fr;
	 gap: 3rem;
    align-items: center;
    background: #fff;
   padding: 2.5rem;
    border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {
   direction: ltr;
}

.service-detail-image     {
  overflow: hidden;
               border-radius     : 12px;
}

.detail-img {


         width: 100%;
   height: 300px;
	 object-fit: cover;
  display: block;
	
}



.service-detail-text {
	 padding: 1rem 0;
}

.service-detail-title {
		font-size: 2rem;
    font-weight    :700;
  margin-bottom: 1.2rem;
  color     :     #2c3e50;
}



.service-detail-desc {
   color: #666;
  line-height: 1.8;
    margin-bottom  :       1.5rem;
  font-size: 0.95rem;
}

.service-detail-list {
   list-style: none; 
	    margin-bottom: 2rem;
}  

.service-detail-list li	{
  padding: 0.7rem 0;
  padding-left: 2rem;
   color :    #555;
	 position: relative;
    font-size: 0.95rem;
}

.service-detail-list li:before {
  content: '';
          top: 50%;
  height: 8px;
  width: 8px;
	border-radius: 50%;
   position: absolute;
        background: #e67e22;
  transform: translateY(-50%);
        left: 0; 

} 

.service-pricing {
    display: flex;
	align-items: baseline;
  gap:     0.5rem;
  font-weight: 600;
}

.price-label {
  color: #999;
	font-size: 0.9rem;
}

.price-amount {
  font-size: 2.2rem; 
	  color: #e67e22; 
	
}

.price-currency {
  color: #666;
  font-size: 0.9rem;

}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .services-overview-container {
        grid-template-columns: 1fr;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .service-detail-item.reverse {
        direction: ltr;
    }

    .service-detail-title {
        font-size: 1.5rem;
    }

    .detail-img {
        height: 250px;
    }
}.service-process   {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
                    padding: 4rem 2rem;
}

.process-container {
   max-width: 1200px;
   margin     :   0 auto;
}


.process-steps {
  display: flex;
    justify-content: space-between;
    align-items: center;
	 flex-wrap :wrap;
  gap: 1rem;
}

.process-step		{
   flex  :     1;
         min-width: 180px;
	background: #fff;
    padding: 2rem;
   border-radius:12px;
    text-align: center;
   border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
     border-color:   #e67e22;
}

.step-number	{
   font-size:     2.5rem;
    font-weight: 700;
        color     :   #e67e22;
   margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
    color: #2c3e50;
                    margin-bottom: 0.8rem;
}

.step-desc {
					color:        #666;
   font-size: 0.85rem;
      line-height: 1.6;
}

.process-arrow


{
   width: 30px;
	height  :    30px;
   display: flex;
    align-items  :   center;
  justify-content: center;
	margin: 0 -10px;
}

.process-arrow img{
  width: 24px;
    height     :24px;
    stroke: #e67e22;
    fill: none;
  opacity: 0.7; 
	
}@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .process-step {
        width: 100%;
    }
}.service-packages {
    padding: 4rem 2rem;

	        background: #fff;
}

.packages-container {
   max-width: 1200px;
   margin: 0 auto;
}

.packages-grid		{
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	    gap: 2rem;

	   margin-top   :  3rem;

}

.package-card {


  background: #f8f9fa;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
   border: 2px solid #e0e0e0;
  border-radius: 12px;


}

.package-card:hover{
	 border-color: #e67e22;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.15);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color  :      #e67e22;
  background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
  transform: scale(1.02);
}

.package-badge {


   font-weight: 600;
      right: 20px;
    position: absolute;
  top: -15px;
    border-radius: 20px;
  padding: 0.5rem 1rem;
	background: #e67e22;
  color: #fff;
   font-size: 0.85rem;

}

.package-header {
 margin-bottom: 1.5rem; 
   padding-bottom: 1.5rem; 
  border-bottom: 2px solid #e0e0e0;
} 

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
    color: #2c3e50;
	 margin-bottom: 0.5rem;
}

.package-price {
	font-size: 2rem;
    font-weight: 700;
  color: #e67e22;
}

.package-content {
   margin-bottom: 2rem;
}

.package-period {
	   color: #999;
   font-size: 0.9rem;
          margin-bottom: 1.2rem;


}

.package-list {
    list-style: none;
}

.package-list li    {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
 color: #666;
   position: relative;
	font-size  : 0.95rem;
}

.package-list li:before {
  content: '✓';
   position: absolute;
    left: 0;
  color: #e67e22;
 font-weight: 700; 

}

.package-button

{
   display: block;
	width: 100%;
   padding: 0.9rem;
    background: #f0f0f0;
   color: #2c3e50;
   border: none;
                    border-radius: 6px;
        font-weight:600;
   cursor    :       pointer;
          transition: all 0.3s ease;
  text-align: center;
	font-size: 0.95rem;
}

.package-button:hover {
    background: #e0e0e0;
    color: #2c3e50;
}

.package-button.featured-button {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
}

.package-button.featured-button:hover {
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
  transform: translateY(-2px); 
	
}@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }
}.service-cta     {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
               padding: 4rem 2rem;
	text-align: center;
	margin-top: 3rem;
}

.service-cta-content {
  max-width   :     800px;
  margin: 0 auto;
     }

.service-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
	margin-bottom: 1rem;
}

.service-cta-text {
   font-size: 1.1rem;
   margin-bottom: 2rem;
  opacity : 0.95; 

}

.thankyou-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
					padding: 4rem 2rem;
  min-height: calc(100vh - 300px);
}

.thankyou-container {
    max-width: 700px;
    margin: 0 auto;
   background: #fff;
    padding    :   3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
} 

.thankyou-icon {
       margin-bottom: 1.5rem;
}

.thankyou-icon img {
   width: 80px;
    height: 80px;
    stroke: #27ae60;
  fill: none;
               stroke-width     :      1;
}

.thankyou-title {
  font-size: 2.5rem;
    font-weight: 700;
   color: #27ae60;
	margin-bottom  :0.5rem;
} 

.thankyou-subtitle {


  color: #666;
   font-size: 1.2rem;
     margin-bottom: 2rem;


}

.thankyou-content {
   text-align: left;
    margin: 2rem 0;
	background: #f8f9fa;
    padding: 1.5rem;
   border-radius: 8px;
	
}

.thankyou-text {
   line-height: 1.8;
	 margin-bottom: 1.5rem;
    color: #555;
}



.thankyou-info-block {
    background     :      #fff;
   padding    :1.5rem;
    border-radius    :       8px;
         margin     :1.5rem 0;
   border-left: 4px solid #e67e22;
}

.thankyou-info-title {


  margin-bottom: 1rem;
	 font-weight: 600;
  color: #2c3e50;
    font-size: 1.1rem;

}

.thankyou-info-list {
    list-style:        none;
}

.thankyou-info-list li {
    padding: 0.6rem 0;
   padding-left: 1.8rem;
  color: #666;
    position: relative;
    font-size  :     0.95rem;
}

.thankyou-info-list li:before {
  content: '✓';
   position: absolute;
    left: 0;
	 color: #e67e22;
   font-weight: 700;
}

.thankyou-contact-info {
  background: #fff3e0;
    padding: 1.5rem;
  border-radius: 8px;
 margin-top     :     1.5rem;
}

.thankyou-contact-text {
    color: #333;
	 margin-bottom    :  1rem;


}

.thankyou-contact-detail		{
    color: #2c3e50;
       font-weight: 600;
}

.thankyou-contact-detail a {
   color :      #e67e22;
   text-decoration: none;
}

.thankyou-actions {
  display  :    flex;
  gap: 1rem;
    justify-content     :   center;
    margin-top:     2rem;
	flex-wrap: wrap;
}

.thankyou-button {


   display: inline-block;

	   padding: 1rem 2rem;

	  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);

	   color: #fff;

	    border-radius   :     6px;

	  font-weight: 600;

	  transition: all 0.3s ease;

	    text-align: center;}

.thankyou-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);}

.thankyou-button-secondary {
   display: inline-block;
  padding: 1rem 2rem;
  background: #f0f0f0;
   color: #2c3e50;
       border: 2px solid #e0e0e0;
   border-radius :6px;
   font-weight: 600;
	 transition: all 0.3s ease;
    text-align  :      center;
}

.thankyou-button-secondary:hover {
   border-color: #e67e22;
   color: #e67e22;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-button,
    .thankyou-button-secondary {
        width: 100%;
    }
}.faq-section-thankyou {
   background     :   #fff;
  padding: 4rem 2rem;
}

.faq-container {
	 max-width: 1200px;
      margin: 0 auto;
}



.faq-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
	margin-top: 3rem;
}

.faq-item {
   background :       #f8f9fa;
  padding: 2rem;
    border-radius: 12px;
   border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.faq-item:hover {
   border-color: #e67e22;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.faq-question {
    font-size: 1.1rem;
	 font-weight: 600;
  color: #2c3e50;
    margin-bottom: 1rem; 

}

.faq-answer {
 color: #666;
    line-height  :    1.8;
         font-size: 0.95rem;}@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}.testimonials-thankyou


{


  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
   padding: 4rem 2rem;
}

.testimonials-container {
   max-width: 1200px;
    margin: 0 auto;
	
}



.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}


.testimonial-card {
  background: #fff;

     padding: 2rem;

  border-radius: 12px;

    border: 1px solid #e0e0e0;

  box-shadow: 0 4px 12px rgba(0,0,0,0.05);

	transition: all 0.3s ease;
}

.testimonial-card:hover {
	  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	  transform: translateY(-4px);}

.testimonial-text {
   color: #555;
	font-size     :      0.95rem;
  line-height: 1.8;
      margin-bottom: 1.5rem;
  font-style  :      italic;
}

.testimonial-author {
   color: #e67e22;
   font-weight :600;
  font-size   :    0.9rem;

}@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}