* {


   box-sizing: border-box;
    margin: 0;
   padding:      0;

}

html {

   scroll-behavior: smooth;
     }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
               color: #2c3e50;
	background-color: #ffffff;
   line-height: 1.6;


}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
  z-index: 100;
}

.navbar-container		{
  max-width: 1200px;
  margin: 0 auto;
       padding     :      0 20px;
  display   :flex;
   justify-content: space-between;
    align-items    :       center;
  height: 70px;
}

.navbar-logo {
   display: flex;
  align-items: center;
}


.logo-img
{
    max-height: 74px;
  width: auto; 
	
}

.nav-menu {
   list-style   :    none;
	gap     :       30px;
          display: flex;
}

.nav-link {
        text-decoration: none;
        color: #2c3e50;
  font-weight: 500;
     transition :     color 0.3s ease;
   position: relative;
}

.nav-link:hover{

  color   :   #3498db;
}

.nav-link::after {
  width: 0;
	height: 2px;
   position: absolute;
    left: 0;
  bottom: -5px;
   transition: width 0.3s ease;
   background-color: #3498db;
  content: '';
}

.nav-link:hover::after {
  width: 100%;
	
}

.menu-toggle{
  display: none;
  flex-direction: column;
   cursor:  pointer;
       gap: 6px;
}

.hamburger {
   width: 25px;
    height: 3px;
	 background-color     :       #2c3e50;
   -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
       border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .hamburger:nth-child(1)  {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active .hamburger:nth-child(2) {
   opacity     :0;
}

.menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {

	    max-width: 1200px;
    margin: 0 auto;
  padding     :       80px 20px;
	display : grid;
    grid-template-columns: 1fr 1fr;
  gap: 50px;
	 align-items  : center;}

.hero-content h1
	{


   font-size: 48px;
       color: #1a252f;
   margin-bottom: 20px;
  line-height    :     1.2;
    font-weight     :        700;
}

.hero-subtitle {


   font-size: 18px;
	color:      #555;
	 margin-bottom: 30px;
                    line-height: 1.8;
	
     }

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding  :       14px 40px;
   border-radius: 6px;
  text-decoration: none;
   font-weight    :     600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   cursor :     pointer;
   border: none;
    font-size: 16px;
}

.cta-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3); 
	


}

.hero-img {
  width: 100%;
          height :auto;
  border-radius    :   12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-section 
 {
   background-color: #f8f9fa;
  padding  :      80px 20px;
}

.section-content {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items :     center;
}

.intro-text h2 {
  font-size: 36px;
   color: #1a252f;
    margin-bottom   :     20px;
   font-weight: 700; 
	
}

.intro-text p {
          font-size: 16px;
	 color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
	
}

.intro-img {
  width: 100%;
  height   :        auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefits-section {
   margin :   0 auto;
     padding: 80px 20px;
  max-width: 1200px; 
	
}

.benefits-section h2 {
    color: #1a252f;
  margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
  text-align:       center;
}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: white;
   padding    :    30px;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.benefit-card:hover
	{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
   font-size: 20px;
  color: #1a252f;
  margin-bottom  :      12px;
    font-weight     :  600;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
    line-height :1.7;
}

.process-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                    padding: 80px 20px;
}

.process-section h2 {

               font-size: 36px;
   color: #1a252f;
  margin-bottom: 50px;
   text-align: center;
   font-weight  :  700;

}

.process-content
{
  max-width   :  1200px;
   margin: 0 auto;
   display: grid;
          grid-template-columns: 1fr 1fr;
    gap    :50px;
   align-items  :     center;
}

.process-img {
    width :  100%;
    height   :     auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	
}

.process-steps {
  display: flex;
   flex-direction:  column;
    gap: 20px;
}

.step {
    background: white;
  padding: 25px;
   border-radius: 8px;
          display  :       flex;
    gap: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left  :     4px solid #764ba2;
     }

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   width: 45px;
   height:       45px;
   border-radius     :     50%;
    display: flex;
   align-items :      center;
     justify-content: center;
  font-weight  :   700;
  font-size: 18px;
    flex-shrink: 0;
}

.step h3 {
       font-size: 18px;
   color: #1a252f;
  margin-bottom: 8px;
    font-weight: 600;
}

.step p
	{
     font-size: 14px;
    color: #666;
	line-height   :      1.6;
}

