* {
       margin     :     0;
   padding: 0;
  box-sizing: border-box;
	}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;


}

.main-navigation  
  {
    background: #ffffff; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
        position: sticky; 
   top: 0; 
    z-index   :1000; 
   padding: 1.2rem 0;
}

.nav-container 
 {
    max-width     :1280px;
  margin :      0 auto;
  padding: 0 2rem;
                    display: flex;
          justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 48px;
   width: auto;
	
}

.nav-menu {

	  list-style :     none;
   display: flex;
    gap: 2.5rem;


}

.nav-menu li a {
   text-decoration: none;
  color: #34495e;
	 font-weight: 500;
 transition: color 0.3s;
  font-size   :   1.05rem;
}

.nav-menu li a:hover {
  color    :#667eea;
}

.burger-menu {
  display: none;
  flex-direction: column;
   cursor: pointer;
 gap: 5px;


}

.burger-menu span {
   width: 28px;

     height: 3px;

	background: #34495e;

  transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2)		{
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	  transform: rotate(-45deg) translate(7px, -7px);
	}

.hero-section {
	max-width:    1280px;
   margin: 0 auto;
   padding: 5rem 2rem;
  display: grid;
    grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
   align-items:  center;
}

.hero-content h1 {
	font-size    :    3.2rem;
   color: #1a252f;
	 margin-bottom: 1.5rem;
         line-height: 1.2;
  font-weight   :  700;
}

.hero-subtitle {
    font-size    :     1.3rem;
		 color: #576574;
	    margin-bottom: 2.5rem;
	    line-height: 1.7;
}

.hero-actions		{
   display: flex;
    gap   :     1.5rem;
}



.btn-primary, .btn-secondary {
    padding: 1rem 2.2rem;
    text-decoration: none;
   border-radius: 8px;
          font-weight: 600;
   transition   : all 0.3s;
				 display: inline-block;
   font-size: 1.05rem; 

}

