* {
   margin    :  0;
    padding :    0;
   box-sizing: border-box;
}

:root {
    --primary-dark: #1a1f2e;
    --primary-accent: #0d7377;
    --secondary-light: #f0f3f7;
    --text-main: #2c3e50;
    --border-subtle: #e0e6ed;
    --success-highlight: #27ae60;
}

html {
       scroll-behavior: smooth; 
	
}  

body  
  {


  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
  color: var(--text-main);
  background-color: #ffffff;
	}  

.main_navigation  {
       position     :        sticky;
  top: 0;
	z-index: 1000;
  background-color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav_container {
  max-width: 1200px;
   margin: 0 auto;
	padding: 1rem 2rem;
  display: flex;
    justify-content     :     space-between;
    align-items: center;
}

.logo_section {
   flex-shrink: 0;
}

.logo_img {
               height: 45px;
    width: auto;
	 object-fit    :     contain;
}

.burger_menu {
   display: none;
	    flex-direction: column;
	   background: none;
	  border: none;
	   cursor: pointer;
	   gap: 6px;
	   padding: 0.5rem;
}

.burger_line


{
          width: 28px;
  height: 3px;
   background-color :  #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav_menu {
	display: flex;
  list-style: none;
    gap: 2.5rem;
    align-items   :      center;
}

.nav_menu a {
  color: #ffffff;

	    padding: 0.5rem 1rem;

	    border-radius: 4px;

	  font-size: 0.95rem;

		transition: color 0.3s ease;

	  text-decoration: none;

	  font-weight: 500;
}

.nav_menu a:hover {
  color: var(--primary-accent);
  background-color: rgba(13, 115, 119, 0.1);
}

.contact_link {
  background-color: var(--primary-accent) !important;
   color: #ffffff !important;
  padding: 0.6rem 1.5rem !important;
   border-radius: 6px;
}

.contact_link:hover {
         background-color:    #05505a !important;
}@media (max-width: 768px) {
    .burger_menu {
        display: flex;
    }

    .nav_menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--primary-dark);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        align-items: stretch;
    }

    .nav_menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav_menu li {
        width: 100%;
    }

    .nav_menu a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        margin: 0;
    }

    .contact_link {
        margin: 1rem 2rem !important;
        padding: 0.6rem 1.5rem !important;
        border-radius: 6px;
        width: calc(100% - 4rem);
    }
}.hero_section {
	  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a4d50 100%);
 color: #ffffff;
    padding: 6rem 2rem;
  text-align: center;
    min-height: 60vh;
   display: flex;
               align-items: center;
    justify-content: center;
}

.hero_content h1 {
    font-size: 3.2rem;
   font-weight :       700;
   margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero_content p {
    font-size: 1.2rem;
  margin-bottom: 2.5rem;
   opacity: 0.95;
   max-width: 600px;
         margin-left: auto;
   margin-right: auto;
}



.cta_button{


   display: inline-block;
  background-color: var(--primary-accent);
     color: #ffffff;
  padding: 0.8rem 2.5rem;
   text-decoration: none;
   border-radius :       8px;
    font-weight: 600;
  font-size: 1rem;
   transition: all 0.3s ease;
  border: 2px solid var(--primary-accent);

}

.cta_button:hover {
	background-color: transparent;
  color: var(--primary-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 115, 119, 0.3);
}@media (max-width: 768px) {
    .hero_section {
        padding: 4rem 1.5rem;
        min-height: 50vh;
    }

    .hero_content h1 {
        font-size: 2rem;
    }

    .hero_content p {
        font-size: 1rem;
    }

    .services_grid {
        grid-template-columns: 1fr;
    }
}.services_overview {
		padding: 5rem 2rem;
               max-width:   1200px;
  margin: 0 auto;


}



.services_overview h2 {
 font-size: 2.5rem;

	    font-weight: 700;

	  text-align: center;

	    margin-bottom: 3.5rem;

	  color: var(--primary-dark);
}

.services_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service_card {
  background: var(--secondary-light);
    border-radius: 12px;
    overflow: hidden;
   transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service_card:hover		{
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(13, 115, 119, 0.15);
     background-color: #ffffff;
}

.service_image {
   width: 100%;
  height: 240px;
    object-fit: cover;
    display: block;
}

.service_card h3 {
       font-size: 1.4rem;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-main);
  font-weight: 600;

}

.service_card p {
  line-height :     1.7;
   font-size   : 0.95rem;
    color:      #555555;
  padding: 0 1.5rem 1.5rem;
}

.offerings_detail {
  background-color: var(--secondary-light);
    padding: 5rem 2rem;
}

.offerings_detail h2		{

	  text-align:  center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-dark);
	
}

