*  {
	 margin: 0;
    padding: 0;
	 box-sizing   :   border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height   :   1.6;
   color: #2c3e50;
   background: #ffffff;
}

.section-container 
 {
   padding    :        0 20px;
   max-width: 1200px;
      margin: 0 auto;
}

.navigation-section 
 {
  background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
  padding:  15px 0;
  position: sticky;
      top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
   display:flex;
         justify-content: space-between;
    align-items: center; 
	
}

.logo-container {
 flex-shrink    :      0;
}

.logo-image {
	height: 45px;
  width: auto;
  display: block;
}

.menu-toggle {
  background: none;
	margin-left: auto;
   border:     none;
   padding: 8px;
  display: none;
    cursor: pointer;
}

.burger-icon {
  width: 28px;
    height: 28px;
  filter: brightness(0) invert(1);
	
}

.menu-navigation {
    display: flex;
  gap: 30px;
     list-style: none;
}

.menu-link
	{
   color: #ffffff;
  text-decoration   :      none;
  font-weight: 500;
    font-size: 15px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.menu-link:hover {
    border-bottom: 2px solid #a8d5ba;
    color     :      #a8d5ba;
}@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-navigation {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-navigation.active {
    display: flex;
  }

  .menu-link {
    padding: 12px 0;
    border-bottom: none;
    display: block;
  }

  .menu-navigation {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
  }
}.hero-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap :      40px;
   align-items: center;
    padding: 80px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #e8f1ed 100%);
}

.hero-content {

  display: flex;
   flex-direction: column;
  gap: 25px;
     }

.hero-title {
   font-size: 48px;
  font-weight: 700;
    line-height: 1.2;
   color: #1a472a;
}

.hero-subtitle		{
	 color: #4a5f5a;
  font-size: 18px;
  line-height: 1.8;

}



.hero-image-block {
  display: flex;
               justify-content: center;
}


.hero-image {

	        width   :  100%;
   max-width: 450px;
  height:  auto;
   border-radius    :       12px;
  box-shadow: 0 10px 30px rgba(26, 71, 42, 0.15);
}@media (max-width: 960px) {
  .hero-banner {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}.cta-button {
	    border: none;
	 cursor    :     pointer;
    display: inline-block;
    font-weight: 600;
    width: fit-content;
  padding: 14px 32px;
   text-align: center;
    font-size: 16px;
   transition: all 0.3s ease;
          text-decoration: none;
  border-radius: 6px;
     }

.primary-button {
	  background: linear-gradient(135deg, #2d7a4f 0%, #1a472a 100%);
   color: #ffffff;


}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 71, 42, 0.3);
}

.secondary-button {
    background :  #f0f0f0;
    color: #1a472a;
   border: 2px solid #1a472a;
}

.secondary-button:hover {
    background: #1a472a;
  color: #ffffff; 
	
}

.section-heading {
	font-size: 42px;

    font-weight  :   700;

   color: #1a472a;

   margin-bottom   :  50px;

    text-align: center;
}

.about-section {

  padding  :        100px 0;
	background:  #ffffff;
	}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
	 gap: 35px;
}