.services-preview {
   max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.services-preview h2 {
    font-size: 36px;
   color: #1a252f;
    margin-bottom: 50px;
  text-align: center;
    font-weight: 700;
}

.services-grid
{
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	       gap  :      30px;
	    margin-bottom: 40px;
}

.service-item {
   background: white;
    padding: 35px;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}


.service-item:hover {

	  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
} 

.service-item h3 {
                       font-size :20px;
  color: #1a252f;
   margin-bottom   :    12px;
  font-weight: 600;
	}

.service-item p {
    font-size: 14px;
   color: #666;
  line-height: 1.7;
}

.service-badge {
	 position: absolute;
 top: 20px;
   right: 20px;
   background:    #667eea;
  color: white;
  padding: 6px 12px;
   border-radius: 20px;
	font-size: 12px;
   font-weight: 600;
}

.services-link {
   font-size: 16px;
    max-width: 200px;
    margin-top: 30px;
    margin-left: auto;
   text-align: center;
   font-weight: 600;
	 margin-right: auto;
   transition: all 0.3s ease;
    padding: 12px 30px;
    border-radius   :    6px;
  display   :block;
  border: 2px solid #667eea;
  text-decoration: none;
	color:       #667eea;
}

.services-link:hover {
  background-color  : #667eea;
   color: white;
}

.transformation-section {


    background-color: #f8f9fa;
   padding: 80px 20px;
}

.transformation-section h2 {
   font-size: 36px;
  color: #1a252f;
   margin-bottom: 50px;
     text-align: center;
    font-weight:   700;
	
}

.transformation-content {

	  max-width: 1200px;
	 margin   :        0 auto;
   display: grid;
  grid-template-columns :  1fr 1fr;
  gap: 50px;
    align-items: center;

}

.transformation-img  
  {
   width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	}


.transformation-testimonials
{
	 display: flex;
    flex-direction :   column;
   gap  :   25px;
}

.testimonial		{
  background: white;
     padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #667eea;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial p {
  font-size: 15px;
  color: #555;
   font-style: italic;
               line-height: 1.8;
   margin-bottom: 12px;
}

.testimonial-author {
   font-size:     13px;
  color    :  #999;
	font-weight: 600;
}

.cta-final-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
         padding: 80px 20px;
 text-align: center;
}

.cta-final-section h2 {
    font-size: 40px;
   margin-bottom: 20px;
   font-weight: 700;

}

.cta-final-section p {
    font-size: 18px;
	 margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button-large {
	 display: inline-block;
  background: white;
    color: #667eea;
   padding: 16px 45px;
  border-radius     :  6px;
   text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 16px;
	border: none;
    cursor: pointer;
}

.cta-button-large:hover  {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
  max-width: 900px;
	margin :       0 auto;
   padding: 80px 20px;
}

.contact-section h2{
    font-size: 36px;
   color: #1a252f;
   margin-bottom: 15px;
	text-align: center;
	font-weight: 700;
}

.contact-intro   {
    font-size: 16px;
    color: #666;
	text-align: center;
   margin-bottom: 40px;
  line-height: 1.8;
}

.contact-form {
   background: white;
  padding: 40px;
        border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
} 

.form-group {
   margin-bottom   :       25px;
}

.form-group label {

	    display :block;
   font-size    : 14px;
   font-weight: 600;
         color: #1a252f;
  margin-bottom    :8px;}

.form-group input,
.form-group textarea,
.form-group select {
      width: 100%;
               padding: 12px 15px;
  border: 1px solid #ddd;
	border-radius     :       6px;
  font-size: 14px;
   font-family:     inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;


}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}



.form-group textarea {
   resize: vertical;
  min-height: 120px;
}

