* {
   margin: 0;
   padding: 0;
  box-sizing:     border-box;
}

:root {
    --primary-color: #1a3a52;
    --accent-color: #00a86b;
    --light-accent: #e8f5f0;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #ddd;
    --bg-light: #f9f9f9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  color: var(--text-dark);

  line-height: 1.6;

    background: #fff;
}

.nav-primary {


    position: sticky;
               top: 0;
  background: var(--primary-color);
  padding: 1rem 0;
   z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
     }

.nav-container {
    max-width: 1200px;
   margin: 0 auto;
	padding: 0 2rem;
    display: flex;
    justify-content: space-between;
   align-items: center;
	
}

.nav-brand {
	   display: flex; 
	   align-items   :center;
     }

.logo-img {
     height: 40px;
  width     :auto;
  filter: brightness(0) invert(1);
}

.nav-menu {


    display: flex;
  gap: 2.5rem;
    align-items: center;

}

.nav-link {
  color: #fff;
  text-decoration  :    none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {

  color: var(--accent-color);

}

.nav-burger {


   display: none;
  flex-direction: column;
  background: none;
   border: none;
	cursor: pointer;
    padding: 0.5rem;}

.burger-line {
      width:       25px;
   height: 3px;
	 background: #fff;
	margin: 5px 0;
   transition: all 0.3s ease;
  border-radius: 2px; 


}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .nav-burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}.hero-section {
        display: grid;
  grid-template-columns: 1fr 1fr;
    gap :       3rem;
    align-items: center;
    padding: 5rem 2rem;
   max-width: 1200px;
      margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(0, 168, 107, 0.03) 100%);
	
}

.hero-content h1   {
   font-size: 2.8rem;
   line-height: 1.2;
	margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero-subtitle{
        font-size: 1.1rem;
  color: var(--text-light);
	margin-bottom    :       2rem;
  line-height: 1.8;
}

.cta-button {
   display     :        inline-block;
    padding: 1rem 2rem;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.cta-button:hover {
               background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 168, 107, 0.2);
}

.hero-visual img {
     width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);


}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.section-container {
    padding: 0 2rem;
	    max-width: 1200px;
	        margin: 0 auto;
}

.services-overview    {
   padding: 4rem 2rem;
  background: var(--bg-light);
}

.services-overview h2 {
  font-size    :  2.2rem;
 margin-bottom: 3rem;
  text-align: center;
  color: var(--primary-color);
}

.services-grid {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; 



}

.service-card {
   background: white;
    padding     :        2rem;
       border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition    :       all 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover  {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--accent-color);
}

.service-icon-wrapper {
          width: 60px;
  height: 60px;
  background: var(--light-accent);
	border-radius: 8px;
    display: flex;
   align-items: center;
  justify-content: center;
         margin-bottom: 1.5rem;
}

.service-icon-wrapper img {
    width: 32px;
   height:   32px;
  stroke: var(--accent-color);
  filter: invert(0.3) sepia(1) hue-rotate(120deg);
}

.service-card h3 {
  font-size: 1.3rem;
   margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
    line-height: 1.7;
}

.process-section {
    padding :        4rem 2rem;
}

.process-section h2 {
   font-size: 2.2rem;
     margin-bottom: 3rem;
   		text-align: center;
     color: var(--primary-color);
}

.process-steps  
  {
	display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:    2rem;
    margin: 0 auto;
}

.step {
   text-align: center;
   padding: 2rem;
  background: var(--light-accent);
  border-radius: 10px;
   position: relative;
}

.step-number {
   font-size: 2.5rem;
    font-weight   :    bold;
  color: var(--accent-color);
	margin-bottom:    1rem;
	
}  

.step h4{

	  font-size: 1.2rem;
    margin-bottom:   0.8rem;
  color: var(--primary-color);
     }

.step p
{
  color: var(--text-light);
   font-size: 0.95rem;
}

.insights-section     {
   padding   :        4rem 2rem;
  background: var(--bg-light);
}

.insights-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align:       center;
  color: var(--primary-color);


}