.benefit-item {
  background: linear-gradient(135deg, #f5f9f8 0%, #eef4f1 100%);
  padding     : 40px;
  border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
   border-left: 4px solid #2d7a4f;
}

.benefit-item:hover  
  {


  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(45, 122, 79, 0.12);
	} 

.benefit-icon {
   margin-bottom: 20px;
}

.icon-svg {
  fill: none;
    height: 42px;
   stroke: #1a472a;
    stroke-width: 1.5;
   width: 42px;
}

.benefit-title {
					font-size: 22px;
  font-weight: 600;
   color: #1a472a;
  margin-bottom: 15px;
}

.benefit-text {
  font-size: 15px;
    color: #576d68;
	line-height: 1.7;

}@media (max-width: 960px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}.services-preview {

	     padding :        100px 0;
  background: linear-gradient(180deg, #f0f5f3 0%, #ffffff 100%);
	}

.services-row {
    display  :    grid;
	  grid-template-columns: repeat(3, 1fr);
	   gap: 30px;
}

.service-card {
  background: #ffffff;
    border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.service-card:hover {
  box-shadow: 0 12px 35px rgba(45, 122, 79, 0.15);
  transform: translateY(-3px);
}

.card-image-wrapper {
    height: 220px;
   overflow: hidden;
  background: linear-gradient(135deg, #e8f1ed 0%, #dae9e3 100%);
}

.service-card-image {
   object-fit: cover;
    height: 100%;
    width     :   100%;
}

.card-title {
         font-size: 20px;
    font-weight: 600;
    color: #1a472a;
    padding: 25px 25px 15px;
}

.card-description {
   		 font-size: 14px;
    color: #576d68;
                    line-height: 1.6;
  padding: 0 25px 25px;


}@media (max-width: 960px) {
  .services-row {
    grid-template-columns: 1fr;
  }
}.webinar-conference-section {
   padding: 100px 0;
  background: linear-gradient(135deg, #f8fafb 0%, #e8f1ed 100%);
}



.section-description {


       text-align  :     center;
        font-size: 17px;
  color: #4a5f5a;
    margin-bottom: 60px;
   max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
       gap: 30px;
}

.event-card {

	    background: #ffffff;
  padding: 35px;
  border-radius: 10px;
    border-top: 4px solid #2d7a4f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
   transition: transform 0.3s ease;}

.event-card:hover {

	  transform: translateY(-4px);



}

.event-badge {
                    display: inline-block;
    background: #e8f1ed;
  color: #1a472a;
    padding  :       6px 14px;
  border-radius: 20px;
  font-size    :      12px;
    font-weight: 600;
    margin-bottom: 15px;
  text-transform: uppercase;
}


.event-title {
   margin-bottom: 12px;
    color: #1a472a;
   font-weight: 600;
   font-size: 19px;
}

.event-info {
    font-size: 14px;
    color   :#576d68;
  line-height: 1.6;
}@media (max-width: 960px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}.legacy-development-section {
	  padding: 100px 0;
  background: #ffffff;
     }

.legacy-content {
      display: grid;
   grid-template-columns: 1fr 1fr;
     gap : 50px;
    align-items: center;

}

.legacy-text

{
  font-size: 16px;
   line-height: 1.8;
    color :  #4a5f5a;
    margin-bottom: 20px;
}

.legacy-image-container {
    display: flex;
               justify-content: center;
}

.legacy-image {
   width: 100%;
	    max-width: 400px;
	    height: auto;
	    border-radius: 12px;
	  box-shadow: 0 10px 30px rgba(26, 71, 42, 0.1);
}@media (max-width: 960px) {
  .legacy-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}.cta-consultation-block {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    text-align: center;
}

.cta-inner	{
  max-width     :       1200px;
	margin: 0 auto;
   padding: 0 20px;
} 

.cta-heading 
 {
    font-size: 38px;
   font-weight: 700;
   color: #ffffff;
  margin-bottom: 20px;
}

.cta-text {
   font-size: 18px;
         color: #c5d9cf;
   margin-bottom: 35px;
}



.cta-consultation-block .secondary-button
	{
  background: #ffffff;
  color: #1a472a;
   border: 2px solid #ffffff;
}  

.cta-consultation-block .secondary-button:hover {
	background: transparent;
   color: #ffffff;
}

.contact-section

{
   padding: 100px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #e8f1ed 100%);
}

.contact-wrapper {
	display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
   margin-top: 50px;
}

.contact-form {
        background: #ffffff;
	 padding:      40px;
    border-radius     :     10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
 display :     block;
  margin-bottom: 10px;
	font-weight: 600;
   color: #1a472a;
  font-size: 14px;
}

.form-input,
.form-textarea {
	 width: 100%;
	 padding: 12px 16px;
	 border: 1px solid #d0d8d5;
    border-radius: 6px;
    font-size: 14px;
   font-family: inherit;
          transition  :        border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus     {
  outline: none;
         border-color: #2d7a4f;
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.1);
}

.form-textarea {
       resize   :    vertical;
	min-height: 120px;
}

.form-submit-button {
    width: 100%; 
	   padding: 14px; 
	  background: linear-gradient(135deg, #2d7a4f 0%, #1a472a 100%); 
	   color: #ffffff; 
	   border  :        none; 
			 border-radius: 6px; 
	  font-weight: 600; 
	  font-size: 16px; 
	   cursor: pointer; 
	    transition: all 0.3s ease;
}



.form-submit-button:hover {

  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 71, 42, 0.3);}

.contact-info-block {

	    background: #ffffff;
   padding: 40px;
	border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: fit-content;


}

.info-title {
    font-size:      20px;
   font-weight: 600;
  color :     #1a472a;
          margin-bottom: 30px;
}

.info-item{
   margin-bottom: 25px;
}

.info-label {
  font-size: 13px;
   font-weight: 600;
   color: #1a472a;
   margin-bottom: 6px;


}

.info-value {
    font-size: 14px;
    color: #576d68;
	 line-height: 1.6;
}@media (max-width: 960px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-block {
    height: auto;
  }
}.footer-section  {
  background: linear-gradient(135deg, #1a472a 0%, #0f2818 100%);
  color :      #ffffff;
   padding: 60px 0 20px;
}

.footer-wrapper {
    max-width     :     1200px;
	margin: 0 auto;
   padding :    0 20px;
}

.footer-main {
    display: grid;
	 grid-template-columns: 1fr 1fr 2fr;
   gap: 50px;
                    margin-bottom: 40px;
	padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     } 

.footer-brand {
    display: flex;
  align-items: flex-start;
}

.footer-logo {
                    height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-column {
	display     :   flex; 
   flex-direction: column; 
    gap: 15px;

}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
  margin-bottom: 10px;
}



.footer-links {
    list-style    :        none;
}

.footer-link {
	   color: #c5d9cf;
   text-decoration: none;
   font-size: 14px;
    transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 8px;
     }

.footer-link:hover {
	 color: #a8d5ba;


}

.footer-text		{
  font-size: 14px;
     color: #c5d9cf;
	line-height     :     1.7;
    margin-bottom: 8px;
}

.footer-phone {
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
      padding-top: 20px;
}



.footer-copyright {
    font-size: 13px;
  color: #8fa895;

}@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading {
    font-size: 32px;
  }

  .hero-title {
    font-size: 32px;
  }

  .cta-heading {
    font-size: 28px;
  }
}.policySection {
   padding: 80px 2rem;
  background: linear-gradient(180deg, #f8fafb 0%, #e8f1ed 100%);
}

.policyContainer {
   max-width: 800px;
   margin: 0 auto;
  text-align: left;
}

.policyContainer h1 {
         font-size: 42px;
    color:       #1a472a;
	 margin-bottom: 30px;
   font-weight: 700;
  text-align: center;

}

.policyContainer h2 {
    font-size: 28px;
                    color :   #1a472a;
	margin: 40px 0 20px 0;
     font-weight: 600;
}

.policyContainer p {


	color: #576d68;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 16px;
	}

.policyContainer ul	{
   margin: 20px 0;
    padding-left     :        25px;
}

.policyContainer li {
   color     :        #576d68;
 line-height: 1.6;
   margin-bottom: 10px;
   font-size: 16px;
}@media (max-width: 768px) {
  .policyContainer h1 {
    font-size: 32px;
  }

  .policyContainer h2 {
    font-size: 24px;
    margin: 30px 0 15px 0;
  }

  .policyContainer p,
  .policyContainer li {
    font-size: 15px;
  }

  .policySection {
    padding: 60px 1rem;
  }
}.services-hero {
	  background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
   padding: 80px 0;
	text-align: center;
	color: #ffffff;
     }

.services-hero-title {
   font-size   :52px;
   font-weight: 700;
  margin-bottom: 20px;
   line-height: 1.2;
}

.services-hero-subtitle {
   font-size: 20px;
   color    :    #c5d9cf;
   max-width: 700px;
  margin: 0 auto;
}

.services-full-list {
        padding: 100px 0;
   background: #ffffff;
}

.service-detailed {
    display     :    grid;
	grid-template-columns:   1fr 1fr;
	 gap: 50px;
    align-items: center;
    margin-bottom  :   100px;
}

.service-detailed.service-reversed {
   direction: rtl;
}

.service-detailed.service-reversed > * {
    direction: ltr;
}

.service-content-block {
        display :     flex; 
	   flex-direction: column; 
	   gap: 20px;
}

.service-main-title {
   font-size: 32px;
   font-weight: 700;
  color: #1a472a;
   line-height: 1.3;
}

.service-description {
      font-size:    16px;
  color: #4a5f5a;
	line-height: 1.8;
}

.service-features-list   {

	  list-style: none;
    padding: 0;
  margin: 20px 0;


}

.service-features-list li {
    font-size: 15px;
   color: #576d68;
    padding-left: 28px;
       margin-bottom     :  12px;
    position: relative;
  line-height: 1.6;
}

.service-features-list li:before {


  content: ''; 
	  position: absolute; 
	  left: 0; 
	                    top: 6px; 
	         width: 8px; 
	   height: 8px; 
	    background: #2d7a4f; 
	    border-radius: 50%;
	


}

.service-highlight {
                    font-size     :   15px;
      color: #1a472a;
      font-weight: 600;
   	background: #e8f1ed;
      padding: 20px;
       border-left   :     4px solid #2d7a4f;
      border-radius: 6px;
       margin-top: 20px;
}

.service-image-block {
   display    :     flex;
   justify-content: center;
}

.service-detail-image {
    width: 100%;

  max-width: 420px;

  height: auto;

     border-radius: 12px;

  box-shadow: 0 10px 35px rgba(26, 71, 42, 0.15);
}@media (max-width: 960px) {
  .service-detailed {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .service-main-title {
    font-size: 26px;
  }

  .services-hero-title {
    font-size: 40px;
  }

  .services-hero-subtitle {
    font-size: 18px;
  }
}.service-pricing-section {

  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #e8f1ed 100%);
	}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
       gap: 30px;
         margin-top: 60px;
}

.pricing-card 
 {
  background: #ffffff;
    padding    : 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top    :       3px solid #d0d8d5;
          position: relative; 
	
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(45, 122, 79, 0.12);
}

.pricing-card.featured-pricing {
    border-top: 3px solid #2d7a4f;
  background: linear-gradient(135deg, #f5f9f8 0%, #eef4f1 100%);
  transform: scale(1.05);
}

.pricing-card.featured-pricing:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  transform: translateX(-50%);
    color: #ffffff;
    border-radius   :       20px;
  text-transform: uppercase;
   padding: 6px 16px;
    position: absolute;
   font-weight: 600;
      left: 50%;
  font-size: 12px;
         background: #2d7a4f;
	top: -12px;
}

.pricing-title {
    font-size: 24px;
	font-weight: 600;
  color: #1a472a;
}

.pricing-description {
  font-size: 15px; 
	  color  :      #576d68; 
	  line-height  :       1.6;
}

.pricing-details     {
    -moz-border-radius: 6px;
  background: #e8f1ed;
 padding: 20px;
  border-radius: 6px;
}

.pricing-duration {
   font-size :   16px;
   font-weight: 600;
	color: #1a472a;
    margin-bottom: 8px; 

}

.pricing-info {
   font-size: 13px;
    color: #4a5f5a;
}

.pricing-action-button {
   display: inline-block;
  font-size: 15px;
    color: #1a472a;
   text-decoration: none;
    border-radius: 6px;
	text-align: center;
  transition: all 0.3s ease;
  background: #f0f0f0;
	border: 1px solid #d0d8d5;
    font-weight: 600;
   padding: 12px 24px;
}

.pricing-action-button:hover {

                    background: #1a472a;
       color: #ffffff;
       border-color: #1a472a;
     }

.pricing-action-button.primary-action {
  background: linear-gradient(135deg, #2d7a4f 0%, #1a472a 100%);
   color: #ffffff;
   border   :     none;
}

.pricing-action-button.primary-action:hover {
  box-shadow: 0 6px 18px rgba(26, 71, 42, 0.25);
}
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured-pricing {
    transform: scale(1);
  }

  .pricing-card.featured-pricing:hover {
    transform: translateY(-5px);
  }
}.service-process-section {
  padding:       100px 0;
    background:       #ffffff;
}

.process-steps {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.process-step {
  background: linear-gradient(135deg, #f5f9f8 0%, #eef4f1 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
  position: relative;
}

.step-number {
      font-size: 48px;
   font-weight: 700;
    color  :  #2d7a4f;
   margin-bottom    :     20px;
   opacity:    0.7;}

.step-title {
  font-size: 20px;
   font-weight: 600;
   color: #1a472a;
	margin-bottom: 15px;
}

.step-text  
  {
   font-size: 14px;
	line-height: 1.7;
   color: #576d68;
}@media (max-width: 960px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}.service-why-choose {
   padding: 100px 0;
	  background: linear-gradient(180deg, #f8fafb 0%, #e8f1ed 100%);
}

.why-choose-grid {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
         gap: 40px;
   margin-top: 60px;
	}

.why-item
	{
    background: #ffffff;
   padding: 40px;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
   display: flex;
  gap: 25px;
}

.why-icon {
  flex-shrink: 0;
}

.why-svg-icon		{
  width: 48px;
    height: 48px;
  stroke: #1a472a;
  fill: none;
   stroke-width: 1.5;
}

.why-title {
  font-size: 20px;
  font-weight: 600;
    color:   #1a472a;
	margin-bottom: 12px;


}

.why-text {
  font-size: 14px;
  color: #576d68;
	 line-height: 1.7;
}@media (max-width: 960px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}.service-cta-final {
   padding: 80px 0;
  background: linear-gradient(135deg, #1a472a 0%, #0f2818 100%);
  text-align: center;
}

.cta-final-inner {
   padding: 0 20px;
    max-width: 1200px;
          margin: 0 auto;
}

.cta-final-heading
	{
    font-size: 42px;
  font-weight: 700;
	color: #ffffff;
   margin-bottom: 20px;
}

.cta-final-text {
   font-size: 18px;
	 color: #c5d9cf;
    margin-bottom   :        35px;
}

.thankyou-hero {
  background: linear-gradient(135deg, #2d7a4f 0%, #1a472a 100%);
     padding: 100px 0;
       text-align: center;
       color  :    #ffffff;
      min-height: 400px;
      display: flex;
   					align-items: center;
}

.thankyou-content		{
	  display     :       flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;}

.thankyou-icon-wrapper {
   width: 100px;
   height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius  :    50%;
    display: flex;
    align-items: center;
  justify-content: center;
}

.thankyou-check-icon

{

	   width : 60px;
  height: 60px;
   stroke: #ffffff;
   fill: none;
  stroke-width: 1.5;

}

.thankyou-title {
   font-size: 48px;
    font-weight: 700;
 line-height   : 1.2; 
	
}

.thankyou-subtitle {
      font-size    :  20px;
    color    :    #c5d9cf;
    max-width: 600px;

}

.thankyou-details


{

	    padding: 100px 0;
  background: #ffffff;


}

.details-wrapper {


    display: grid;
  grid-template-columns: 2fr 1fr;
    gap: 50px;
     }

.details-main {
          display :      flex;
	                    flex-direction: column;
	    gap: 40px;

}

.details-heading {
   font-size     :   36px;
   font-weight: 700;
   color: #1a472a;
}

.timeline {
  display: flex;
  flex-direction: column;
    gap: 35px; 
	
}

.timeline-item {
    display     :      grid;
       grid-template-columns :    60px 1fr;
	 gap: 25px;

}

.timeline-marker   {
	width  :     60px;
   height:  60px;
  background: linear-gradient(135deg, #2d7a4f 0%, #1a472a 100%);
  border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
 position: relative;
}

.timeline-marker:not(:last-child)::after  
  {
  content: '';
    position: absolute;
   top :     60px;
    left   :    50%;
  transform: translateX(-50%);
   width: 2px;
   height: 35px;
  background: #d0d8d5;
}

.timeline-number {
   color: #ffffff;
   font-weight: 700;
  font-size: 20px; 
	
}

.timeline-title {
   font-size: 18px;
    font-weight: 600;
    color: #1a472a;
    margin-bottom: 8px;
}

.timeline-text


{
   font-size: 15px;

  color: #576d68;

  line-height: 1.7;
}

.contact-hint {


   -webkit-border-radius: 10px;
  background: #e8f1ed;
       padding: 25px;
   border-radius:  10px;
   -moz-border-radius  :    10px;
    border-left: 4px solid #2d7a4f;
}

.hint-text {
       font-size: 15px;
    color: #4a5f5a;
	 line-height: 1.7;
     }

.details-sidebar {
    display    :  flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: linear-gradient(135deg, #f5f9f8 0%, #eef4f1 100%);
  padding   :        35px;
 border-radius    :10px;
    border-top: 3px solid #2d7a4f;
}

.info-card-title {
    margin-bottom:     20px;
   color :     #1a472a;
   font-size: 20px;
  font-weight: 600;
	
}

.info-card-item {
   	margin-bottom:        20px;

}

.info-card-item:last-child	{
    margin-bottom  :        0;
}

.info-card-label {
    font-size  :       13px;
   font-weight: 600;
  color: #1a472a;
  margin-bottom: 6px;
}

.info-card-value {
   font-size: 14px;
  color: #576d68;
  line-height: 1.6;
}

.suggestion-card {
    background: #ffffff;
  padding: 30px;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.suggestion-title {
   font-size: 18px;
   font-weight: 600;
  color :   #1a472a;
  margin-bottom   :  15px; 
	
}

.suggestion-text {
	 font-size: 14px;

	   color    :   #576d68;

	  margin-bottom: 20px;

	    line-height :1.6;
}

.suggestion-link {
  display: inline-block;
    padding: 12px 24px;
    background: #1a472a;
    color :        #ffffff;
   text-decoration: none;
         border-radius: 6px;
   font-weight: 600;
    font-size  :        14px;
	transition: all 0.3s ease;
}

.suggestion-link:hover {
   background: #2d7a4f;
  transform: translateY(-2px); 
	
}@media (max-width: 960px) {
  .details-wrapper {
    grid-template-columns: 1fr;
  }

  .thankyou-title {
    font-size: 36px;
  }

  .details-heading {
    font-size: 28px;
  }
}.thankyou-services-preview {
    padding: 100px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #e8f1ed 100%); 
	
}

.preview-grid 
 {
     display: grid;

	  grid-template-columns: repeat(3, 1fr);

	   gap: 30px;

	    margin-top: 60px;
}

.preview-card {
   background    :#ffffff;
  padding: 35px;
   border-radius   :        10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
   display: flex;
	flex-direction     : column;
   gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #d0d8d5;
}

.preview-card:hover {
                    border-left-color: #2d7a4f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(45, 122, 79, 0.12);
}

.preview-card-title {
   font-size: 18px;
    font-weight: 600;
  color    :    #1a472a;
}

.preview-card-text {
    font-size: 14px;
  color: #576d68;
  line-height: 1.6;
}

.preview-card-link {
    border-radius: 6px;
   color: #1a472a;
   transition: all 0.3s ease;
    padding: 10px 18px;
  font-size: 13px;
    font-weight: 600;
     background: #e8f1ed;
  align-self: flex-start;
         text-decoration: none;
}

.preview-card-link:hover {
    background    :      #1a472a;
   color     :  #ffffff;
}@media (max-width: 960px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }
}.thankyou-cta {

	    padding: 80px 0;
  background: linear-gradient(135deg, #1a472a 0%, #0f2818 100%);
	}

.cta-wrapper {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align :      center;
}

.cta-heading   {


    font-size:    40px;
    font-weight: 700;
    color   :      #ffffff;
   margin-bottom   : 20px;

}

.cta-text {
    font-size: 18px;
  color: #c5d9cf;
    margin-bottom: 40px;
  max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
	gap: 20px;
    justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .primary-button {
  background: linear-gradient(135deg, #2d7a4f 0%, #1a472a 100%);
  color: #ffffff;
                    border: none;
} 

.cta-buttons .secondary-button {
   background: #ffffff;
       color: #1a472a;
  border: 2px solid #ffffff;
} 

.cta-buttons .secondary-button:hover {
    background: transparent;
    color: #ffffff;
          border-color: #ffffff;
} @media (max-width: 768px) {
  .cta-heading {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-button {
    width: 100%;
  }
}