*		{

   margin: 0;
  padding: 0;
   box-sizing: border-box;
	}

html
{
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
   line-height   :  1.6;
  color: #2d3e50;
    background: #fafbfc;
  letter-spacing: 0.3px;
}

a {
   text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
    margin-bottom: 1.2rem;
       line-height: 1.2;}

h1 {
                    font-size: 3.2rem;
   color: #1a1f36;
  letter-spacing: -1px;
}

h2 {
    font-size: 2.4rem;
    color: #1a1f36;
     text-align: center;
   margin-bottom: 3rem; 

}

h3 {
  color: #2d3e50;
  font-size: 1.5rem;
}

p {
  margin-bottom     :1rem;
   font-size: 1.05rem;
      line-height: 1.8; 

}

.primary-navigation {
	background: #ffffff;
  border-bottom: 1px solid #e8ecf1;
    padding: 1.2rem 0;
    position  :    sticky;
   top: 0;
    z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-container	{
   max-width: 1200px;
          margin: 0 auto;
  padding: 0 2rem;
   display: flex;
  justify-content: space-between;
    align-items: center;
}

.nav-branding img {
  width: auto;
  height: 45px;
  display: block;
}

.nav-links {
  display: flex;
	 list-style: none;
    gap: 3rem;
	align-items: center;
}

.nav-links a {
  font-size: 1rem;
  font-weight  :500;
    color: #2d3e50;
   position: relative;
   padding-bottom: 4px;
}

.nav-links a::after {

  content: '';
   position: absolute;
    bottom: 0;
               left: 0;
  width: 0;
    height: 2px;
  background     :#3498db;
    transition: width 0.3s ease;}

.nav-links a:hover::after {
    width: 100%;
}

.burger-toggle
{
   display: none;
               flex-direction: column;
   cursor     :   pointer;
  gap   :     6px;
}

.burger-line    {
  width: 26px;
   height  :    3px;
  background: #2d3e50;
    border-radius: 3px;
    transition: all 0.35s ease;
}

.hero-section {
     padding: 6rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 600px;
    display: flex;
    align-items: center;
	
}

.hero-wrapper {

     max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns :        1fr 1fr;
  gap: 4rem;
    align-items: center;
    width: 100%;

}

.hero-content h1{
  margin-bottom     :    1.5rem;

}

.hero-subtitle {
    font-size: 1.2rem;
    color  :        #3d5073;
     margin-bottom     :2.5rem;
   line-height: 1.8;
}

.cta-primary {
   display: inline-block;
   padding: 14px 38px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
	border-radius: 6px;
   font-weight: 600;
    font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
	transition: all 0.4s ease;
  text-transform: uppercase;
   letter-spacing: 0.5px;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.hero-visual img {
   width    :100%;
         height: auto;
   border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.overview-block {
    padding     :       5rem 2rem;
   max-width: 1200px;
   margin     :     0 auto;
}

.overview-inner h2 {
	 margin-bottom: 3.5rem;
}

.overview-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.overview-item {
     padding    :       2.5rem 2rem;
    background: #ffffff;
   border-radius: 10px;
   border:       1px solid #e8ecf1;
    text-align: center;
	transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     }

.overview-item:hover {
	  transform: translateY(-8px); 
	  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12); 
	   border-color: #667eea;

}

.item-icon-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
	justify-content: center;
}

.item-icon-wrapper img


{
	 width: 50px;
	    height: 50px;
	  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
	    transition: all 0.3s ease;
}

.overview-item:hover .item-icon-wrapper img    {
  transform: scale(1.1);
	  filter: drop-shadow(0 6px 12px rgba(102, 126, 234, 0.5));
}

.overview-item h3 {
  margin-bottom: 1rem; 
  color: #1a1f36;
}

.overview-item p {


    color: #5a6b7a;
    font-size: 0.95rem;
         margin-bottom: 0;}

.methods-showcase {
    background: #ffffff;
    padding   :    5rem 2rem;
}

.methods-showcase h2 
 {
  max-width: 1200px;
   margin-left: auto;
               margin-right: auto;
  margin-bottom: 3.5rem;
}

.methods-container {
   max-width: 1200px;
  margin :    0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap    :   2.2rem;
}

.method-card {
  background: #f8f9fb;
  border-radius: 10px;
   overflow: hidden;
  transition  : all 0.4s ease;
  border: 1px solid #e8ecf1;
    display   :   flex;
  flex-direction: column;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.method-card img {
   width   :     100%;
  height: 240px;
   object-fit: cover;
  transition: transform 0.5s ease;
}

.method-card:hover img {
  transform: scale(1.05);
} 

.method-card h3 {
  padding: 1.5rem 1.5rem 0.8rem;
  color    :  #1a1f36;
}

.method-card p {
    padding: 0 1.5rem 1.5rem;
    color: #5a6b7a;
   font-size: 0.95rem;
	flex-grow: 1;
}

.programs-offering {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #fafbfc, #f1f4f7);
   max-width: 1200px;
   margin: 0 auto;
}

.programs-offering h2 {
	margin-bottom: 3.5rem;
}

.programs-flex    {
			display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}


.program-item {
   padding: 2.5rem;
               background: #ffffff;
   border-radius: 10px;
    border-left: 4px solid #667eea;
    transition   :all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.program-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.program-item h3     {


	color:    #1a1f36;
   margin-bottom: 1rem;}

.program-item p {

    color    :   #5a6b7a;
  margin-bottom: 1.5rem;
    font-size: 0.95rem;
     }

.program-features {


  display: flex;
   flex-wrap: wrap;
  gap: 0.8rem;
	}

.program-features span {
  background: #e8f0f9;
   color: #667eea;
 padding: 0.5rem 1rem;
   border-radius: 20px;
  font-size:0.85rem;
   font-weight: 500;
}

.testimonials-section  {
    padding: 5rem 2rem;
      background: #ffffff;
     }

.testimonials-section h2 {
  margin-bottom    :   3.5rem;
}

.testimonials-grid {


   max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;}

.testimonial-block {
    padding:  2.2rem;
   background: #f8f9fb;
  border-radius :       10px;
					border: 1px solid #e8ecf1;
    transition: all 0.4s ease;
    border-top: 3px solid #667eea;
}

.testimonial-block:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-block p
{
  color: #3d4b5c;
   font-style: italic;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.testimonial-block footer {
    font-size: 0.9rem;
    color: #667eea;
  font-weight: 600;
}



.primary-cta {
	 padding: 4.5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color   :        #ffffff;
                    text-align: center; 
	
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
   margin-bottom     :    1.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
   margin-bottom: 2.5rem;
	}

.cta-button {
  display: inline-block;
   padding: 14px 40px;
   background: #ffffff;
   color: #667eea;
        border-radius: 6px;
    font-weight: 700;
      font-size: 1.05rem;
  text-transform: uppercase;
   letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}  

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.contact-section {
     padding: 5rem 2rem;
    background: #fafbfc;
	}

.contact-wrapper {
  max-width: 600px;

    margin     :        0 auto;
}

.contact-wrapper h2    {
    margin-bottom: 1rem;
}  

.contact-intro   {
    text-align     :       center;
  color: #5a6b7a;
  margin-bottom: 2.5rem;
	font-size: 1rem;
}

.contact-form {
  background     :  #ffffff;
    padding: 2.5rem;
         border-radius :   10px;
  border: 1px solid #e8ecf1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);


}

.form-group {
 margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight  :  600;
				 color: #2d3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
               width: 100%;
	padding: 12px 14px;
   border  :   1px solid #d5dce3;
    border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
    background: #fafbfc; 

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: #667eea;
   background: #ffffff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-submit {
	width: 100%;
	padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: #ffffff;
   border: none;
   border-radius: 6px;
   font-weight: 700;
    font-size: 1.05rem;
 cursor: pointer;
  text-transform: uppercase;
   letter-spacing: 0.5px;
	 transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.form-submit:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
}

.site-footer {
    background   : #1a1f36;
    color: #e8ecf1;
	padding: 4rem 2rem 2rem;
}

.footer-layout {
   max-width: 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom:       3rem;
}

.footer-segment {
   padding: 1rem 0;
	
}

.footer-segment h4 {
    color: #ffffff;
   margin-bottom: 1.2rem;
   font-size: 1.1rem; 

     }

.footer-segment p {
    color: #a8b3c0;
    font-size: 0.95rem;
   margin-bottom: 0.8rem;
}

.footer-logo {
    height: 40px;
  width: auto;
	margin-bottom: 1rem; 

}

.footer-nav {
          list-style: none; 

}

.footer-nav li {
   margin-bottom: 0.8rem;
}

.footer-nav a
{
  color: #a8b3c0;
    font-size   :      0.95rem;
   transition: color 0.3s ease;


}

.footer-nav a:hover {

		 color :     #667eea;
}

.footer-bottom {
   border-top     :1px solid #2d3e50;
    padding-top    :      2rem;
  text-align: center;
  color: #a8b3c0;
   font-size: 0.9rem;
}@media (max-width: 768px) {
  .burger-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #ffffff;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: 1px solid #e8ecf1;
  }

  .nav-links.active {
    max-height: 400px;
    padding: 1.5rem 0;
  }

  .nav-links li {
    padding: 0.8rem 2rem;
    border-bottom: 1px solid #f0f2f5;
  }

  .nav-links a::after {
    display: none;
  }

  .burger-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
  }

  .burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-grid,
  .methods-container,
  .programs-flex,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-section {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .cta-primary,
  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer-segment p {
    font-size: 0.9rem;
  }
}.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;
  }
}.services-hero {
     padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
    text-align :        center;
    margin-top: 0;
}

.hero-content-services h1 {
  color: #ffffff;
    margin-bottom: 1rem;
   font-size: 2.8rem;


}

.hero-content-services p {
  color: rgba(255, 255, 255, 0.95);
  font-size     :    1.15rem;
  max-width: 700px;
   margin: 0 auto;
}

.services-detailed {
  padding: 5rem 2rem;
   background: #fafbfc;
}

.services-wrapper	{
       max-width: 1100px;
  margin: 0 auto;
	}

.service-full-item {

   background: #ffffff;
    border-radius: 12px;
	 border: 1px solid #e8ecf1;
  padding: 3rem;
   margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
   transition: all 0.4s ease;
     }

.service-full-item:hover {
     box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
	}

.service-header {
        display: flex;
   justify-content    :        space-between;
  align-items: center;
   margin-bottom: 2.5rem;
  padding-bottom: 2rem;
       border-bottom: 2px solid #e8ecf1;
}

.service-header h2 {
   margin  : 0;
  font-size: 2rem;
    color: #1a1f36;
   text-align: left;


}

.service-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  padding: 0.6rem 1.2rem;
      border-radius: 20px;
   font-size: 0.85rem;
         font-weight: 600;
	 white-space    :      nowrap;
}