.offerings_content {
    max-width     :    1200px;
    margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap    :      2rem;
}

.offering_item {
    background-color  :      #ffffff;
  padding: 2rem;
   border-radius:        10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-accent);
	transition: all 0.3s ease;
}

.offering_item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.offering_item h3   {
    font-size: 1.25rem;
  color: var(--primary-dark);
   margin-bottom: 1rem;
   font-weight: 600;
}

.offering_item p 
 {
  color: #666666;
   line-height: 1.8;
  font-size     :0.95rem;
}

.methodology_section {
   padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.methodology_section h2 {

         font-size: 2.5rem;
     text-align  :    center;
    margin-bottom: 3rem;
  color: var(--primary-dark);
	}

.methodology_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	 gap: 3rem;
}

.methodology_block {
    display: flex;
   flex-direction: column;
  gap: 1.5rem;
}

.methodology_image {
   width: 100%;
  height: 280px;
	 object-fit: cover;
  border-radius: 10px;
}

.methodology_block h3 {
    font-size: 1.5rem; 
	  color: var(--primary-dark); 
	  font-weight: 600;
}

.methodology_block p {
   color:   #555555;
    line-height: 1.8;
   font-size: 0.95rem;
}

.cta_section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a4d50 100%);
      color: #ffffff;
   padding: 4rem 2rem;
  text-align: center;
}

.cta_section h2 {
    font-size: 2.2rem;

  margin-bottom: 1rem;
}

.cta_section p {
	font-size: 1.1rem;
   margin-bottom  :    2rem;
   opacity: 0.95;
}

.cta_button_large {
  display: inline-block;
     background-color: var(--primary-accent);
      color: #ffffff;
       padding  :      1rem 3rem;
      text-decoration: none;
     border-radius: 8px;
       font-weight: 600;
       font-size: 1.1rem;
     transition  :       all 0.3s ease;
     border: 2px solid var(--primary-accent);
}

.cta_button_large:hover


{
    background-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(13, 115, 119, 0.4); 

}

.contact_section {
       padding: 5rem 2rem;
  background-color: var(--secondary-light);
   max-width: 1200px;
    margin  :    0 auto;

}

.contact_section h2 {
  font-size  :        2.2rem;
  text-align: center;
   margin-bottom: 3rem;
  color: var(--primary-dark);
}

.contact_wrapper {
          display: grid;
  grid-template-columns  :     1fr 1fr;
  gap: 3rem;
    background-color: #ffffff;
      padding: 2.5rem;
   border-radius     :     12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);}  

.contact_form {
    display: flex;
   flex-direction: column;
        gap: 1.5rem;
}

.form_group {
  display: flex;
   flex-direction: column;
}

.form_group label {
  font-weight: 600;
    margin-bottom: 0.5rem;
  color: var(--text-main);
	font-size: 0.95rem;
	
}

.form_group input,
.form_group select,
.form_group textarea {
   padding: 0.85rem;
  border: 1px solid var(--border-subtle);
    border-radius: 6px;
	font-size: 0.95rem;
  font-family:   inherit;
               transition: all 0.3s ease;
  background-color   :  #fafbfc;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
   outline: none;
  border-color: var(--primary-accent);
    background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

.submit_button

{
  background-color: var(--primary-accent);
	    color: #ffffff;
	    padding: 1rem;
		border: none;
	  border-radius: 6px;
		font-weight: 600;
	  font-size  :       1rem;
	     cursor: pointer;
	  transition: all 0.3s ease;
	    margin-top: 1rem;
	}

.submit_button:hover {
    background-color:      #05505a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 115, 119, 0.3);
}

.contact_info {
   display: flex;
    flex-direction: column;
   justify-content  :      center;
   gap: 1.5rem;

}

.contact_info h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
	font-weight: 600;
	margin-bottom: 1rem;
}

.contact_info p {
   color :    #555555;
   line-height: 1.8;
}@media (max-width: 768px) {
    .contact_wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .services_overview h2,
    .offerings_detail h2,
    .methodology_section h2,
    .cta_section h2,
    .contact_section h2 {
        font-size: 1.8rem;
    }

    .methodology_grid {
        grid-template-columns: 1fr;
    }
}.main_footer {
  background-color: var(--primary-dark);
     color: #ffffff;
     padding: 3.5rem 2rem 2rem;
}

