* {
   margin: 0; 
	    box-sizing: border-box; 
	  padding   :    0;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
       color: #2c3e50;
  background-color    :  #f8f9fa;
}
/* TODO: optimize for mobile */

/* Generated styles */


.navbar	{

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding :     1rem 0;
         position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);




}

.navbar-container {
    max-width   :1200px;
   margin: 0 auto;
    padding: 0 2rem;
   display   : flex;
  justify-content: space-between;
    align-items: center;
}
/* Experimental feature */
/* Auto-generated CSS */


/* Development only */

.navbar-logo {
   flex-shrink: 0;
}

.logo-img {


 height: 45px;
		width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu	{
  display: flex; 
			list-style: none; 
	    gap: 2rem; 
	  align-items   :  center;
}

.nav-menu a {
    color: white;
    font-weight: 500;
  transition: opacity 0.3s ease;
  text-decoration  :none;
  font-size: 1rem;
}

/* Typography */

.nav-menu a:hover

{
   opacity: 0.8;
}

.burger-menu {
    display: none;
	flex-direction: column;
  background: transparent;
  border: none;
   cursor: pointer;
	gap: 6px;
}

.burger-menu span  
  {
	width: 25px;
          height: 3px;
   background-color    :  white;
  border-radius: 3px;
    transition: all 0.3s ease;
}


.burger-menu.active span:nth-child(1)   {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {

  transform: rotate(-45deg) translate(7px, -7px);}

.hero {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color    :     white;
    padding    :    4rem 2rem;
    display: flex;
    align-items: center;
   gap     :    3rem;
	max-width: 1200px;
    margin: 0 auto;

}

.hero-content {

   -ms-flex    :1;
    flex: 1;
  -webkit-flex: 1;
    -moz-animation: slideInLeft 0.8s ease;
  -webkit-animation: slideInLeft 0.8s ease;
    animation    :       slideInLeft 0.8s ease;}

/* Temporary fix */

.hero-content h1 {
     font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    font-size: 3rem;
	}

.hero-content p {

	   font-size: 1.2rem;
  margin-bottom :  2rem;
    opacity: 0.95;
     }
/* FIXME: IE11 compatibility */



/* Custom modifications */


.cta-button {
  display: inline-block;

  padding: 0.8rem 2rem;

  background: white;

   color     :      #667eea;

	text-decoration: none;

 border-radius: 50px;

   font-weight  :       600;

  transition: all 0.3s ease;

       cursor:   pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-image {


   flex: 1;
	   animation: slideInRight 0.8s ease;
	}
/* Custom modifications */

.hero-image img  {
    width    :        100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about {
    padding: 4rem 2rem;
  background: white;
}

.about-container   {
    max-width: 1200px;

	  margin: 0 auto;
}

.about-container h2 {

               font-size: 2.5rem;
   margin-bottom: 1rem;
   text-align: center;
   color: #667eea;
     }

.about-container > p {
    font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
	color: #555;
}

.features-grid {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                       gap: 2rem;
       margin-top: 2rem;
}

.feature-card {
	padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   border-radius   :      12px;
   transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.feature-card h3 {


	color: #667eea;
  margin-bottom: 1rem;
    font-size: 1.4rem;
     }

.feature-card p {
   color: #555;
   font-size: 0.95rem;
         line-height: 1.7;
	
}

.showcase {
  display     :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
               padding: 4rem 2rem;
    max-width: 1200px;
    margin :        0 auto;
          background: white;
}

.showcase-item {
  border-radius: 12px; 
   overflow: hidden; 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    transition:   all 0.3s ease;
}

/* Hack for old browsers */
	/* FIXME: IE11 compatibility */
.showcase-item:hover	{

	  transform: scale(1.02);
     box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.showcase-item img  {
       width: 100%;
   height: 250px;
 object-fit: cover;
} 

.showcase-item h3 {
	 padding: 1.5rem 1.5rem 0.5rem;
   color: #667eea;
    font-size   :      1.3rem;
}

.showcase-item p {
       padding: 0 1.5rem 1.5rem;
    color: #555;
    font-size   :      0.95rem; 
	
}

.services-preview {
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-preview h2 {
     margin-bottom: 3rem;
   color: #667eea;
  font-size  :     2.5rem;
       text-align: center;
}

/* Build system output */

.services-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap     :       2rem;
   max-width: 1200px;
        margin   :0 auto; 

}

.service-item {
	 background: white;
   padding: 2rem;
    border-radius: 12px;
   text-align    :center;
   transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
/* Framework override */


/* Layout styles */



/* Browser compatibility */


/* Experimental feature */

.service-item:hover {
  transform: translateY(-8px); 
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.15);
}

.service-icon {
			margin-bottom: 1rem;
	height: 60px;
    display  :      flex;
   justify-content    :  center;
		 align-items: center;
	
}

.service-icon img  
  {
   width: 50px; 
    height: 50px; 
       stroke: #667eea;
}

.service-item h3 {
    color: #667eea; 
	   margin-bottom: 1rem; 
	    font-size: 1.2rem; 

}  

.service-item p {
	    color: #666;
   font-size: 0.95rem;
    line-height: 1.6;


}

.young-professionals {

	  display : flex;
    align-items: center;
  gap: 3rem;
     padding: 4rem 2rem;
   background: white;
	max-width: 1200px;
   margin: 0 auto;


}

.young-professionals img {
  flex: 1;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.young-prof-content {
   flex     : 1;
}

.young-prof-content h2 {
  font-size: 2.2rem;
   color: #667eea;
	 margin-bottom: 1rem; 
	
}

.young-prof-content p {
    font-size: 1rem;
   color: #555;
    margin-bottom: 1.5rem;
   line-height: 1.8;
}


.benefits-list {
   list-style: none;

}

.benefits-list li {
               padding:        0.8rem 0;
  padding-left: 2rem;
    color: #555;
    position: relative;
   font-size :   0.95rem;
}

.benefits-list li:before {
	  content: '✓';
  position: absolute;
  left: 0;
   color: #667eea;
					font-weight:      bold;
    font-size: 1.2rem;}

.cta-section {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
   color  :  white;
  padding: 3rem 2rem;
    text-align   :     center;
}

/* Hack for old browsers */

.cta-section h2 {
   font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
   opacity: 0.95;
}

.cta-button-primary {
  display: inline-block;
   padding: 0.9rem 2.5rem;
	background: white;
  color  :     #667eea;
	 text-decoration     :     none;
 border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
     font-size    :  1rem;
}
	/* Vendor-specific */

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
/* Hack for old browsers */

/* Typography */

.contact {
     padding: 4rem 2rem;
   background: white; 
	
}

/* Minified version */


.contact h2 {
  font-size: 2.5rem;
  text-align: center;
    color: #667eea;
   margin-bottom: 3rem;
}

.contact-container {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
    max-width:   1200px;
	margin: 0 auto;
}



.contact-form     {
   flex-direction: column;
  gap: 1rem;
   display: flex;
}

.form-group    {
	display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 0.9rem;
  border: 2px solid #e0e0e0;
 border-radius: 8px;
  font-family: inherit;
   font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

	  outline  :none;
	border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	}

.submit-button {
   padding     :        1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    border: none;
  border-radius: 8px;
  font-weight: 600;
    font-size: 1rem;
  cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3); 
	
}

.contact-info  {
  padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    display: flex;
  flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
  color : #667eea;
    margin-bottom  :   1.5rem;
       font-size: 1.4rem;
}

.contact-info p {
	    margin-bottom: 1rem;
    color     :   #555;
  font-size: 0.95rem;
   line-height: 1.8;}

.contact-info strong {
    color    :  #667eea;


} 

.footer {
   background: #2c3e50;
  color: white;
	padding: 3rem 2rem 1rem;
}
/* Animation and transitions */


/* Animation and transitions */
.footer-container {
   margin-bottom: 2rem;
    display  :   grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
   max-width: 1200px;
   gap: 2rem;
    margin: 0 auto;
}
/* Production ready */

.footer-logo {
	               display: flex;
  align-items: center;


}  

.footer-logo-img  {


    height: 40px;
   width: auto;
  filter: brightness(0) invert(1);}

.footer-section h4		{
    font-size: 1rem;
   margin-bottom   : 1rem;
	color: #667eea;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom:       0.5rem; 
	
}

.footer-section a 
 {
  color: #bbb;
   text-decoration: none;
	font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover
{
   color: #667eea;
}

.footer-section p {
    font-size: 0.9rem;
  color: #bbb;
        line-height: 1.6;
}

.footer-bottom
	{
    text-align: center;

	   padding-top: 2rem;

	   border-top: 1px solid #444;

	     color: #999;

	  font-size: 0.85rem;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        align-items: stretch;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        text-align: center;
        padding: 0.8rem 0;
    }

    .nav-menu a {
        display: block;
    }

    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .young-professionals {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container h2,
    .services-preview h2,
    .cta-section h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .young-prof-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero {
        gap: 1.5rem;
    }

    .features-grid,
    .services-container,
    .showcase {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .about-container h2,
    .services-preview h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 0;
    }
}.services-hero {
	  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color   :       white;
   padding :    3rem 2rem;
	text-align: center;
   min-height: 300px;
   display: flex;
   flex-direction  : column;
 justify-content: center;
   align-items: center;
}  

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
   font-weight   :     700;
}

.services-hero p {


   font-size: 1.2rem;
  opacity: 0.95;
   max-width: 600px;
     }

.services-main {

	  background: white;
    padding: 3rem 2rem;

}

.services-main-container {
  max-width: 1200px;
    margin: 0 auto;


}

.service-card-full {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
   margin-bottom: 4rem;
   animation: fadeInUp 0.8s ease;
}

.service-card-full.alternate     {
	   direction:    rtl;

}

.service-card-full.alternate > * {


   direction: ltr;
     }

.service-card-image {
  overflow: hidden;
 border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card-image img {
	width: 100%;
  height: 350px;
    object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-full:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content h2 {
   color: #667eea; 
	  margin-bottom     :1rem; 
	  font-size:  2rem;
}

.service-card-content > p {
  font-size: 1rem;
    color: #555;
  line-height: 1.8;
    margin-bottom   :  2rem;
}

.service-details {
   margin     :      2rem 0;
   padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   border-radius: 12px;
   border-left: 4px solid #667eea;
}

.service-details h3 {
  color: #667eea;

	   margin-bottom: 1rem;

	  font-size   :  1.1rem;
}

.service-list {
  list-style: none;
      padding: 0;
}

.service-list li {
    padding: 0.6rem 0;
  color: #555;
  padding-left: 1.8rem;
    position: relative;
   font-size  :0.95rem;
}

.service-list li:before {
  content: '→';
  position: absolute;
   left :      0;
    color: #667eea;
          font-weight   :       bold;
}

.service-pricing {
  display: flex;
  align-items: baseline;
   gap: 1rem;
          margin: 1.5rem 0;
     padding: 1rem;
	background: white;
  border-radius :      8px;
    border: 2px solid #667eea;
}

.price-label {
    color :        #555;
 font-weight     :     500;
   font-size: 0.95rem;
}

.price-value {
    color: #667eea;
	 font-weight: 700;
    font-size: 1.4rem;
}

.service-cta		{
  display: inline-block;
     padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :      white;
          text-decoration: none;
  border-radius    :   8px;
   font-weight: 600;
    transition:all 0.3s ease;
   margin-top: 1rem;
}

.service-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.services-comparison {
    padding: 3rem 2rem;

  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-comparison h2 {
   font-size: 2.2rem;
      text-align:       center;
      color: #667eea;
       margin-bottom: 2rem;
}

.comparison-table {
  max-width: 1200px;
  margin: 0 auto;
      overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
  background  :   white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   border-radius: 12px;
				 overflow: hidden;
}

thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

th {

    padding: 1.2rem;
    text-align: left;
   font-weight: 600;
	 font-size: 0.95rem;


     }

td {
    padding: 1rem 1.2rem;
   border-bottom: 1px solid #e0e0e0;
  color: #555;
	font-size:  0.9rem;
}

tbody tr:last-child td {
          border-bottom: none;
}

tbody tr:hover {
    background: #f8f9fa;
}

tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.why-choose {
    padding    :        3rem 2rem;
 background:    white;
}

.why-choose h2 {
	 font-size: 2.2rem;
      text-align: center;
     color: #667eea;
     margin-bottom: 3rem;
}

.choose-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
   max-width: 1200px;
  margin :   0 auto;
}

.choose-item		{
    padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
       text-align     :     center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.choose-item:hover {
  transform: translateY(-5px);
      border-color    :        #667eea;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
	
}

.choose-item h3 {
    color: #667eea;
  margin-bottom: 1rem;
    font-size: 1.2rem;
}

.choose-item p{
	 color: #555;
   font-size: 0.95rem;
  line-height: 1.6;
}



.testimonials {
    padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     }

.testimonials h2 {
 color:       #667eea;
   margin-bottom : 3rem;
  text-align: center;
   font-size: 2.2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
  margin   :     0 auto;
}

.testimonial-card {

    padding     :       2rem;
   background: white;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
   border-left: 4px solid #667eea;
     }

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
	
}

.testimonial-text {
    color: #555;
                  font-size: 0.95rem;
      line-height: 1.8;
       font-style  :        italic;
       margin-bottom     :        1rem;
}

.testimonial-author {
  color: #667eea;
   	 font-weight: 600;
   			font-size :     0.9rem;
}

.cta-services {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
       padding: 3rem 2rem;
    text-align   : center;


}

.cta-services h2 {
      font-size: 2.2rem;
   margin-bottom    :       1rem;
     }

.cta-services p {
  font-size   :  1.1rem;
	    margin-bottom: 2rem;
	    opacity: 0.95;
     }

.cta-button-services {
   display: inline-block;

        padding: 1rem 2.5rem;

   background: white;

  color:      #667eea;

               text-decoration: none;

  border-radius    :    50px;

   font-weight: 600;

    transition: all 0.3s ease;

    font-size: 1rem;
}

.cta-button-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.thank-you-section {
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
				 min-height: 600px;
        display:flex;
  align-items: center;
}



.thank-you-container {
  max-width: 800px;
    margin    :      0 auto;
  text-align     : center;
   animation: fadeInScale 0.8s ease;
}  

.thank-you-icon {
    margin-bottom: 2rem;
  font-size: 4rem;
}

.thank-you-icon img {

		width: 80px;
	height: 80px;
    stroke   :   white;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.thank-you-section h1 {
   font-size: 2.8rem;
					 margin-bottom: 1rem;
		font-weight :700;
}  

.thank-you-subtitle {
	font-size: 1.2rem;
  opacity: 0.95;
    margin-bottom: 3rem;
}

.thank-you-content {
  background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
   border-radius: 15px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.thank-you-content h2     {
  font-size: 1.8rem;
     margin-bottom: 2rem;

}

.next-steps {
  display: flex;
    flex-direction: column;
  gap: 1.5rem;
  text-align     :left;
}

.step {
          display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number
	{
	    min-width: 50px;
    width: 50px;
    height: 50px;
   background: white;
    color: #667eea;
	 border-radius    :50%;
   display:     flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
		flex-shrink: 0;}



.step-content h3     {
	font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p {

    font-size: 0.95rem;
    opacity: 0.9;
     }

.thank-you-additional    {
  background: rgba(255, 255, 255, 0.1);
	    padding: 2rem;
	    border-radius: 15px;
	  backdrop-filter: blur(10px);
	        margin-bottom: 2rem;
	  border: 1px solid rgba(255, 255, 255, 0.2);
	   text-align     : left;
}

.thank-you-additional h2 {
        font-size: 1.6rem;
   margin-bottom  :      1rem;
	text-align: center;


	}

.additional-content p {
  font-size: 1rem;
	 margin-bottom: 1rem;
}

.preparation-list {
   list-style: none;
    padding   :   0;
}

.preparation-list li {
 position: relative;
   padding-left    :    2rem;
               font-size: 0.95rem;
   padding: 0.8rem 0;
}

.preparation-list li:before {
    position: absolute;
  content: '✓';
  left: 0;
   font-size:  1.2rem;
   font-weight: bold;
}

.thank-you-links {
  display :  flex;
   gap: 1rem;
       justify-content   :center;
  flex-wrap  : wrap;
}

.thank-you-button	{
	display: inline-block;
  padding: 0.9rem 2rem;
   background: white;
  color: #667eea;
   text-decoration: none;
    border-radius: 50px;
  font-weight :     600;
	transition: all 0.3s ease;
    font-size: 0.95rem;
}

.thank-you-button:hover 
 {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.thank-you-button.secondary {
               background: transparent;
   border: 2px solid white;
}

.thank-you-button.secondary:hover {
    background: white;
}

.other-services {
   padding: 3rem 2rem;
   background: white;
}

.other-services h2 {
  font-size    :        2rem;
	 text-align: center;
   color: #667eea;
       margin-bottom: 2rem; 

}

.services-other-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
    max-width   :        1200px;
    margin: 0 auto;
}

.service-other-card {
               padding    :   2rem; 
	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
	    border-radius   :        12px; 
	   text-align    :   center; 
	    transition: all 0.3s ease;
}

.service-other-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.service-other-card h3 {
   color:    #667eea;
   margin-bottom: 1rem;
  font-size: 1.2rem;

}

.service-other-card p {
   color: #555;
    font-size   :    0.95rem;
   margin-bottom     :  1.5rem;
    line-height: 1.6;
}

.service-other-card a     {
  display: inline-block; 
  color: #667eea; 
  text-decoration: none; 
    font-weight: 600; 
  padding   :        0.5rem 1rem; 
  border: 2px solid #667eea; 
  border-radius: 8px; 
    transition: all 0.3s ease;
}



.service-other-card a:hover {
  color   :  white;
    background: #667eea;
}

.faq-section {
    padding     :      3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section h2 {
    text-align: center;
    color: #667eea;
   font-size: 2rem;
       margin-bottom: 2rem;
}

.faq-container {
    max-width: 800px;
        margin :     0 auto;
}

.faq-item {
  margin-bottom: 1rem;
	background: white;
  border-radius    :      12px;
   overflow    :     hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {


  background: white;
    font-weight: 600;
	 width     :100%;
  border :    none;
       transition: all 0.3s ease;
  justify-content: space-between;
    align-items: center;
    color: #667eea;
    font-size: 1rem;
    padding: 1.5rem;
  display: flex;
   cursor: pointer;
	}

.faq-question:hover {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.faq-icon {
  width: 20px;
  height: 20px;
   stroke: #667eea;
  transition: transform 0.3s ease; 
	
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {


  max-height: 0;
    overflow: hidden;
       transition: max-height 0.3s ease;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
        padding: 1rem 1.5rem;
   color     :     #555;
    font-size: 0.95rem;
    line-height    : 1.6;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-card-full,
    .service-card-full.alternate {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
        margin-bottom: 3rem;
    }

    .service-card-full.alternate > * {
        direction: ltr;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 0.8rem;
    }

    .choose-grid,
    .testimonials-grid,
    .services-other-grid {
        grid-template-columns: 1fr;
    }

    .next-steps {
        gap: 1rem;
    }

    .step {
        gap: 1rem;
    }

    .thank-you-links {
        flex-direction: column;
    }

    .thank-you-button {
        width: 100%;
    }

    .cta-services h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-card-full {
        margin-bottom: 2rem;
    }

    .service-card-content h2 {
        font-size: 1.4rem;
    }

    .service-details {
        padding: 1.5rem;
    }

    table {
        font-size: 0.75rem;
    }

    th, td {
        padding: 0.5rem;
    }

    .choose-item,
    .testimonial-card {
        padding: 1.5rem;
    }

    .thank-you-section {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .thank-you-container {
        padding: 1rem;
    }

    .thank-you-section h1 {
        font-size: 1.6rem;
    }

    .step-number {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}.policy-section {
    padding: 80px 2rem;
    background: white;
  min-height: calc(100vh - 400px);
}

.policy-container {
     max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.policy-container h1 {
  font-size: 2.8rem;
   color: #667eea;
   margin-bottom :  2rem;
  font-weight: 700;
          border-bottom: 3px solid #667eea;
  padding-bottom: 1rem;
}

.policy-container h2 {
   font-size: 1.8rem;
	  color: #2c3e50;
			 margin-top   :2rem;
	    margin-bottom: 1rem;
	    font-weight: 600;
	   position: relative;
	    padding-left: 1.5rem;
	}

.policy-container h2:before {
  content: '';
    position: absolute;
  left: 0;
  top: 0;
   bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.policy-container p {
  line-height: 1.8;
   color: #555;
  margin-bottom  :       1.5rem;
   font-size: 1rem;
}

.policy-list    {
    list-style: none;
   padding: 0;
  margin   :    1.5rem 0;
}

.policy-list li {
		padding:   1rem;
    margin-bottom: 1rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   border-left: 4px solid #667eea;
    border-radius :6px;
     color: #555;
   line-height: 1.7;
    font-size   :        0.95rem;
  transition: all 0.3s ease;
}

.policy-list li:hover {
  transform: translateX(5px);

	  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
     }

.policy-list li strong
{
                    color: #667eea;
    font-weight: 600;
}

.policy-footer {
      margin-top: 3rem;
    padding-top: 2rem;
               border-top: 2px solid #e0e0e0;
    color: #999;
    font-size: 0.9rem;
  font-style: italic;

}

.policy-container h1,
.policy-container h2,
.policy-container p,
.policy-list li   {
   animation: fadeInUp 0.6s ease; 

}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1.5rem;
        min-height: calc(100vh - 300px);
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .policy-list li {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
        padding-left: 1rem;
    }

    .policy-container h2:before {
        width: 3px;
    }

    .policy-container p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .policy-list li {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
        font-size: 0.85rem;
        border-left-width: 3px;
    }

    .policy-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}