.btn-primary     {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color     :   white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

.btn-secondary {
  background: transparent;
   color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea; 
	    color: white;
}

.hero-visual img {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.intro-block {


   background: white;
   padding: 5rem 2rem;
	}

.content-wrapper {
   max-width     :    1280px;
    margin: 0 auto;
   display: grid;
    grid-template-columns    :      1.3fr 1fr;
    gap: 4rem;
   align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
   margin-bottom: 1.8rem;
  color: #2c3e50;
  font-weight: 700;
}

.intro-text p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
   color :#546e7a;
    line-height: 1.8;
}

.intro-image img   {
    width: 100%;
 border-radius:  12px;
}

.services-preview {
   padding: 5rem 2rem;
    max-width: 1280px;
   margin  :      0 auto;
}

.section-header {
   text-align :      center;
    margin-bottom: 4rem;
}

.section-header h2  
  {
     color    :  #1a252f;
  font-size: 2.8rem;
          margin-bottom: 1rem;
  font-weight: 700;


}

.section-header p {
	font-size: 1.2rem; 
	   color: #607d8b;
}

.services-grid {
		display    :   grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
	}

.service-card {
    background:      white;
	 padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover   {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height    :     70px;
    margin-bottom  :  1.5rem;
}

.service-icon img {
    stroke: #667eea;
    stroke-linecap: round;
          height: 100%;
  stroke-width: 1.8;
  stroke-linejoin: round;
	 fill: none;
  width: 100%;
}

.service-card h3 {
    font-size: 1.6rem;
   color: #2c3e50;
  margin-bottom   :       1rem;
  font-weight: 600;
}

.service-card p {
	color: #5a6c7d;
         font-size: 1.05rem;
	line-height: 1.7;
}

.methodology-section {

	   background: #f8f9fa;
  padding: 5rem 2rem;
	}


.methodology-container {
   max-width: 1280px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1.4fr;
	gap: 4rem;
  align-items: center;
}

.method-visual img {
     width: 100%;
  border-radius: 12px;
	}

.method-content h2 {

	      font-size: 2.6rem;
  color     :     #1a252f;
    margin-bottom: 3rem;
	font-weight: 700;


}

.method-item {
       display: flex;
   gap     : 1.8rem;
  margin-bottom: 2.5rem;
}

.method-number   {
          font-size: 2rem;
   font-weight: 700;
  color: #667eea;
    min-width: 60px;
}

.method-text h4


{
  font-size: 1.4rem;
     color: #2c3e50;
     margin-bottom: 0.6rem;
     font-weight: 600;
}

.method-text p {
   color: #5f6368;
    font-size:  1.05rem;
     line-height: 1.6;

}

.cta-section {
   position: relative;
	padding: 5rem 2rem;
          overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);}

.cta-content {
    max-width: 800px;
   margin: 0 auto;
         text-align  :        center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
  font-size: 2.8rem;
   color: white;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.cta-content p	{
    font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
   margin-bottom: 2.5rem;
   line-height     :    1.7;


}

.cta-button {
  display: inline-block;
   padding: 1.2rem 3rem;
   background     : white;
   color: #667eea;
   text-decoration  :     none;
  border-radius: 8px;
    font-weight: 600;
    font-size    :1.1rem;
   transition: all 0.3s;


}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-background {
	position: absolute;
   top  :      0;
   right: 0;
   width: 50%;
   height: 100%;
  opacity: 0.15;
    z-index: 1;
}

.cta-background img		{
    width:     100%;
      height: 100%;
  object-fit: cover;
     }

.benefits-section {
 padding: 5rem 2rem;
   max-width  :     1280px;
   margin: 0 auto; 

}

.benefits-section h2 {
                  font-size: 2.8rem;
   text-align: center;
  color: #1a252f;
  margin-bottom  :    4rem;
  font-weight: 700;}

.benefits-layout {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
	 gap: 3rem;
}

.benefit-box {

	    background: white;
    padding :      2.5rem;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
     }

.benefit-icon 
 {


  width: 65px;
   height: 65px;
  margin-bottom: 1.5rem; 
}

.benefit-icon img {
    width: 100%;
  height: 100%;
  stroke: #764ba2;
	fill: none;
     stroke-width  :     2;
        stroke-linecap: round;
    stroke-linejoin     :     round;}

.benefit-box h3 {
  font-size: 1.5rem; 
  color: #2c3e50; 
   margin-bottom: 1rem; 
  font-weight: 600;
}

.benefit-box p {
    color: #5a6c7d;
				 font-size: 1.05rem;
  line-height: 1.7;
}

.testimonials-section {
    background: #f8f9fa;
	 padding    :   5rem 2rem; 

}

.testimonials-section h2		{
    font-size: 2.8rem;
   text-align: center;
    color: #1a252f;
    margin-bottom: 4rem;
    font-weight: 700;
	max-width: 1280px;
  margin-left   :    auto;
    margin-right: auto;
}

.testimonials-grid {
    max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
   gap: 2.5rem;
    display     :        grid;
}

.testimonial-card {
    background: white;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
   font-size: 1.05rem;
    color: #546e7a;
         line-height: 1.7;
                    margin-bottom: 1.8rem;
  font-style: italic;
}

.testimonial-author strong {
   display: block;
  color: #2c3e50;
    font-size: 1.1rem;
  margin-bottom     :      0.3rem;
}

.testimonial-author span {
    color : #78909c;
  font-size    :  0.95rem;
}

.contact-section {
               padding: 5rem 2rem;
   background  :    white;
}

.contact-container {
    max-width: 1280px;
    margin    :       0 auto;
   display: grid;
	 grid-template-columns: 1fr 1.2fr;
	 gap: 4rem;
}

.contact-info h2 {


   font-size    :      2.5rem;
    color  :      #1a252f;
    margin-bottom    :1.5rem;
  font-weight: 700;}

.contact-info p {
  font-size: 1.1rem;
  color    :   #546e7a;
    margin-bottom: 2.5rem;
	 line-height   :   1.7;
}

.contact-details		{
   margin-bottom: 2.5rem;
}

.contact-item {
   display: flex;
  gap: 1.5rem;
  margin-bottom     : 2rem;
}

.contact-icon {
	width: 50px;
               height: 50px;
}

.contact-icon img {
  width: 100%;
    height: 100%;
  stroke: #667eea;
  fill: none;
	stroke-width: 2;
  stroke-linecap: round;
   stroke-linejoin: round;
}

.contact-data strong {
	  display    : block;
          color :      #2c3e50;
    font-size: 1.1rem;
    margin-bottom:    0.5rem;}

.contact-data p {
   color: #5a6c7d;
       font-size: 1rem;
     margin: 0;
     line-height: 1.6;
}

.presence-image {
   margin-top: 2rem;
}

.presence-image img {
  -moz-border-radius: 12px;
   width: 100%;
          -webkit-border-radius: 12px;
   border-radius  :        12px;


}

.contact-form {


    background     : #f8f9fa;
	 padding: 2.5rem;
         border-radius: 12px;}

.form-group {
  margin-bottom: 1.8rem;
}



.form-group label {
   display: block;
                       color: #2c3e50;
       font-weight :  600;
      margin-bottom: 0.6rem;
   					font-size    : 1.05rem;}

.form-group input,
.form-group select,
.form-group textarea {
    width   :     100%;
    padding: 0.9rem;
	border :    2px solid #dfe4ea;
   border-radius: 6px;
   font-size: 1rem;
    font-family: inherit;
  transition: border-color 0.3s;
   background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {


  outline: none;
			border-color: #667eea;}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
     width   :   100%;
    padding    :      1.1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    border:        none;
  border-radius: 6px;
    font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
   transition: all 0.3s;
}

.submit-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102,126,234,0.3);
	}

.site-footer {
    background: #1a252f;
    color: white;
	padding: 4rem 2rem 2rem;
}

.footer-content{
                    max-width: 1280px;
	 margin: 0 auto;
  display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1fr;
   gap: 3rem;
 margin-bottom:        3rem;
}

.footer-logo {
    height: 45px;
        margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  color  :#b0bec5;
   font-size: 0.95rem;
   line-height: 1.6;
}

.footer-column h4 {
      color: white;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
  font-weight: 600;
}

.footer-links{
       list-style: none;

}

.footer-links li {


   margin-bottom    :      0.8rem;

}

.footer-links a

{
  color: #b0bec5;
	text-decoration: none;
  transition: color 0.3s;
}



.footer-links a:hover {
  color: white;


}

.footer-column p {
    color: #b0bec5;
  font-size: 0.95rem;
               line-height:       1.6;
   margin-bottom: 0.5rem;
}

.footer-phone {
   font-weight: 600;

   color :     white; 
	
}

.footer-bottom {
   max-width :1280px;
  margin : 0 auto;
	padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
}

.footer-bottom p		{
   color: #b0bec5;
    font-size: 0.9rem;
}@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.08);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .methodology-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .method-content h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .benefits-section h2 {
        font-size: 2rem;
    }

    .testimonials-section h2 {
        font-size: 2rem;
    }
}.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 {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 6rem 2rem 4rem;
  text-align: center; 


}

