*
	{
    margin: 0;
  padding: 0;
   box-sizing: border-box;


}

:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e9ecef;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
    line-height    :  1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
   margin-bottom: 0.75rem;

    line-height: 1.3;

  font-weight: 700; 
	
}

h1	{
    font-size: 3rem;
  color: var(--text-dark);
}

h2 {
    font-size: 2.2rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

p {

	   margin-bottom :       1rem;
  color: var(--text-light);}

a {


  text-decoration: none;
  color: var(--primary-color);
   transition: color 0.3s ease;

}

a:hover {
  color: var(--secondary-color);
}

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
	position: sticky;
  top     :        0;
	z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
   max-width   :       1200px;
    margin: 0 auto;
  padding    :       1rem 2rem;
          display: flex;
   justify-content:      space-between;
   align-items: center;
     }

.logo-section {
  display: flex; 
 align-items: center;
}

.site-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.main-navigation {


  display: flex;
				 align-items: center;

}

.nav-toggle {
   cursor: pointer;
   border: none;
   padding: 0.5rem;
   flex-direction: column;
  background: none;
	display    :   none;
}

.toggle-line {
     width: 24px;

  height    :     3px;

  background-color: var(--text-dark);

  margin: 4px 0;

    transition: 0.3s;
}

.nav-links {
     list-style: none;
	display :     flex;
     gap  :    2rem;

}