.service-content-grid {
    display: grid;
  grid-template-columns: 1fr 320px;
  gap    :3rem;
    align-items: start;
}

.service-description h3 {
	font-size:1.4rem;
				 color: #2d3e50;
    margin-top: 2rem;
    margin-bottom     :       1rem; 
	
}

.service-description h3:first-child {
	 margin-top: 0;
}

.service-description p {
	   margin-bottom: 1.2rem;
   color: #5a6b7a;
    line-height: 1.8;
          font-size: 1rem;
     }

.results-list {

    list-style    :     none;
    padding: 0;


}

.results-list li {
    padding-left: 1.8rem;
   margin-bottom: 0.8rem;
      position   : relative;
                    color :    #5a6b7a;
    line-height: 1.6;
}

.results-list li::before

{

	  content: '✓';
	    position: absolute;
	 left: 0;
	    color: #667eea;
		font-weight: bold;
	   font-size: 1.1rem;


}

.service-sidebar {
    flex-direction: column;
	     gap  :      2rem;
	   display: flex; 
	
}

.service-specs {
   border: 1px solid #e8ecf1;
   border-radius: 8px;
    padding :1.8rem;
    background  :   #f8f9fb;
}

.spec-row {
  display: flex;
	    flex-direction: column;
	  padding: 1rem 0;
	   border-bottom: 1px solid #e8ecf1;
}