.services-hero-content h1 {
    font-size: 3.5rem;
   color: white;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-hero-text {

	 font-size: 1.3rem;
  color: rgba(255,255,255,0.95);
	max-width: 800px;
  margin: 0 auto;}

.services-intro {

    padding: 5rem 2rem;
    background: white;
     }

.services-intro-wrapper {
      display: grid;
      align-items: center;
  grid-template-columns: 1.2fr 1fr;
    max-width:      1280px;
                    margin: 0 auto;
                    gap: 4rem;
	}

.services-intro-content h2 {
   font-size: 2.6rem;
    color: #1a252f;
  margin-bottom: 1.8rem;
    font-weight: 700;
}

.services-intro-content p {

   font-size: 1.15rem;
   color: #546e7a;
    margin-bottom: 1.5rem;
  line-height     :    1.8;
}

.services-intro-visual img {
   width: 100%;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.detailed-services {
       background: #f8f9fa;
  padding: 5rem 2rem;
	}

.detailed-services-container {
  max-width: 1280px;
                    margin: 0 auto;
}

.service-detail-block {
	background: white; 
	border-radius: 16px; 
    padding: 3rem; 
  margin-bottom  :3.5rem; 
    display: grid; 
   grid-template-columns: 1fr 1.3fr; 
   gap: 3.5rem; 
    align-items: start; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-detail-block.reverse


{


  grid-template-columns  :1.3fr 1fr;
}

.service-detail-block.reverse .service-detail-image {

    order: 2;
}

.service-detail-block.reverse .service-detail-text {

	   order:       1;


}

.service-detail-image img {
	 -webkit-border-radius: 10px;
   width: 100%;
  border-radius: 10px;
  -moz-border-radius: 10px;
}


.service-badge		{

   display   :   inline-block;
 padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
  border-radius: 20px;
   font-size: 0.9rem;
     font-weight: 600;
    margin-bottom: 1.5rem;
	}

.service-detail-text h2 
 {
     font-size: 2.3rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
    font-weight: 700;


}

.service-description {
	 font-size  :       1.1rem;
  color: #5a6c7d;
   line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features {
   margin-bottom     :     2.5rem;
}

.feature-item {
  display: flex;
      gap: 1.5rem;
       margin-bottom: 1.8rem;
}

.feature-icon {
   width: 50px;
    height: 50px;
   min-width     :     50px;
}

.feature-icon img {
  width: 100%;
   height: 100%;
  stroke    :       #667eea;
    fill    :    none;
	 stroke-width   :  2;
	 stroke-linecap: round;
	stroke-linejoin: round;
}

.feature-content h4 {
  font-weight: 600;
     color: #2c3e50;
	margin-bottom     :    0.5rem;
   font-size: 1.2rem;
}

.feature-content p {
   color: #5f6368;
	 font-size: 1rem;
	  line-height: 1.6;
}

.service-includes {
    background: #f8f9fa;
    padding: 2rem;
	 border-radius: 10px;
  border-left: 4px solid #667eea;
}

.service-includes h4 {
       font-size: 1.3rem; 
  color: #2c3e50; 
   margin-bottom: 1.2rem; 
   font-weight: 600;
	
     }

.service-includes ul {
                    list-style: none;
    padding: 0;
}

.service-includes ul li {
  padding-left   :       1.8rem;
  margin-bottom: 0.9rem;
	position: relative;
  color: #5a6c7d;
   font-size: 1.05rem;
   line-height:        1.6;
}

.service-includes ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
    color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-section {
	    padding: 5rem 2rem;
   background: white;
}

.pricing-container {
     max-width: 1280px;
        margin: 0 auto;
}

.pricing-header {
   text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
	               font-size: 2.8rem;
	 color: #1a252f;
     margin-bottom: 1rem;
   font-weight    :700;

}

.pricing-header p {
  font-size: 1.2rem;

  color: #607d8b;
}

.pricing-grid {
  display:        grid;

  grid-template-columns: repeat(4, 1fr);

  gap :        2rem;
}

.pricing-card {
      background    :   #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
    transition: all 0.3s;
   position: relative;

}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  transform: scale(1.05);
}

.featured-badge {
	position: absolute;
   top: -12px;
  right: 20px;
    background: #f39c12;
                    color: white;
   padding   :0.4rem 1rem;
   border-radius: 20px;
   font-size: 0.85rem;
    font-weight: 600;
}

.pricing-icon {
  width: 60px;
   height: 60px;
                    margin: 0 auto 1.5rem;
}

.pricing-icon img {
  width: 100%;
  height: 100%;
    stroke: #667eea;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin :        round; 

}

.pricing-card.featured .pricing-icon img {
  stroke: white;
}

.pricing-card h3    {

  font-size: 1.5rem;
         margin-bottom: 1.5rem;
  color: #2c3e50;
    font-weight: 600;


}

.pricing-card.featured h3 {
	color:white;
}

.pricing-amount {
   margin-bottom: 1rem;
}

.price-currency {
         font-size: 1rem;
  color: #5a6c7d;
   display: block;
  margin-bottom: 0.5rem;
}

.pricing-card.featured .price-currency {
  color: rgba(255,255,255,0.9);

}  

.price-value {
   color   :     #2c3e50;
    font-weight: 700;
   font-size: 3rem;

}

.pricing-card.featured .price-value{
   color: white;
     }

.price-period {
  font-size: 1.2rem;
   color: #5a6c7d;
   margin-left  :   0.3rem;
}

.pricing-card.featured .price-period {
  color: rgba(255,255,255,0.9);
}

.pricing-note {
    font-size  :     0.95rem;
    min-height: 40px;
  color: #5a6c7d;
 margin-bottom: 2rem;
}


.pricing-card.featured .pricing-note		{
  color: rgba(255,255,255,0.9);
}

.pricing-btn  
  {
	display :    inline-block;
                    padding: 0.9rem 2rem;
     background: #667eea;
   color: white;
	text-decoration: none;
  border-radius: 8px;
   font-weight    :    600;
    transition: all 0.3s;
}

.pricing-btn:hover {
   background    :        #5568d3;
     }

.pricing-card.featured .pricing-btn {
  background: white;
    color: #667eea;
}

.pricing-card.featured .pricing-btn:hover {
    background: #f8f9fa;
}

.faq-section  
  {
   padding: 5rem 2rem;
   background: #f8f9fa;
	
}

.faq-container {
   max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
	font-size: 2.8rem;
    text-align: center;
  color: #1a252f;
    margin-bottom: 3.5rem;
  font-weight: 700;
}

.faq-list {
       display: flex;
    flex-direction: column;
    gap: 1.5rem;
	}

.faq-item {
   background  :white;
   border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-question{
  padding: 1.8rem 2rem;
    display  :     flex;
   justify-content     :    space-between;
     align-items: center;
   -o-transition:      background 0.3s;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {

	    background    :        #f8f9fa;
}

.faq-question h4 {
               font-size: 1.2rem;
    color: #2c3e50;
   font-weight: 600;
    margin: 0;
}

.faq-toggle {
  height: 30px;
               transition: transform 0.3s;
  min-width: 30px;
   width: 30px;
}

.faq-toggle img {
	width: 100%;
    height: 100%;
   stroke: #667eea;
   fill: none;
   stroke-width     :    2;
  stroke-linecap: round;
   stroke-linejoin   :   round;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {


   max-height    : 0;
   overflow: hidden;
   transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 2rem;
	}

.faq-item.active .faq-answer {
   max-height     :  500px;
    padding: 0 2rem 1.8rem;
}

.faq-answer p {
  color: #5a6c7d;
    font-size: 1.05rem;
   line-height: 1.7;
    margin    :      0;
}

.final-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
  text-align: center;


}


.final-cta-content {
   max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2

{
  font-size     :2.8rem;
    color: white;
	margin-bottom: 1.5rem;
   font-weight: 700;
}

.final-cta-content p   {
	         font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
   margin-bottom: 2.5rem;}


.final-cta-btn{
    display:   inline-block;
   padding: 1.2rem 3rem;
  background: white;
  color: #667eea;
  text-decoration: none;
	border-radius: 8px;
    font-weight: 600;
  font-size: 1.1rem;
   transition: all 0.3s;

}

.final-cta-btn:hover {

  transform: scale(1.05);

	  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.thankyou-wrapper {
   padding: 5rem 2rem;
   background: #f8f9fa;
    min-height: 70vh;
}

.thankyou-container {
   max-width: 1100px;
    margin: 0 auto;
		background: white;
    border-radius: 16px;
    padding: 4rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
}

.thankyou-icon-section {

	  text-align: center;
   margin-bottom: 2.5rem;
}

.success-icon-wrapper {
   width: 100px;
     height: 100px;
       margin    :  0 auto;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border-radius: 50%;
      display: flex;
     align-items:       center;
       justify-content: center;
     animation: scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.success-icon {

	  width: 60px;
   height: 60px;
  stroke: white;
  fill: none;
   stroke-width: 3;
   stroke-linecap: round;
        stroke-linejoin: round;
}

.thankyou-content {
   text-align: center;

}

.thankyou-content h1 {
      font-size: 2.8rem;

	  color: #1a252f;

	   margin-bottom: 1.2rem;

	    font-weight: 700;

}

.thankyou-message {
    font-size: 1.2rem;

  color: #546e7a;

    margin-bottom     :        3rem;

   line-height: 1.7;
}

.thankyou-info-box {
  background   :        #f8f9fa;
     padding: 2.5rem;
      border-radius: 12px;
       margin-bottom: 3rem;
     text-align   :   left;
}

.thankyou-info-box h3 {
        font-size     :       1.8rem;
  color   :     #2c3e50;
   margin-bottom: 2rem;
    text-align: center;
   font-weight    :  600;
}

.next-steps {
   display     :    flex;

   flex-direction: column;

         gap: 2rem; 
	
} 

.step-item
	{
   display: flex;
	gap: 1.5rem;
	 align-items: start; 
	
}

.step-number {


	 width: 50px;
   height: 50px;
   min-width: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	 border-radius: 50%;
   display: flex;
    align-items: center;
    justify-content :       center;
    font-size: 1.5rem;
	font-weight: 700;
	}

.step-text h4		{
   font-size: 1.3rem;
	 color: #2c3e50;
	margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-text p {
   color: #5a6c7d;
  font-size: 1.05rem;
    line-height: 1.6;
}

.thankyou-additional     {

	 margin-bottom: 3rem;}

.thankyou-additional h3 {
    font-size: 1.6rem;
  color: #2c3e50;
	margin-bottom     :      1rem;
    font-weight: 600;
}

.thankyou-additional p {
               color: #5a6c7d;
   font-size     :      1.05rem;
   margin-bottom: 2rem;
}



.quick-links {
                    justify-content: center;
   display    :        flex;
 gap: 2rem;
}

.quick-link-item {

	               display :  flex;
    align-items: center;
     gap: 1rem;
  padding: 1rem 2rem;
    background: #f8f9fa;
   border-radius :       8px;
  text-decoration:   none;
   color: #2c3e50;
   transition     : all 0.3s;
    font-weight: 600;
     }

.quick-link-item:hover
	{
  transform: translateY(-2px);
   background: #667eea;
   color    :      white;
}

.quick-link-icon {
	width: 30px;
	height: 30px;
}

.quick-link-icon img {
   width: 100%;
	height: 100%;
               stroke :        #667eea;
	fill: none;
    stroke-width: 2;
  stroke-linecap: round;
    stroke-linejoin    :     round;
   transition: stroke 0.3s;
}

.quick-link-item:hover .quick-link-icon img{

	  stroke: white;


}

.thankyou-contact-reminder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius:      12px;
    display: flex;
   gap: 1.5rem;
  align-items: center;
  text-align: left;


}

.contact-reminder-icon {
   width: 60px;
  height: 60px;
   min-width    : 60px;
}

.contact-reminder-icon img {
    width     :   100%;
  height: 100%;
				 stroke: white;
   fill: none;
   stroke-width :     2;
    stroke-linecap: round;
	stroke-linejoin     :   round;

}

.contact-reminder-text h4

{
    font-size: 1.3rem; 
   color     :      white; 
     margin-bottom: 0.5rem; 
   font-weight     :       600;
}

.contact-reminder-text p {
  color: rgba(255,255,255,0.95);
	 font-size: 1.05rem;
   margin: 0;


}

.contact-reminder-text strong {
   color: white;
  font-weight: 700;
}

.thankyou-visual
	{
    display: none;
}

.thankyou-testimonial {
    padding: 4rem 2rem;
   background: white;
}

.testimonial-wrapper {
   max-width: 800px;
	 margin: 0 auto;
                    text-align: center;
}  

.testimonial-wrapper h3 {
  font-size: 2rem;
	color  :  #1a252f;
         margin-bottom: 2.5rem;
      font-weight: 600;

}

.thankyou-testimonial-card {
   padding: 2.5rem;
   -webkit-border-radius   :     12px;
  border-radius: 12px;
   background: #f8f9fa;
}

.testimonial-quote {
    font-size: 1.15rem;
  color: #546e7a;
   line-height: 1.8;
   font-style: italic;
    margin-bottom: 1.5rem; 
	
}


.testimonial-author-info strong {
		 display :  block;
               color: #2c3e50;
   font-size: 1.1rem;
  margin-bottom    :    0.3rem;


}

.testimonial-author-info span {
   color: #78909c;
    font-size :     0.95rem;
}@media (max-width: 968px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .service-detail-block.reverse .service-detail-image,
    .service-detail-block.reverse .service-detail-text {
        order: initial;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-links {
        flex-direction: column;
    }

    .thankyou-container {
        padding: 2.5rem 2rem;
    }

    .thankyou-contact-reminder {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .quick-link-item {
        flex-direction: column;
        text-align: center;
    }
}