.nav-links a {
  font-weight    :     500;
  color: var(--text-dark);
    transition  :     color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.page-main {
  min-height: calc(100vh - 200px);
}

.hero-section
{
    max-width: 1200px;
  grid-template-columns: 1fr 1fr;
  margin:    0 auto;
  padding: 4rem 2rem;
  align-items: center;
  display:      grid;
   gap: 3rem;
	
}

.hero-content h1 {
                       margin-bottom: 1.5rem;
               line-height: 1.2;
	}

.hero-subtitle
{
    font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-buttons {
    display  :    flex;
   gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {


          display: inline-block;
    padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
    border-radius: 6px;
  font-weight: 600;
  transition:all 0.3s ease;
   border: none;
   cursor: pointer;
   text-align: center;
     }


.btn-primary:hover {
	  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  color: var(--white);
}  

.btn-secondary {
	          display: inline-block;
    padding: 0.875rem 2rem;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
    border-radius: 6px;
     font-weight     :       600;
   transition: all 0.3s ease;
	}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.hero-image img {
        width: 100%;
   height: auto;
		border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.features-section {
  background-color: var(--bg-light);
   padding: 4rem 2rem;
   margin-top: 3rem;
}

.section-header {
  max-width: 1200px;
	 margin   :    0 auto 3rem;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.features-grid {
    max-width: 1200px;
	 margin: 0 auto;
  display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
       gap: 2rem;
}

.feature-card {
  background-color: var(--white);
    padding    :    2rem;
   border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
     transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);

}

.feature-icon {
           align-items: center;
  justify-content: center;
  width: 60px;
   height: 60px;
   margin-bottom: 1.5rem;
  display: flex;


}

.feature-icon img {
    width: 100%;
   height: 100%;
    object-fit : contain;
  filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.2)); 
	
}

.feature-card h3 {
   margin-bottom: 1rem;
  color: var(--text-dark);
}

.solutions-section {
  max-width: 1200px;
   margin: 4rem auto;
  padding: 0 2rem;
} 

.solutions-section h2 {
  margin-bottom     :     3rem;
  text-align: center;
}

.solutions-container   {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.solution-item {
  background: var(--white);
   border-radius: 10px;
                    overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.solution-item:hover {
  transform: scale(1.03); 
	  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.solution-item img {
    width: 100%;

      height   :     220px;

   object-fit: cover;
}

.solution-item h3 
 {
 padding: 1.5rem 1.5rem 0.5rem;

	  color: var(--text-dark);
}

.solution-item p {
	 padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
   font-size: 0.95rem;
}

.strategy-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
          padding: 4rem 2rem;
  margin-top: 3rem; 
	
}

.strategy-wrapper {
   max-width: 1200px;
     margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.strategy-text h2  
  {

	   margin-bottom: 1.5rem;
     }

.strategy-list {
       list-style: none;
   margin-top: 1.5rem;
     }

.strategy-list li {
                    padding: 0.75rem 0 0.75rem 1.5rem;
   position: relative;
  color: var(--text-light);
}

.strategy-list li:before
{

  content: "✓"; 
		 position: absolute; 
	  left: 0; 
	  color: var(--primary-color); 
	   font-weight :  bold; 
	  font-size: 1.2rem;
     }

.strategy-image img {
		width: 100%;
      height: auto;
     border-radius: 10px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}

.cta-section  
  {
        max-width:    900px;
   margin   : 4rem auto;
  padding: 3rem 2rem;
    text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
    border-radius: 15px;
}

.cta-section h2 {
  color: var(--white);
   margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);

	    font-size: 1.1rem;

	               margin-bottom: 2rem;
}

.btn-large {
         padding: 1.25rem 3rem;
       font-size: 1.1rem;
     background-color: var(--white);
     color: var(--primary-color);
}

.btn-large:hover {


  background-color: rgba(255, 255, 255, 0.95);

}

.testimonials-section{
        max-width: 1200px;
  margin: 4rem auto;
   padding: 0 2rem;
}

.testimonials-section h2


{
   text-align     :    center;
	   margin-bottom: 3rem;
}


.testimonials-grid {
	   display     :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
     }

.testimonial-card{
  background-color: var(--bg-light);
    padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15); 

}

.testimonial-text {
    font-style: italic;
  color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-author


{
    font-weight :      600; 
	  color: var(--primary-color); 
	    font-size: 0.95rem;
}

.faq-section {
  background-color: var(--bg-light);
    padding: 4rem 2rem;
	 margin-top: 4rem;
}

.faq-section h2 {
    text-align: center;
    margin: 0 auto 3rem;
   max-width: 1200px;
}

.faq-container {
   max-width: 800px;
  margin: 0 auto;
   display: grid;
               gap: 1.5rem;


}

.faq-item {
  background-color: var(--white);
    padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease; 
	
}

.faq-item:hover {

  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);

}

.faq-item h3   {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
	font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-light);
  margin: 0;
   font-size: 0.95rem;
}

.contact-section {
   max-width: 900px;
   margin: 4rem auto;
  padding  :       0 2rem;
                    scroll-margin-top: 80px;


}

.contact-section h2 {
    text-align: center;
    margin-bottom  :      0.5rem;
}

.contact-section > p {
   text-align: center;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.contact-form {
  background-color: var(--bg-light);
   padding: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.form-group     {
       margin-bottom: 1.5rem;
	}

.form-group label {
   display: block;
    margin-bottom: 0.5rem;
    font-weight:  600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
   transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);

}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit {
  width: 100%;
   padding: 1rem;
  font-size : 1rem;
   font-weight: 600;
    margin-top: 1rem;
}

.site-footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem 1.5rem;
   margin-top: 4rem;
}

.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-brand {
    align-items: flex-start;
  display    : flex;
}

.footer-logo {
  height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: var(--white);

    margin-bottom: 1rem;

    font-size: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
	 font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
			margin-bottom   :0.75rem;
}  

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
 transition: color 0.3s ease;
}

.footer-links a:hover {
     color: var(--white);
     }

.footer-bottom {
    max-width: 1200px;
	margin: 0 auto;
   padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
		 font-size: 0.9rem;
}@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-container {
    padding: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 400px;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solutions-container {
    grid-template-columns: 1fr;
  }

  .strategy-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0.75rem;
  }

  .site-logo {
    height: 40px;
  }

  .hero-section {
    padding: 1.5rem 1rem;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .features-section {
    padding: 2rem 1rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .footer-section h4 {
    font-size: 0.95rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }
}.policySection {


                    padding: 80px 2rem;
               background: #f8f9fa;

}

.policyContainer {
  max-width: 800px;
  margin: 0 auto;
    text-align:   left;
}

.policyContainer h1 {
   font-size: 3rem;
  color: var(--text-dark);
    margin-bottom: 1rem;
  line-height: 1.2;
}

.policyContainer h2 {
    font-size: 2.5rem;
  color: var(--text-dark);
  margin: 2.5rem 0 1.5rem;
   font-weight: 700;
}

.policyContainer h3 {
    font-size: 1.5rem;
	  color: var(--text-dark);
	   margin: 2rem 0 1rem;
}



.policyContainer p  
  {
     color: var(--text-light);
   margin-bottom   :     1.5rem;
  line-height: 1.7;
    font-size: 1.1rem;
     }

.policyContainer ul {
   margin    :        1rem 0 1.5rem 1.5rem;
  color: var(--text-light);

}

.policyContainer ul li {
    margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.policyContainer em  {
  color: var(--primary-color);
	    font-style: italic;
}@media (max-width: 768px) {
  .policyContainer h1 {
    font-size: 2rem;
  }

  .policyContainer h2 {
    font-size: 2rem;
  }

  .policyContainer h3 {
    font-size: 1.2rem;
  }

  .policyContainer p,
  .policyContainer ul li {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}

@media (max-width: 480px) {
  .policySection {
    padding: 40px 0.75rem;
  }

  .policyContainer h1 {
    font-size: 1.6rem;
  }

  .policyContainer h2 {
    font-size: 1.6rem;
  }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
               padding: 4rem 2rem;
   text-align: center;
}

.services-hero-content h1
	{
	color: #ffffff;
    margin-bottom: 1rem;
	font-size  :  2.8rem;
}

.services-hero-content p {
  color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
   max-width: 600px;
   margin: 0 auto; 
	
}

.services-overview
	{
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.services-overview h2 {
    text-align :       center;
  margin-bottom   :    0.5rem;
}

.services-intro {
  text-align: center;
     color: #6c757d;
   margin-bottom: 3rem;
  font-size: 1.1rem;

}

.services-grid {


	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
    margin-bottom: 3rem;
	}

.service-package  
  {
               background: #ffffff;
    border: 2px solid #e9ecef;
   border-radius: 10px;
   padding: 2rem;
   transition: all 0.4s ease;
   display: flex;
   flex-direction: column;
  position: relative;
    overflow: hidden;
}

.service-package:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.service-featured {
     border-color: #667eea;
   border-width: 3px;
  transform: scale(1.02);

}

.service-featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.featured-badge	{
    position: absolute;
      top: -8px;
    left :        20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0.35rem 1.2rem;
    border-radius: 0 0 8px 8px;
  font-size    :    0.85rem;
    font-weight: 700;
}

.package-header 
 {
   margin-bottom: 1.5rem; 
	  padding-top: 0.5rem; 
	
}

.package-header h3 {

	   margin-bottom :        0.5rem;

   color: #2c3e50;

    font-size: 1.5rem; 
	
     }

.package-price {
  font-size: 1.8rem;
   color: #667eea;
    font-weight: 700;
  margin: 0;
}

.package-description {
	   margin-bottom: 1.5rem;
    padding-bottom:        1.5rem;
  border-bottom: 1px solid #e9ecef;}

.package-description p {

	    margin: 0;
   color: #6c757d;
   font-size: 0.95rem;


}

.package-features    {
   list-style: none;
   margin-bottom    :      1.5rem;
  flex-grow: 1;
}

.package-features li {
  padding   :0.6rem 0;
  padding-left: 1.5rem;
	position: relative;
 color: #2c3e50;
   font-size: 0.95rem; 

}

.package-features li:before


{
   left: 0;
   font-size: 1.1rem;
  content: "✓";
  color   :  #667eea;
   position: absolute;
 font-weight: bold;
}  

.btn-service {
	    display: inline-block;
    padding: 0.85rem 1.8rem;
  background-color: #f8f9fa;
  color: #667eea;
    border: 2px solid #667eea;
   border-radius: 6px;
         font-weight     :        600;
   text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-service:hover {
       background-color: #667eea;
  color: #ffffff;


}

.btn-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
   border: 2px solid transparent;

}

.btn-featured:hover {
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}

.additional-services

{
  background-color: #f8f9fa;
   padding: 4rem 2rem;
  margin-top: 3rem;
}

.additional-container {

   max-width: 1200px;
   margin: 0 auto;


}

.additional-container h2 {

	  text-align: center;
  margin-bottom: 3rem;
}

.additional-grid    {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-item {
    background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
	border: 1px solid #e9ecef;
   transition : all 0.3s ease;
   text-align: center;
}

.additional-item:hover {
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px);
} 

.additional-icon {

	    width  :  70px;
		 height     :  70px;
    margin: 0 auto 1.5rem;
    display: flex;
   align-items: center;
    justify-content: center;
	
     }

.additional-icon img {
   width: 100%;
   height: 100%;
     object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.2));
}

.additional-item h3 {
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.additional-item p {
   color: #6c757d;
  font-size: 0.95rem;
   margin-bottom: 0.75rem;
}

.service-price {
		color: #667eea;
   font-weight: 700;
  margin     :0;
   font-size :   1.1rem;
}

.service-process {
	 max-width: 1200px;
   padding  :       0 2rem;
    margin     :  4rem auto;
}

.process-container h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 2rem;
}

.process-step 
 {
	text-align: center;
	transition: all 0.3s ease;
   background:        #f8f9fa;
	 border-radius :   10px;
 position: relative;
  padding: 2rem;
}

.process-step:hover  {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  transform: translateY(-5px);
} 

.step-number {
  width: 60px; 
	  height: 60px; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   color: #ffffff; 
		 border-radius: 50%; 
	  display: flex; 
	    align-items     :        center; 
	    justify-content: center; 
	  font-size  :    1.8rem; 
	   font-weight: 700; 
	  margin    :  0 auto 1.5rem;
}

.process-step h3 {

	   color     :      #2c3e50;
   margin-bottom: 0.75rem;
	}

.process-step p {
   color: #6c757d;
  font-size: 0.95rem;
   margin: 0;
}

.packages-comparison     {
   background-color   :    #f8f9fa;
   padding   :        4rem 2rem;
  margin-top   :    3rem;
}

.comparison-container {
     max-width: 1000px;
   margin:       0 auto;

}

.comparison-container h2 {
   text-align: center;
   margin-bottom: 3rem;
}

.comparison-table {
    overflow-x: auto;
}

table {
   width     :      100%;
   border-collapse: collapse;
   background: #ffffff;
   border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}



th {
  padding: 1.5rem;
			text-align : left;
   font-weight: 700;
    font-size: 1rem;
}

td {
                    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    color: #2c3e50;
}

tr:hover {
    background-color: #f8f9fa;
}

tbody tr:last-child td {
  border-bottom: none;
}

.faq-services {
   max-width    :      1200px; 
   margin:       4rem auto; 
  padding: 0 2rem;
}

.faq-services-container h2 {
	   text-align     :  center;
 margin-bottom  :        3rem;
     }

.faq-services-grid {
		display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	gap: 2rem;


}

.faq-services-item     {
    background: #f8f9fa;
	  padding: 1.5rem;
	    border-radius: 8px;
		border-left: 4px solid #667eea;
	  transition: all 0.3s ease;
}

.faq-services-item:hover {
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.faq-services-item h3 {
               color: #2c3e50;
    margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-services-item p {
    color: #6c757d;
  font-size: 0.95rem;
   margin :    0;
	}

.cta-services {

	  max-width  :      900px;
    margin: 4rem auto;
	 padding: 3rem 2rem;
    text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
    border-radius: 15px;

}

.cta-services h2 {
   margin-bottom: 1rem;
    color: #ffffff;
}

.cta-services p {
  color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
   margin-bottom: 2rem;
}

.thankyou-main {
  min-height: calc(100vh - 300px);
}

.thankyou-section {

	  max-width: 800px; 
        margin: 4rem auto; 
  padding   :       0 2rem;}

.thankyou-content {
    background: #ffffff;
   border: 2px solid #e9ecef;
    border-radius: 15px;
    padding    :3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.1);
}

.thankyou-icon {
    width: 100px;
	height: 100px;
    margin: 0 auto 1.5rem;
  display    : flex;
                    align-items: center;
   justify-content: center;
}

.thankyou-icon img {

	     width: 100%;
   height: 100%;
   object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
  animation :    scaleIn 0.6s ease-out;
     }@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}.thankyou-section h1 {
  color: #2c3e50;
   margin-bottom: 0.5rem;
}

.thankyou-subtitle {


    color     :#667eea;
  font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;


}

.thankyou-message  {
   background: #f8f9fa;
    padding  :     2rem;
         border-radius: 10px;
  margin-bottom: 2rem;
   text-align: left;
}

.thankyou-message p {
  color:#2c3e50;
      margin-bottom   : 1rem;
}

.thankyou-message p:last-child		{
  margin-bottom: 0;
}

.what-next {
                    margin-bottom: 2rem;
  text-align    :        left;
}

.what-next h2 {
  color: #2c3e50;
   text-align: center;
   margin-bottom   :  1.5rem;
}

.next-steps {
		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;
	
     }

.next-step-item {


  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
  border-radius: 8px;
    border: 1px solid #e9ecef;
	transition     :   all 0.3s ease;

}

.next-step-item:hover {

	  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.1);
  transform: translateY(-3px); 
	


}

.step-num {
   width: 40px;
    height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: #ffffff;
  border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content: center;
     font-weight: 700;
   font-size: 1.1rem;
   margin-bottom: 0.75rem;
}

.next-step-item h3 {
    margin-bottom   :   0.5rem;
               color: #2c3e50;
    font-size: 1rem;
}

.next-step-item p {
   margin: 0;
    font-size: 0.9rem;
   text-align: center;
	color: #6c757d;
} 

.thankyou-tips {

   text-align: left;
                    margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 1.5rem;
  border-radius: 8px;
	}

.thankyou-tips h2 
 {
   color: #2c3e50;
  text-align: center;
	margin-bottom: 1rem;
  font-size: 1.3rem;
	
}

.tips-list {
  list-style: none; 
	         margin: 0;
} 

.tips-list li     {
   padding: 0.5rem 0;
   padding-left     :        1.5rem;
   position: relative;
  color: #2c3e50;
}

.tips-list li:before {
  content: "▸";
    position: absolute;
  left: 0;
   color: #667eea;
  font-weight: bold;
    font-size: 1.2rem;


}

.tips-list a {
    color: #667eea;
          font-weight: 600;
}

.thankyou-actions
{
    display: flex;
   gap: 1.5rem;
    margin-bottom: 2rem;
  flex-wrap: wrap;
    justify-content: center;
}

.thankyou-actions .btn-primary,
.thankyou-actions .btn-secondary	{


    flex: 1;
       min-width: 180px;

	}

.contact-info-box {
                    background: #f8f9fa;
    padding: 1.5rem;
  border-radius: 8px;
    border-left :     4px solid #667eea;
}

.contact-info-box h3 {
   color: #2c3e50;
               margin-bottom: 0.5rem;
}

.contact-info-box p {
  color: #6c757d;

   margin  :      0;

  font-size: 0.95rem;
} 

.similar-services {
    background-color: #f8f9fa;
	padding   :      4rem 2rem;
   margin-top: 3rem;
}

.similar-container{
  max-width     :   1200px;
  margin: 0 auto;
}

.similar-container h2 {
	 text-align   : center; 
  margin-bottom: 3rem;
}

.similar-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.similar-item  {
    background   :    #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
         text-align: center;
      transition: all 0.3s ease;
}

.similar-item:hover {
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

.similar-icon {


          width: 60px;
   height: 60px;
    margin: 0 auto 1rem;
  display: flex;
  align-items:    center;
                    justify-content: center;


}

.similar-icon img {
   width: 100%;
    height: 100%;
   object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.2));
}

.similar-item h3 {
   color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.similar-item p   {
    font-size: 0.9rem;
   color: #6c757d;
    margin-bottom: 1rem;
}

.link-arrow {

	   color: #667eea;
    font-weight: 600;
    transition: all 0.3s ease;
  text-decoration: none;
	}

.link-arrow:hover {
   color   :    #764ba2;
}@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-featured {
    transform: scale(1);
  }

  .service-featured:hover {
    transform: scale(1) translateY(-8px);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .thankyou-content {
    padding: 2rem 1.5rem;
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-actions .btn-primary,
  .thankyou-actions .btn-secondary {
    width: 100%;
  }

  .next-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 2rem 1rem;
  }

  .services-hero-content h1 {
    font-size: 1.4rem;
  }

  .services-overview {
    padding: 0 1rem;
  }

  .service-package {
    padding: 1.5rem;
  }

  .thankyou-content {
    padding: 1.5rem 1rem;
  }

  .thankyou-icon {
    width: 80px;
    height: 80px;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .faq-services-grid {
    grid-template-columns: 1fr;
  }

  .similar-grid {
    grid-template-columns: 1fr;
  }

  th, td {
    padding: 0.75rem 0.5rem;
  }

  .comparison-table {
    font-size: 0.85rem;
  }
}