.footer_content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
        margin-bottom: 2rem;
}

.footer_logo_block {
   display:      flex;
  align-items: center;
  justify-content: center;
}



.footer_logo {
   height: 50px;
  width: auto;
  object-fit    : contain;
}

.footer_links h4,
.footer_company h4 {
   font-size: 1.1rem;
   margin-bottom: 1.2rem;
	 font-weight   :        600;
}

.footer_links ul {
  list-style: none;
 display: flex;
   flex-direction:   column;
    gap: 0.8rem; 

}

.footer_links a {
    color: #b0bcc4;
  text-decoration     :  none;
   transition: color 0.3s ease;
   font-size: 0.9rem;
}

.footer_links a:hover   {
  color: var(--primary-accent);
}

.footer_company p		{
                       color     :  #b0bcc4;
   font-size: 0.9rem;
  line-height: 1.7;
	}

.footer_bottom {
    max-width: 1200px; 
    margin: 0 auto; 
  text-align: center; 
    padding-top: 2rem; 
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
  color: #b0bcc4; 
  font-size: 0.85rem;
}@media (max-width: 768px) {
    .main_footer {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer_logo_block {
        order: -1;
    }
}.policySection {
   padding:     80px 2rem;
  background: var(--secondary-light);

}

.policyContainer {
  max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
   margin-bottom: 1.5rem;
  font-weight: 700;
}

.policyContainer h3 {
    font-size: 1.6rem;
  color: var(--primary-dark);
  margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.policyContainer p {

	   color  :      #555555;

 margin-bottom: 1.5rem;

   line-height: 1.7;

    font-size    :        1rem;}

.policyContainer ul
	{

  margin    :    1rem 0 1.5rem 1.5rem;
   padding-left   :        0;


}

.policyContainer li {
  margin-bottom:      0.5rem;
   line-height: 1.6;
	 color: #555555;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.4rem;
    }

    .policyContainer p,
    .policyContainer li {
        font-size: 0.95rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}
/* Framework override */
.services_hero
	{
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a4d50 100%);
   color: #ffffff;
   padding   :   5rem 2rem;
    text-align: center;
          min-height: 50vh;
    display: flex;
	align-items: center;
   justify-content:    center;
}

.services_hero_content h1 {
   font-size: 2.8rem;
    font-weight: 700;
  margin-bottom     :1.2rem;
    line-height: 1.2;
}

/* Legacy code */


/* Typography */

.services_hero_content p {
  font-size: 1.1rem;
	opacity:   0.95;
  max-width: 650px;
        margin: 0 auto;
}

.services_detailed {
   padding: 5rem 2rem;
  max-width: 1200px;
    margin: 0 auto;
}

.services_detailed > h2 {
        font-size: 2.5rem;
   text-align  :     center;
    margin-bottom :      4rem;
  color: var(--primary-dark);
}

.service_detail_item {
	  margin-bottom: 4rem;
  background-color: var(--secondary-light);
   border-radius: 12px;
	padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 


}  

.service_detail_item.alternate
	{
  background-color: #ffffff;
  border-left: 5px solid var(--primary-accent);
}

.service_detail_wrapper {


  display: grid;
   grid-template-columns   :  1fr 1.2fr;
  gap   :    3rem;
	align-items: start;
}

.service_detail_image
{

    width   : 100%;
               height: auto;
     }

.detail_img{
	   width: 100%;
    height: 350px;
  object-fit: cover;
   border-radius: 10px;
	 display  : block;
     }

.service_detail_content h3	{
   font-size    :   1.8rem;
  color: var(--primary-dark);
    margin-bottom: 1rem;
  font-weight: 700; 
	
}

.service_detail_content > p {
    color   :       #555555;
  line-height: 1.8;
	margin-bottom: 1.5rem;
   font-size: 0.95rem;
}

.service_features		{
   list-style: none;
   margin    :1.5rem 0;
  display: flex;
	 flex-direction: column;
        gap: 0.8rem;
} 

.service_features li {
  color: #666666;
   padding-left: 2rem;
    position    :      relative;
  font-size:0.9rem;
    line-height: 1.6;
}

.service_features li:before {
  content: "";
   position  :        absolute;
   left: 0;
         top   :   0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--primary-accent);
      border-radius: 50%;
	
}