.spec-row:last-child {
        border-bottom   :  none;
    padding-bottom: 0;
}

.spec-label

{
    color  :        #2d3e50;
   font-weight :    600;
   margin-bottom   :    0.3rem;
    font-size: 0.9rem;}

.spec-value {
   color: #667eea;
   font-size: 0.95rem;
}

.service-cta {
   display   :    block;
   padding: 12px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  :     #ffffff;
  border-radius: 6px;
   font-weight:    600;
    text-align: center;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;

}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
}

.comparison-services {

	  padding: 5rem 2rem;
    background: #ffffff;}

.comparison-services h2 {
	margin-bottom: 3rem;
}

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x:      auto;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table {
          width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.comparison-table thead 
 {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     }

.comparison-table th  
  {

	    color: #ffffff;
    padding: 1.5rem;
    text-align  :  left;
 font-weight     :     600;
	 font-size: 0.95rem;


}



.comparison-table td 
 {
  padding: 1.5rem;
   border-bottom :  1px solid #e8ecf1;
   color: #5a6b7a;
}

.comparison-table tbody tr:hover {
                    background: #f8f9fb;
}

.comparison-table .check-mark {
    color: #2ecc71; 
	       font-weight: 600;
}

.faq-services {

		padding: 5rem 2rem;
    background: #fafbfc;
}

.faq-services h2 {
   margin-bottom     :  3rem;
}

.faq-container {

	   max-width: 800px;
  margin: 0 auto;


}

.faq-item {
    margin-bottom: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border     :      1px solid #e8ecf1;
	overflow     :    hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-trigger

{
    width: 100%;
     padding    :1.5rem;
   	background: #ffffff;
       border: none;
      cursor: pointer;
       display: flex;
      justify-content :   space-between;
       align-items:center;
       font-size: 1rem;
      font-weight:   600;
     color: #2d3e50;
     transition :        all 0.3s ease;
       text-align: left;
}

.faq-trigger:hover {
  color  :#667eea;
   background     :  #f8f9fb;
}


.faq-question {
  flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
  color: #667eea;
   transition: transform 0.3s ease;
  margin-left  :    1rem;
}

.faq-item.active .faq-trigger {
    background: #f8f9fb;
    color: #667eea;
}

.faq-item.active .faq-icon
{
  transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
     overflow: hidden;
  transition     : max-height 0.3s ease;
}

.faq-item.active .faq-answer  {
    max-height    :       500px;
}

.faq-answer p

{
       padding: 0 1.5rem 1.5rem;
	color: #5a6b7a;
               margin    :   0;
          line-height: 1.8;

}

.pricing-overview {
  padding: 5rem 2rem;
  background: #ffffff;
}

.pricing-overview h2 {
    margin-bottom: 1rem;
}

.pricing-intro {
   text-align: center;
    color: #5a6b7a;
  font-size:    1rem;
    margin-bottom: 3rem;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
}

.pricing-cards {
	max-width:     1100px;
   margin    : 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
	
}

.pricing-card {
  border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
   background: #f8f9fb;
    border: 2px solid #e8ecf1;
   padding: 2.5rem 2rem;
    text-align: center;
}

.pricing-card:hover

{
  transform: translateY(-8px);
      border-color: #667eea;
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.pricing-card.featured {
    border-color   :     #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  transform: scale(1.05);


}

.featured-badge {


	position :        absolute; 
  top: -12px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  color: #ffffff; 
   padding: 0.5rem 1rem; 
   border-radius: 20px; 
  font-size: 0.8rem; 
                    font-weight: 700;


} 

.pricing-card h3 {
       margin-top: 1rem;
                    margin-bottom: 1.5rem;
     color: #1a1f36;
}

.price-tag {
    font-size: 2.5rem;
  color: #667eea;
    font-weight: 700;
         margin: 0 0 0.2rem;
}

.price-currency {
    margin-bottom :    1.5rem;
   font-size: 0.9rem;
  color: #5a6b7a;
}

.pricing-features {
   margin   :  0 0 2rem;
	    padding: 0;
	      list-style: none;
	  text-align    :     left;
}

.pricing-features li {
  padding  : 0.6rem 0;
  border-bottom: 1px solid #e8ecf1;
  font-size   :    0.95rem;
  color: #5a6b7a;
}

.pricing-features li:last-child {


    border-bottom: none;


}

.cta-services-section {
  padding:     4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
   text-align    :   center;

}


.cta-services-content     {
   max-width : 700px;
	margin: 0 auto;
}

.cta-services-content h2 {
   color: #ffffff;
      margin-bottom: 1rem;
}

.cta-services-content p {
  color: rgba(255, 255, 255, 0.95);
    font-size  :  1.1rem;
   margin-bottom: 2rem;
}

.cta-button-services {
   display: inline-block;
   padding: 14px 40px;
      background: #ffffff;
  color: #667eea;
    border-radius: 6px;
   font-weight: 700;
  font-size: 1.05rem;
  text-transform  :      uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition     :     all 0.4s ease;
}

.cta-button-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.thankyou-section {
    padding: 5rem 2rem;
  background: linear-gradient(to bottom, #f5f7fa, #e8f0f9);
    min-height: 70vh;
}

.thankyou-wrapper {
   max-width    : 700px;
	margin: 0 auto;
   text-align: center;
}

.thankyou-icon {
   margin-bottom: 2rem;
          display: flex;
  justify-content     :        center;
}

.thankyou-icon img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(46, 204, 113, 0.3));
  animation: bounceIn 0.6s ease; 
	
}@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}.thankyou-section h1 {
  color: #1a1f36; 
	               margin-bottom: 1rem; 
	    font-size: 2.4rem;
}

.thankyou-message {
   color: #5a6b7a;
   font-size: 1.1rem;
    margin-bottom: 3rem;
}

.confirmation-details {
   background: #ffffff;
  border-radius: 10px;
	padding: 2.5rem;
   margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	 border:    2px solid #e8ecf1;}

.confirmation-details h2 {
  text-align: left;
  margin-bottom: 1.5rem;
   font-size: 1.4rem;
    color: #2d3e50;
}

.detail-row {
    display: grid;
               grid-template-columns    :      150px 1fr;
  gap: 2rem;
    padding: 1rem 0;
   border-bottom: 1px solid #e8ecf1;
    align-items  :   center;
}

.detail-row:last-of-type {
  border-bottom: none;
}

.detail-label		{
          font-weight: 600;
    color: #667eea;
	
	}

.detail-value {
  color: #2d3e50;
  word-break: break-word;
}

.detail-note {
  color: #5a6b7a;
    font-size:    0.9rem;
  margin-top   :      1rem;
   padding-top: 1rem;
   border-top: 1px solid #e8ecf1;
}



.next-steps {
   background: #ffffff;
   border-radius: 10px;
    padding: 2.5rem;
   margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.next-steps h2 {
	 text-align: left;
   margin-bottom   :  2rem;
   font-size: 1.4rem;
  color: #2d3e50;
	
}

.steps-grid{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step-item {
  text-align: center;
}



.step-number {
	 display: inline-flex;
       align-items: center;
       justify-content: center;
      width: 50px;
     height: 50px;
      border-radius: 50%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
           color: #ffffff;
   	font-size: 1.5rem;
     font-weight: 700;
       margin-bottom: 1rem;
}

.step-item h3 {
   color: #2d3e50;
       margin-bottom: 0.8rem;
}

.step-item p {
    color: #5a6b7a;
     font-size: 0.9rem;
	line-height: 1.6;
}

.additional-info {
   background: #f8f9fb;

    border-radius: 10px;

  -moz-border-radius:      10px;

    padding    :        2.5rem;

  margin-bottom: 2rem;

   border: 1px solid #e8ecf1;
}

.additional-info h2 {
    text-align: left;
   margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #2d3e50;
}

.additional-info p {
               color: #5a6b7a;
  margin-bottom     :      1rem;
    text-align: left;
}


.button-secondary {
  display :    inline-block;
    padding: 12px 28px;
   background    :#ffffff;
	color: #667eea;
  border :    2px solid #667eea;
   border-radius: 6px;
   font-weight: 600;
     transition: all 0.3s ease;
    margin-right  :    1rem;
  margin-top: 1rem;
}

.button-secondary:hover {
  background     :     #667eea;
   color: #ffffff;
}

.contact-info-thankyou {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
	border-radius: 10px;
  padding: 2rem;
	text-align    :        left; 
	
}


.contact-info-thankyou h3 {
   color: #ffffff; 
		margin-bottom     :      1.2rem;
}

.contact-info-thankyou p
{
  color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.benefits-reminder {
   padding    : 5rem 2rem; 
	   background: #ffffff;
}

.benefits-reminder h2 {
   margin-bottom: 3rem;

}

.benefits-grid {
    max-width: 1100px;
    margin: 0 auto;
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:        2.5rem;
}

.benefit-card {
   background     :       #f8f9fb; 
  padding   :        2.5rem; 
    border-radius: 10px; 
  border: 1px solid #e8ecf1; 
    text-align: center; 
  transition: all 0.4s ease;
}

.benefit-card:hover    {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
	border-color: #667eea; 
	
}

.benefit-icon {
   margin-bottom: 1.5rem;
	display: flex;
   justify-content: center;
}

.benefit-icon img {
    width: 60px;
  height: 60px;
  filter: drop-shadow(0 3px 8px rgba(102, 126, 234, 0.2));
}



.benefit-card h3 {
    color  :        #1a1f36;
   margin-bottom: 1rem;
}

.benefit-card p {
    color: #5a6b7a;
    font-size: 0.95rem;

}
@media (max-width: 768px) {
  .service-content-grid {
    grid-template-columns: 1fr;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .service-full-item {
    padding: 1.5rem;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }
}@media (max-width: 480px) {
  .services-hero {
    padding: 2.5rem 1rem;
  }

  .hero-content-services h1 {
    font-size: 1.8rem;
  }

  .service-header h2 {
    font-size: 1.5rem;
  }

  .service-specs {
    padding: 1.2rem;
  }

  .thankyou-section {
    padding: 2rem 1rem;
  }

  .thankyou-section h1 {
    font-size: 1.8rem;
  }

  .button-secondary {
    display: block;
    margin: 0.8rem auto;
  }
}