.insights-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap:        2rem;
}

.insight-card {
    background: white;
    border-radius: 10px;
     overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.insight-card img {
  width: 100%;
        height: 200px;
    object-fit   :       cover;
}

.insight-card h3 {
   font-size: 1.3rem;
   margin    :      1.5rem 1.5rem 0.8rem;
  color: var(--primary-color);
}

.insight-card p {
  color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
	line-height: 1.6;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); 

}

.team-culture {
    padding: 4rem 2rem;
}

.team-culture h2 {
   font-size: 2.2rem;
  margin-bottom: 3rem;
   text-align: center;
  color: var(--primary-color);
}

.culture-grid {
	 display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 3rem;
	align-items :center;
} 

.culture-item {
    display: flex;
   flex-direction: column;
}

.culture-item img {
   width: 100%;
    border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	
} 

.culture-item h3 {

   font-size: 1.4rem;
    margin-bottom: 0.8rem;
  color: var(--primary-color);
	


}

.culture-item p {
  color: var(--text-light);
	font-size   :  1rem;
    line-height: 1.7;
}@media (max-width: 768px) {
    .culture-grid {
        grid-template-columns: 1fr;
    }
}.cta-section {
  background: linear-gradient(135deg, var(--primary-color), rgba(0, 168, 107, 0.8));
   color:      white;
  padding: 3rem 2rem;
    text-align: center;
}

.cta-container {

    max-width: 800px;
    margin: 0 auto; 

}

.cta-section h2 {

	 font-size     :    2rem;
    margin-bottom: 1rem;

}

.cta-section p {
       font-size: 1.1rem;
	margin-bottom: 2rem;
    opacity: 0.95; 

}

.cta-button-primary {
  display: inline-block;
        padding: 1rem 2.5rem;
   background: white;
  color: var(--primary-color);
   text-decoration: none;
    border-radius: 8px;
   font-weight    :       600;
    transition: all 0.3s ease;
  border   :2px solid white;
}

.cta-button-primary:hover {
  background: transparent;
   color: white;
  transform: scale(1.05);
}

.contact-section {
	padding: 4rem 2rem;
  background: var(--bg-light);
}

.contact-container {
	 max-width: 700px;
  margin  :      0 auto;
}

.contact-section h2 {
   font-size: 2.2rem;
    margin-bottom: 1rem;
  text-align: center;
  color: var(--primary-color);
	
}

.contact-intro {
   text-align: center;
  color: var(--text-light);
    margin-bottom     :  2rem;
  font-size   :     1.05rem;
}