.service_price {
    margin-top: 1.5rem;

   font-weight   :      600;

  color: var(--primary-accent);

    font-size: 1.05rem;
}
@media (max-width: 768px) {
    .services_hero_content h1 {
        font-size: 2rem;
    }

    .services_hero {
        padding: 3rem 1.5rem;
        min-height: 40vh;
    }

    .service_detail_wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service_detail_item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .detail_img {
        height: 250px;
    }
}.pricing_comparison {
       padding: 5rem 2rem;
  background-color: var(--secondary-light);
}

.pricing_comparison h2


{
	text-align: center;
    font-size: 2.2rem;
   margin-bottom: 3rem;
  color: var(--primary-dark);
}

.pricing_table_wrapper {
         max-width: 1100px;
    margin: 0 auto;
   overflow-x: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 border-radius: 8px;
}


.pricing_table {
    width: 100%;
	    border-collapse    :    collapse;
	   background-color    :    #ffffff; 
	
}

.pricing_table thead {
  background-color: var(--primary-dark);
	color: #ffffff;
}

.pricing_table th


{

	    padding: 1.2rem;
   	text-align: left;
       font-weight: 600;
      font-size :     0.95rem;


}

.pricing_table td  
  {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
   font-size: 0.9rem;
  color: #555555; 
	
}

.pricing_table tbody tr:hover {
  background-color: rgba(13, 115, 119, 0.05); 
	
}

.pricing_table tbody tr:last-child td {

  border-bottom: none;


}

.testimonials_section {
  padding:  5rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.testimonials_section h2 {

	   text-align: center;
	font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

.testimonials_grid     {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
     }

.testimonial_card {
  background-color: var(--secondary-light);
   padding: 2rem;
     border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
  border-top: 3px solid var(--primary-accent);
}

.testimonial_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
}

.testimonial_text {


  color: #555555;
   line-height: 1.8;
     margin-bottom: 1.5rem;
   font-style   :      italic;
         font-size   :     0.95rem;

}

.testimonial_author {
   font-weight: 600;
  color: var(--primary-dark);
    font-size: 0.9rem;
}

.faq_section {
		padding    :  5rem 2rem;
  background-color: var(--secondary-light);
	
}

.faq_section h2 {
   text-align: center;
   font-size: 2.2rem;
  margin-bottom    :       3rem;
  color: var(--primary-dark);
}

.faq_container {

	   max-width: 900px; 
	                    margin: 0 auto;

}  

.faq_item {
		 margin-bottom: 1.5rem;
  background-color:     #ffffff;
 border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow  : hidden;



}

.faq_question {
     width: 100%;
    padding: 1.5rem;
  background-color: #ffffff;
  border: none;
  text-align: left;
    font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
   transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
   align-items: center;}

.faq_question:hover {
  background-color: rgba(13, 115, 119, 0.08);
  color: var(--primary-accent);

}

.faq_question:after {
   -o-transition: transform 0.3s ease;
  content: "+";
    font-size: 1.5rem;
    font-weight: bold;
  transition: transform 0.3s ease;
  -moz-transition     :       transform 0.3s ease;
}

.faq_item.active .faq_question:after {
     transform: rotate(45deg);

}

.faq_answer {
  max-height: 0;
  overflow   : hidden;
    transition:      max-height 0.3s ease;
   padding: 0 1.5rem;
}

.faq_item.active .faq_answer {
   max-height: 300px;
  padding: 1.5rem;
}

.faq_answer p 
 {
       color: #666666;
    line-height: 1.8;
                    font-size: 0.9rem;
     }

.services_cta
	{
	  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a4d50 100%);
	 color: #ffffff;
          padding: 4rem 2rem;
    text-align: center;

}

.services_cta h2	{
   font-size: 2rem;
	margin-bottom: 1rem;
}

.services_cta p {
    font-size: 1rem;

   margin-bottom: 2rem;

        opacity: 0.95;
}

.services_cta_button {
  display: inline-block;
  background-color: var(--primary-accent);
   color: #ffffff;
    padding: 1rem 3rem;
  text-decoration :  none;
    border-radius: 8px;
  font-weight: 600;
    font-size    :  1rem;
   transition: all 0.3s ease;
  border: 2px solid var(--primary-accent);
}