.form-submit	{
  width: 100%;
  padding :       14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	border: none;
   border-radius     :   6px;
    font-size: 16px;
  font-weight: 600;
 cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.info-section 
 {


  background-color: #f8f9fa;
  padding: 50px 20px;}

.info-content {
    max-width: 1200px;
         margin  :      0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap:50px;
}  

.info-block h3 {
    font-size: 18px;
    color: #1a252f;
   margin-bottom: 15px;
  font-weight :    600;
}

.info-block p {
    font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.footer
{
   background-color   :      #1a252f;
   color  : white;
	padding  :     50px 20px 20px;
}

.footer-container {
   max-width: 1200px;
         margin: 0 auto;
  display: grid;
	grid-template-columns: auto 1fr;
      gap: 50px;
   align-items :    flex-start;
    margin-bottom: 30px;
}

.footer-logo-img {
	 max-height: 96px;

	                    width: auto;

	  filter: brightness(0) invert(1); 

}

.footer-content {

	display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap  :   40px;
}

.footer-section h4 {
   font-size: 16px;
  margin-bottom: 15px;
  font-weight:600;


}

.footer-section ul {
	 list-style: none;

}

.footer-section a {
   color: #bbb;
   text-decoration  :       none;
    font-size: 14px;
 transition     :    color 0.3s ease;
   display: block;
   margin-bottom: 10px; 

}

.footer-section a:hover {
  color: white;
}

.footer-section p {


  font-size: 14px;
   color: #bbb;
    line-height: 1.8; 
	
	}

.footer-bottom {
  max-width  : 1200px;
               margin: 0 auto;
	 padding-top: 20px;
   border-top: 1px solid #333;
    text-align: center;
   font-size: 13px;
  color: #888;
}

.cookie-alert {
	position: fixed;
  bottom: 0;
    left: 0;
    right: 0;
					background: white;
  padding: 20px;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
   z-index: 999;
   border-top: 4px solid #667eea;
         display: none;
}

.cookie-alert.show {
  display: block;
  animation: slideUp 0.3s ease;
}@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.cookie-content {
  max-width: 1200px;
         margin: 0 auto;
}



.cookie-content h3 {
   font-size   :   18px;
    color: #1a252f;
   margin-bottom: 10px;
   font-weight :        600;
} 

.cookie-content p {

	   font-size: 14px;
   color: #666;
  margin-bottom  :    15px;


}

.cookie-buttons {
    display: flex;
    gap: 10px;
	flex-wrap: wrap; 
	
}  

.cookie-btn {
  padding   :        10px 20px;
    border: none;
	border-radius: 6px;
    font-size: 13px;
     font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept   {
  background: #667eea;
   color: white;
}

.cookie-btn.accept:hover {

	                    background: #5568d3;
}

.cookie-btn.reject {
    background: #ecf0f1;
  color: #2c3e50;
    border: 1px solid #bdc3c7;
}

.cookie-btn.reject:hover {
    background   :  #dfe6e9;
}

.cookie-btn.settings{
   background    :  white;
                    color: #667eea;
  border: 1px solid #667eea;
	
}

.cookie-btn.settings:hover
{

	        background: #f5f7fa;
     }

.cookie-modal {
   position     :    fixed;
	    top: 0;
	  left: 0;
	  right: 0;
	        bottom: 0;
	  background: rgba(0, 0, 0, 0.5);
	    display: none;
	    align-items: center;
	  justify-content: center;
	    z-index: 1000;
}

.cookie-modal.show
{
  display     :  flex;
}

.modal-content {
	background: white;
   padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {


  font-size: 20px;
	color: #1a252f;
   margin-bottom: 25px;
    font-weight: 600;}

.cookie-options {
   margin-bottom    :30px;
}

.cookie-option {
  margin-bottom: 20px;
   	 padding-bottom :15px;
     border-bottom: 1px solid #eee;
}

.cookie-option label {
   display: flex;
     align-items: center;
                    cursor: pointer;
   margin-bottom: 8px;
}

.cookie-option input {
  margin-right: 10px;
  cursor: pointer;
    width: 18px;
   height: 18px;
}

.cookie-option span {


   font-weight: 600;
    color: #1a252f;
        font-size: 14px;


}

.cookie-option p {
  font-size: 13px;
  color: #999;
  margin: 0;
  margin-left: 28px;
}


.modal-buttons {
   display: flex; 
   gap : 10px;
} 

.modal-btn 
 {
	-moz-border-radius: 6px;
  -webkit-border-radius: 6px;
   padding: 10px 20px;
   border: none;
   border-radius: 6px;
  font-size  :   14px;
                    font-weight: 600;
  -webkit-flex: 1;
   cursor: pointer;
    -webkit-transition: all 0.3s ease;
      -ms-flex: 1;
   -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
	flex: 1;
}  

.modal-btn {
    background: #667eea;

	   color: white;
}

.modal-btn:hover {
   background: #5568d3;
}



.modal-btn.secondary {
  background: #ecf0f1;
    color: #2c3e50;
}

.modal-btn.secondary:hover {
    background: #dfe6e9;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        max-height: 300px;
    }
    
    .nav-item {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
    }
    
    .process-content {
        grid-template-columns: 1fr;
    }
    
    .transformation-content {
        grid-template-columns: 1fr;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .benefits-section h2,
    .services-preview h2,
    .process-section h2,
    .transformation-section h2,
    .contact-section h2,
    .cta-final-section h2 {
        font-size: 28px;
    }
}.services-hero

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

   color: white;

  padding: 80px 20px;

   text-align: center;
}

.hero-content-services h1 {


    font-size: 44px;
     margin-bottom: 15px;
   	font-weight: 700;
      line-height: 1.2;
}

.hero-subtitle-services     {
    font-size    :   18px;
    margin-bottom: 0;
   opacity: 0.95;
   line-height: 1.8;
  max-width: 700px;
  margin-left    :     auto;
  margin-right:      auto;
}

.services-container {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.services-main  {
    padding    :        80px 20px;
}

.service-card-full {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap:    50px;
               align-items: center;
    margin-bottom     :   100px;
}

.service-card-full.reverse {

	    grid-template-columns: 1fr 1fr;


}

.service-card-full.reverse .service-image {
    order: 2;
}

.service-card-full.reverse .service-details {
  order  :      1; 
	
}

.service-image {

  overflow    :hidden;
}

.service-img-full {
  width: 100%;
       height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.service-image:hover .service-img-full {
  transform: scale(1.03);
}

.service-details h2 {
    font-size: 32px;
   color: #1a252f;
  margin-bottom: 12px;
        font-weight: 700;
}

.service-intro {
  margin-bottom: 25px;
  color: #667eea;
    font-size: 16px;
         font-weight: 600;
}

.service-details h3 {
   font-size: 18px;
	color: #1a252f;
   margin-top: 22px;
  margin-bottom   : 12px;
   font-weight: 600;
}

.service-details p {
         font-size: 14px;

   color: #666;

    line-height: 1.8;

  margin-bottom: 15px;
}

.service-features    {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 14px;
  color   : #666;
  padding-left: 25px;
  position     :  relative;
  margin-bottom: 10px;
    line-height :        1.6;
}

.service-features li::before {
  content: '✓';
  position: absolute;
    left: 0;
    color: #667eea;
  font-weight: 700;
	 font-size  : 16px;
}

.service-pricing {
  background: #f8f9fa;
    padding: 20px;
  border-radius: 8px;
    margin: 25px 0;
          border-left: 4px solid #667eea;
}

.price {
    display: block;
	font-size: 28px;
	 font-weight: 700;
   color: #1a252f;
  margin-bottom: 5px;
}

.price-period    {
      display: block;
	 font-size: 13px;
  color: #999;
}

.service-cta		{
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding:     12px 30px;
  border-radius: 6px;
  text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-top: 20px;
     }

.service-cta:hover {

  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
	}

.comparison-section {
	    background-color: #f8f9fa;
    padding: 80px 20px;

}

.comparison-section h2 {
	 font-size: 36px;

	 color    :        #1a252f;

    margin-bottom: 50px;

                    text-align: center;

    font-weight: 700;
}

.comparison-table {
	margin: 0 auto;
    overflow-x  :   auto;
  max-width: 1200px;
}

table {
  width: 100%;
    border-collapse    :      collapse;
        background: white;
   border-radius: 8px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

th {
   font-size: 14px;
       text-align: left;
	 padding:   20px;
  font-weight    :      600;
}

td     {
 padding    :18px 20px; 
                    border-bottom: 1px solid #eee; 
    font-size: 14px; 
	color   : #666;
}

tbody tr:hover {
   background-color : #f8f9fa;
}

td.check {
   color: #27ae60;
  font-weight     :   700;
	font-size: 18px;
}

td.cross {
   color   :        #e74c3c;
  font-weight: 700;
  font-size: 18px;
}

.faq-section {
    max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;


}

.faq-section h2 {
   font-size     :        36px; 
	   color: #1a252f; 
	   margin-bottom: 50px; 
	    text-align: center; 
	  font-weight: 700;
}

.faq-container {
  display: flex;
  flex-direction: column;
    gap: 20px;
}

.faq-item{
	  background: white;
    padding: 25px;
    border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #667eea;
   transition: all 0.3s ease;

}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-question{
  font-size: 16px;
	 color: #1a252f;
         margin-bottom: 12px;
   font-weight: 600;
    cursor   :pointer;
   user-select: none;

}

.faq-answer  {
    font-size: 14px;
    color: #666;
   line-height: 1.8;
  margin: 0;
	
}

.testimonials-services {
       background-color: #f8f9fa;
        padding   :     80px 20px;
}

.testimonials-services h2 {
  font-size: 36px;
   color: #1a252f;
    margin-bottom: 50px;
    text-align: center;
   font-weight  :  700;
}

.testimonials-grid {

	   max-width: 1200px;
	margin: 0 auto;
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
	

}

.testimonial-card   {
  background: white;
   padding: 30px;
    border-radius     : 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top :       4px solid #667eea;
}

.testimonial-text
{
  font-style   :    italic;
   font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height   : 1.8;

}

.testimonial-author {
  font-size: 13px;
    color:     #1a252f;
    font-weight: 600;
  margin-bottom: 5px;
	
}

.testimonial-service {
    font-size: 12px;
  color: #999;
}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

		 color: white;

	   padding: 80px 20px;

	   text-align: center;
}

.cta-services h2 
 {
 font-size   : 40px;
   margin-bottom     :        20px;
   font-weight: 700;


}

.cta-services p {
    font-size: 18px;
		 margin-bottom: 30px;
               line-height: 1.8;
    max-width    :600px;
  margin-left     :       auto;
   margin-right: auto;
}

.cta-button-services {
  display: inline-block;
    background: white;
  color: #667eea;
      padding: 16px 45px;
  border-radius   :       6px;
  text-decoration: none;
    font-weight: 700;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
}


.cta-button-services:hover {
  transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);


}

.thankyou-hero {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :       white;
  padding: 120px 20px;
   text-align: center;
   min-height:   500px;
     display: flex;
  align-items: center;
   justify-content: center;


}

.thankyou-content {
    animation: fadeInScale 0.6s ease;
}@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.success-icon {
  color :        #00ff88;
   margin-bottom: 30px;
      display: flex;
  justify-content: center;
}

.success-icon svg     {
    stroke: currentColor;
   fill: none;
}

.thankyou-hero h1    {
  font-size: 48px;
    margin-bottom: 15px;
  font-weight: 700;
}

.thankyou-message {


    font-size: 20px;
    opacity:        0.95;


}

.confirmation-section{
   padding: 80px 20px;
    background-color: #f8f9fa;
}

.confirmation-container {
  max-width: 1100px;
     margin: 0 auto;
    display: grid;
 grid-template-columns: 1fr 1fr;
   gap: 50px;
}

.confirmation-card {
   background: white;
    padding: 40px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}  

.confirmation-card h2 {
  font-size: 28px;
  color: #1a252f;
  margin-bottom: 20px;
   font-weight: 700;
}

.confirmation-card p


{
   font-size: 15px;
  color: #666;
   line-height: 1.8;
   margin-bottom: 25px;
}

.details-box {

	    background    :        #f8f9fa;
  padding: 25px;
    border-radius  :     8px;
    margin: 25px 0;
    border-left: 4px solid #667eea;
	}

.details-box h3 {
  font-weight: 600;
   color: #1a252f;
  margin-bottom: 15px;
   font-size: 16px;
}

.details-content {
  display :        flex;
  flex-direction: column;
   gap: 12px; 

}

.detail-item {
	display  :        flex;

  flex-direction: column;

}

.detail-label {
               font-size: 12px;
      color: #999;
   font-weight   : 600;
   text-transform: uppercase; 
	
}  

.detail-value {
  font-size: 14px;
   color: #1a252f;
    font-weight: 500;
}

.next-steps {
  margin-top: 25px;
}

.next-steps h3 {
   font-size :        16px;

	   color: #1a252f;

	    margin-bottom: 15px;

	    font-weight: 600;
}

.steps-list {
   list-style: none;
  counter-reset   :    step;
}

.steps-list li {
    counter-increment     : step;
    padding-left: 35px;
    position: relative;
  margin-bottom: 12px;
   font-size    :        14px;
   color: #666;
   line-height: 1.6;
}

.steps-list li::before {
  content: counter(step);
   position: absolute;
	left  :  0;
         top    : 0;
     background: #667eea;
	color: white;
	width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;
         font-size: 12px;
	font-weight: 700;
}

.help-section {
      -webkit-border-radius:    8px;
   background: #fff3cd;
 padding: 20px;
  border-radius: 8px;
  margin-top: 25px;
  border-left: 4px solid #ffc107; 

     }

.help-section h3 {
    font-size: 16px;
   color: #1a252f;
	margin-bottom: 10px;
	 font-weight: 600;
	
}

.help-section p {
   font-size:        13px;
  color     :      #666;
    margin: 8px 0;
	
}

.contact-info-thank {
  margin-top: 12px;
}

.contact-info-thank p  
  {
   font-size: 13px;
   color: #1a252f;
    margin: 5px 0;
}

.recommended-services {
   background: white;
    padding: 40px;
	border-radius    :        12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);


} 

.recommended-services h2 {
  color: #1a252f;
   font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}

.service-intro {
  font-size: 14px; 
		color: #666; 
	  margin-bottom   :      25px;
}

.recommended-grid {
  display :        flex;
                    flex-direction: column;
	gap: 15px;


}

.recommended-item {
  background: #f8f9fa;
  padding  : 20px;
    border-radius: 8px;
    border-left  :  3px solid #667eea;
   transition: all 0.3s ease;

}

.recommended-item:hover {
    background: #fff;
  box-shadow: 0 3px 12px rgba(102, 126, 234, 0.15); 
	
}

.recommended-item h4 {
   font-size: 15px;
  color: #1a252f;
  margin-bottom    :8px;
	font-weight:      600;
}

.recommended-item p {
	 font-size   :      13px;
	 color: #666;
    margin-bottom: 10px;
	}

.recommended-item a     {

   font-size: 13px;

	   color:      #667eea;

	  text-decoration: none;

	    font-weight     : 600;

	   transition:   color 0.3s ease;
}

.recommended-item a:hover {
  color: #764ba2;
}

.return-section  {
    padding: 80px 20px;
               text-align :       center; 
	
}

.return-section h2 {
	font-size :      32px;
  margin-bottom: 15px;
   color: #1a252f;
    font-weight: 700;
}

.return-section p {
  font-size  :     16px;
    color: #666;
      margin-bottom    :        40px;
   line-height    : 1.8;
	max-width: 600px;
    margin-left:        auto;
  margin-right: auto;
}

.return-buttons {
   display: flex;
       gap: 20px;
    justify-content  : center;
  flex-wrap   :    wrap;
}

.return-btn {
	display: inline-block; 
  padding: 14px 40px; 
  border-radius: 6px; 
                    text-decoration: none; 
  font-weight: 600; 
	transition: all 0.3s ease;
	
}

.return-btn.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.return-btn.primary:hover 
 {
  transform: translateY(-2px); 
	  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.return-btn.secondary {
  background  :       white;
   color: #667eea;
    border   :  2px solid #667eea;
}  

.return-btn.secondary:hover {
      background: #667eea;
   color     :        white;
} @media (max-width: 768px) {
    .service-card-full {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .service-card-full.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-card-full.reverse .service-image {
        order: unset;
    }
    
    .service-card-full.reverse .service-details {
        order: unset;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    th, td {
        padding: 12px 8px;
    }
    
    .confirmation-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .return-buttons {
        flex-direction: column;
    }
    
    .return-btn {
        width: 100%;
    }
    
    .thankyou-hero {
        padding: 60px 20px;
        min-height: 350px;
    }
    
    .thankyou-hero h1 {
        font-size: 32px;
    }
    
    .thankyou-message {
        font-size: 16px;
    }
    
    .services-hero {
        padding: 50px 20px;
    }
    
    .hero-content-services h1 {
        font-size: 32px;
    }
    
    .hero-subtitle-services {
        font-size: 16px;
    }
}.policySection {
    background: #f8f9fa;
   padding: 80px 2rem;
}

.policyContainer {
    max-width: 900px;
	  margin: 0 auto;
	   text-align: left;
	  background: white;
	  padding: 50px 40px;
	  border-radius: 10px;
	  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
    font-size: 2.8rem;
        color: #1a252f;
  margin-bottom: 40px;
    font-weight   :   700;
  border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.policyContainer h2 {
  color  :      #667eea;
    color    :#1a252f;
  margin-top: 35px;
	 margin-bottom   :      15px;
  font-weight: 700;
    font-size: 1.8rem;
}

.policyContainer p {
  color: #666;
  margin-bottom: 15px;
   line-height   :        1.8;
   font-size: 0.95rem;
}

.policyContainer strong {
    color: #1a252f;
  font-weight: 600;
}

.policyContainer p:first-child {
    font-size : 1.05rem;
  color: #555;
       margin-bottom: 25px;
}@media (max-width: 768px) {
    .policyContainer {
        padding: 30px 20px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 25px;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer {
        padding: 20px 15px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
    }

    .policySection {
        padding: 40px 0.5rem;
    }
}