.contact-form    {
      background: white;

	   padding: 2.5rem;

	    border-radius: 10px;

	  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group

{
   margin-bottom: 1.5rem;}

.form-group label {
   display: block;
  margin-bottom: 0.5rem;
   font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea		{
    width: 100%;
          padding: 0.8rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
	 transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: var(--accent-color);
}

.form-submit-btn {
  width: 100%;
   padding: 1rem;
  background: var(--accent-color);
    color: white;
  border: none;
   border-radius: 6px;
  font-weight  :        600;
  font-size: 1rem;
      cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover		{
    background: #008c5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 168, 107, 0.2);
}

.footer-main {
  background: var(--primary-color);

	 color: white;

   padding: 3rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
	display   :  grid;
    grid-template-columns    :1fr 1fr 1fr;
  margin: 0 auto;
  gap: 3rem;
   margin-bottom :   2rem;
}

.footer-logo {
     height: 40px;

	    width: auto;

	  filter: brightness(0) invert(1);

	   margin-bottom: 1rem;


}

.info-block h4 {
    font-size: 1rem;
  margin-bottom: 0.8rem; 

}

.info-block p {
   font-size: 0.9rem;
          opacity: 0.9;
}

.info-block a {
  color: var(--accent-color);
    text-decoration: none;
   transition: opacity 0.3s ease;
}

.info-block a:hover {
         opacity: 0.8;
}

.footer-nav  
  {
   display: flex;

    flex-direction:        column;

         gap: 0.8rem;
}

.footer-nav a {

    color: #fff;
   text-decoration  :      none;
   font-size: 0.9rem;
   transition  :      color 0.3s ease;


}

.footer-nav a:hover{
  color: var(--accent-color);
	
}

.footer-bottom {
     text-align: center;
    padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
 font-size  :    0.85rem;
    opacity: 0.8;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .section-container {
        padding: 0 1.5rem;
    }
}.services-hero {
     background: linear-gradient(135deg, #1a3a52, rgba(0, 168, 107, 0.7));
   color: white;
   padding: 4rem 2rem;
    text-align  :     center;

}

.services-hero-content h1


{
  margin-bottom: 1rem;
    font-size: 2.8rem;
   line-height: 1.2;
}

.services-hero-content p

{
       font-size     :1.2rem;
          max-width: 600px;
  margin: 0 auto;
         opacity: 0.95;
     }

.services-detailed {
    padding: 4rem 2rem;
}

.service-item {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
    margin-bottom: 4rem; 
	
}

.service-item.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-item.reverse .service-item-image {

	  order: -1;

}

.service-item-content h2     {
   font-size: 2rem;
   color: #1a3a52;
  margin-bottom: 1rem;
}

.service-lead {
	font-size: 1.2rem;
    color: #00a86b;
               font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-benefits h4 {
      font-size   :      1.1rem;
	color: #1a3a52;
   margin-bottom: 1rem;
   margin-top: 1.5rem;
	}

.benefits-list {

  list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
   padding: 0.6rem 0 0.6rem 1.8rem;
       position: relative;
	color: #666;
  line-height: 1.6;
}

.benefits-list li:before   {
  content: "";
    position: absolute;
   left    : 0;
  top: 0.9rem;
    width: 6px;
  height: 6px;
    background: #00a86b;
    border-radius: 50%;
}

.service-specs {
                  display: flex;
  gap: 1rem;
   flex-wrap:     wrap;
	 margin-top: 1.5rem;
}

.spec-tag {
   display: inline-block;
     padding: 0.5rem 1rem;
   background: #e8f5f0;
   color: #1a3a52;
			border-radius :   20px;
  font-size: 0.85rem;
   font-weight: 500;


}

.service-item-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
    }

    .service-item.reverse {
        grid-template-columns: 1fr;
    }

    .service-item.reverse .service-item-image {
        order: 1;
    }

    .service-item-content h2 {
        font-size: 1.6rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }
}.pricing-overview {
  padding: 4rem 2rem;
    background: #f9f9f9;
}

.pricing-overview h2 {


    color: #1a3a52;
  margin-bottom :0.5rem;
  font-size: 2.2rem;
 text-align: center;

}

.pricing-intro {
	  text-align: center;
     color :    #666;
    font-size: 1.05rem;
   margin-bottom: 2.5rem;


}

.pricing-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card   {
    background: white;
    padding: 2rem;
	 border-radius :     10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   border: 2px solid transparent;
    transition: all 0.3s ease;
  position  :        relative;
}

.pricing-card:hover     {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color     :        #00a86b;
}

.pricing-card.featured
	{
	 border-color: #00a86b;
  transform: scale(1.05);
}

.featured-badge {
   position: absolute;
       top :      -12px;
     left: 20px;
      background: #00a86b;
                  color: white;
      padding:    0.4rem 1rem;
       border-radius: 20px;
     font-size    :  0.8rem;
   	font-weight: 600;
}

.pricing-card h3		{
   font-size: 1.5rem;
   color: #1a3a52;
        margin-bottom: 0.5rem;
   margin-top: 0.5rem;
}

.pricing-desc   {
   color: #666;

	   font-size: 0.95rem;

	     margin-bottom:    1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom :     1.5rem;
}

.pricing-features li {
    padding: 0.6rem 0 0.6rem 1.5rem;
	 color: #666;
    font-size: 0.95rem;
   position     :  relative;
               line-height: 1.5;
}

.pricing-features li:before   {
  content: "";
  position: absolute;
    left:       0;
    top :   0.8rem;
    width: 5px;
   height: 5px;
  background :     #00a86b;
    border-radius: 50%;
}

.comparison-section {
    padding:  4rem 2rem;
}

.comparison-section h2 {
    font-size: 2.2rem;
   text-align: center;
    color: #1a3a52;
   margin-bottom: 2rem;
}

.comparison-table {
	background: white;
  border-radius    :        10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   border: 1px solid #ddd;
}

.table-header  
  {
	 color: white;
   gap: 1rem;
   font-weight: 600;
         grid-template-columns: 2fr 1fr 1fr 1fr;
	background: #1a3a52;
   padding: 1.5rem;
  display   :    grid;
}

.table-row {
    display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
	 padding: 1.5rem;
   gap: 1rem;
   border-bottom: 1px solid #ddd;
    align-items: center; 

}

.table-row:last-child {
   border-bottom:   none;
}

.table-row:nth-child(even)
	{
   background     :   #f9f9f9;
}

.table-col {
  font-size: 0.95rem;
}

.col-feature {
   font-weight     :        600;
    color: #1a3a52;
}@media (max-width: 768px) {
    .comparison-table {
        overflow-x: auto;
    }

    .table-header,
    .table-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        min-width: 500px;
    }
}.testimonials-section {
  padding: 4rem 2rem;
    background: #f9f9f9;
}

.testimonials-section h2 {
	font-size:   2.2rem;
   text-align :center;
    color: #1a3a52;
    margin-bottom: 2rem;

     }

.testimonials-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;


}

.testimonial-card {
	    background: white;
  padding    :      2rem;
	border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease; 


}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
   color: #666;
   margin-bottom: 1.5rem;
   line-height: 1.8;
    padding-left  :      1.5rem;
   border-left: 3px solid #00a86b;
}