.services_cta_button:hover {
  background-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(13, 115, 119, 0.4);
}

.thankyou_section {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--secondary-light) 0%, #ffffff 100%);
    min-height: 70vh;
	display: flex;
   align-items: center;
    justify-content: center;
}

.thankyou_container {

   max-width :    700px;
    text-align: center;
  background-color: #ffffff;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);}

.success_icon {
  margin-bottom: 1.5rem;
}

.success_checkmark {
   width: 80px;
   height: 80px;
  stroke: var(--primary-accent);
  filter: drop-shadow(0 4px 12px rgba(13, 115, 119, 0.3));
}

.thankyou_container h1 {
	font-size:       2.2rem;
  color: var(--primary-dark);
          margin-bottom: 0.5rem;
} 

.thankyou_subtitle {
   color: #666666;
    font-size: 1.1rem;
    margin-bottom    :2rem;
}

.thankyou_details{
    text-align: left;
   margin: 2.5rem 0;
}

.thankyou_details h2 {
    font-size     :   1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem; 

}

.thankyou_details p {
      color  :  #555555;
    line-height: 1.8;
          margin-bottom  :        1.5rem;}

.confirmation_box {
  background-color: var(--secondary-light);
	padding: 1.5rem;
  border-radius: 8px;
    margin: 1.5rem 0;
  border-left: 4px solid var(--primary-accent);
}

.confirmation_box h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.confirmation_item {
   display    :flex;
   justify-content: space-between;
   padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
   font-size  :        0.9rem;
}

.confirmation_item:last-child {
    border-bottom: none;

}

.confirmation_label {
               font-weight: 600;
  color: var(--text-main);
}

.confirmation_value {

    color: #666666;
}

.next_steps     {
  background-color: rgba(13, 115, 119, 0.08);
  padding: 1.5rem;
          border-radius: 8px;
    margin: 1.5rem 0;
}

.next_steps h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
   margin-bottom: 1rem;
}

.steps_list {
  margin-left: 1.5rem;
   color: #666666;
   line-height   :   2; 

}

.steps_list li {
      margin-bottom :      0.5rem;
  font-size    :     0.9rem;
}

.faq_hint 
 {
  background-color: var(--secondary-light);
                    padding: 1rem;
  border-radius: 8px;
        margin-top:      1.5rem;
}

.faq_hint h3
{

		font-size: 1rem;
  color: var(--primary-dark);
        margin-bottom: 0.5rem;
	}

.faq_hint p {
  font-size    : 0.9rem;
   color: #555555;
}

.faq_hint a {
  color: var(--primary-accent);
    text-decoration: none;
  font-weight: 600;
}

.faq_hint a:hover  
  {
    text-decoration: underline;
	
}

.thankyou_actions {
   display: flex;
  gap: 1.5rem;
   justify-content: center;
  margin-top: 2.5rem;
  flex-wrap   :  wrap;
}



.thankyou_button
	{
  display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
   border-radius: 6px;
    font-weight: 600;
   font-size: 0.95rem;
    transition :    all 0.3s ease;
}

.thankyou_button.primary {
  background-color: var(--primary-accent);
	color: #ffffff;
}

.thankyou_button.primary:hover     {
        background-color: #05505a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 115, 119, 0.3);
}

.thankyou_button.secondary {
  background-color:     transparent;
  color: var(--primary-accent);
  border: 2px solid var(--primary-accent);
}

.thankyou_button.secondary:hover  {
  background-color: var(--primary-accent);
    color: #ffffff;
}

.trust_section {
  padding: 3rem 2rem;
  background-color: var(--secondary-light);
    text-align: center;
}

.trust_section h2 {
    font-size: 1.5rem;
  color: var(--primary-dark);
   margin-bottom: 1rem;
}

.trust_section p {
    font-size: 0.95rem;
   margin  :0 auto;
    max-width  :   600px;
   color: #666666;
}@media (max-width: 768px) {
    .services_detailed {
        padding: 3rem 1.5rem;
    }

    .service_detail_item {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .pricing_table th,
    .pricing_table td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .thankyou_container {
        padding: 2rem 1.5rem;
    }

    .thankyou_actions {
        flex-direction: column;
        gap: 1rem;
    }

    .thankyou_button {
        width: 100%;
        text-align: center;
    }

    .faq_item {
        margin-bottom: 1rem;
    }

    .faq_question {
        padding: 1rem;
    }
}