.testimonial-author {
  padding-top :   1rem;
  border-top :     1px solid #ddd;
}

.author-name {
  font-size  :       0.95rem;
   color: #1a3a52;
  font-weight: 600;
}

.author-title

{
   color    :        #00a86b;

      font-size: 0.85rem;

    margin-top: 0.3rem;
}  

.faq-section {
		padding: 4rem 2rem;}

.faq-section h2 {
	 font-size  :    2.2rem;
          text-align: center;
    color  :  #1a3a52;
    margin-bottom: 2rem;
}

.faq-grid {
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   		 gap     :       1.5rem;
}

.faq-item {


  background: white;
  padding: 1.5rem;
   border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #00a86b; 


}

.faq-question {


   font-size  :1.1rem;
    color: #1a3a52;
  margin-bottom: 0.8rem;
    font-weight: 600;


}

.faq-answer {
    color: #666;
      font-size: 0.95rem;
    line-height :1.6;
}

.cta-section-services {
  background: linear-gradient(135deg, #1a3a52, rgba(0, 168, 107, 0.8));
   color: white;
		padding: 3rem 2rem;
         text-align: center;
}

.cta-section-services h2 {
   font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section-services p {
    font-size: 1.1rem;
       margin-bottom: 2rem;
  opacity: 0.95;
}

.thankyou-hero {
               padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(0, 168, 107, 0.03) 100%);
}

.thankyou-container {
   max-width: 700px;
  margin: 0 auto;
    text-align: center;
}

.thankyou-icon {
  margin-bottom: 2rem;
}  

.thankyou-icon img {
  width :  80px;
    height: 80px;
  filter: invert(0.3) sepia(1) hue-rotate(120deg);
                    animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-hero h1 {
  font-size: 2.5rem;
    color: #1a3a52;
   margin-bottom: 1rem;

}

.thankyou-subtitle {
  font-size: 1.1rem;
	color: #666;
    margin-bottom: 2rem;
   line-height :  1.7;
}

.thankyou-details  
  {
   background: white;
   padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   margin-bottom: 2.5rem;
    text-align: left;
   display: inline-block;
}

.detail-item {
   display: flex; 
		justify-content: space-between; 
	    padding: 0.8rem 0; 
		border-bottom: 1px solid #ddd;
}

.detail-item:last-child {
	   border-bottom    :        none;
}

.detail-label {
    font-weight: 600;
   color: #1a3a52;

}

.detail-value {


      color: #00a86b;
   font-weight: 600;}

.thankyou-next-steps {
   margin: 2.5rem 0;
}

.thankyou-next-steps h2 {
   font-size: 1.8rem;
                    color: #1a3a52;
        margin-bottom: 1.5rem;
}

.steps-list {
  display: flex;

          flex-direction: column;

  gap     :        1.2rem; 

}

.step-item


{
    display: flex;
   gap: 1.5rem;
  align-items: flex-start;
   text-align: left;
}

.step-number {
    display: flex;
    align-items :        center;
	justify-content: center;
   width: 50px;
  height     :50px;
      background: #00a86b;
   color: white;
  border-radius   :50%;
   font-weight: bold;
  font-size: 1.3rem;
   flex-shrink: 0;
} 

.step-content h4 {
   color: #1a3a52;
    margin-bottom: 0.3rem;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
}

.thankyou-actions {
  justify-content: center;
	 display: flex;
       flex-wrap: wrap;
	margin: 2rem 0;
  gap: 1rem;
}

.btn-primary {
	   display: inline-block;
  padding  :        1rem 2rem;
    background: #00a86b;
               color: white;
       text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
  transition: all 0.3s ease;}

.btn-primary:hover {
    background: #008c5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 168, 107, 0.2);
}



.btn-secondary {
    -moz-transition   :   all 0.3s ease; 
   display: inline-block; 
   padding: 1rem 2rem; 
  -webkit-transition: all 0.3s ease; 
   background:   transparent; 
  color: #1a3a52; 
	 text-decoration: none; 
  -moz-border-radius: 8px; 
	border: 2px solid #1a3a52; 
  border-radius: 8px; 
  font-weight    :      600; 
    transition: all 0.3s ease;
}

.btn-secondary:hover {
	background :       #1a3a52;
    color: white;
  transform: translateY(-2px); 
	}

.cta-explore {
	padding: 4rem 2rem;
       background: #f9f9f9;
}

.cta-explore h2 {
   font-size: 2rem;
    text-align  :       center;
   color: #1a3a52;
    margin-bottom  :       0.5rem;
}

.cta-explore > .section-container > p {
   text-align: center;
   color: #666;
  margin-bottom: 2rem;
}

.explore-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.explore-card {

	   background: white;
    padding: 1.5rem;
	border-radius  :     10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   text-align : center;
  transition: all 0.3s ease;}

.explore-card:hover {
  transform: translateY(-5px); 
	  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.explore-card h3 {
   color: #1a3a52;
    font-size: 1.2rem;
  margin-bottom   :0.5rem;
}

.explore-card p {
    color: #666;
    font-size: 0.95rem;
  margin-bottom :   1rem;
}

.explore-link {
          color: #00a86b;
   padding-bottom: 0.3rem;
	font-weight: 600;
  text-decoration: none;
    display: inline-block;
   transition: all 0.3s ease;
          border-bottom: 2px solid transparent;
}  

.explore-link:hover  {
  border-bottom-color: #00a86b;
}

.faq-thankyou  
  {
  padding    :      4rem 2rem;
}

.faq-thankyou h2     {
  font-size: 2.2rem;
    text-align: center;
      color: #1a3a52;
     margin-bottom: 2rem;
}

.faq-grid-simple
{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.faq-item-simple {


    background: #f9f9f9;
	padding: 1.5rem;
     border-radius: 10px;
   border-left: 4px solid #00a86b;
     }


.faq-item-simple h4 {
   color: #1a3a52;
  font-size: 1rem;
      margin-bottom: 0.8rem;
}

.faq-item-simple p {
    color: #666;
	 font-size     :    0.95rem;
    line-height: 1.6;
}@media (max-width: 768px) {
    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}.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;
    }
}
