*		{
  margin     :      0;
   padding: 0;
      box-sizing: border-box;
     }

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --secondary-accent: #e74c3c;
    --light-bg: #ecf0f1;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-radius: 8px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior   :   smooth;
}

body
{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
    background: #ffffff;
}

.navbar {
  background: var(--primary-color);
 padding: 1rem 0;
  position     :        sticky;
   top: 0;
			z-index :   100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {


    max-width: 1200px;
    margin: 0 auto;
  padding   :  0 20px;
    display  :    flex;
  justify-content: space-between;
   align-items: center;
     }



.nav-branding {
    flex-shrink  : 0;
}

.nav-logo {
    height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
} 

.nav-menu {
   display: flex;
    list-style  :     none;
  gap     :       2.5rem;
}

.nav-item {
   position: relative;
}

.nav-link {
        color: #ffffff;
    text-decoration :      none;
   font-weight :     500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
   display: block;
  transition: var(--transition);
   position: relative;
}

.nav-link::after {
  content: '';
   position: absolute;
   bottom: 0;
  left: 0;
          width: 0;
    height: 2px;
  background: var(--accent-color);
                    transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;


}

.hamburger {
  display: none;
  flex-direction  :       column;
    cursor:       pointer;
  gap: 6px; 
	
}

.hamburger span {
    width :  25px; 
	  height: 3px; 
	    background: #ffffff; 
		border-radius    :        2px; 
	  transition: var(--transition);
}

.hero-section {
	max-width: 1200px;
  margin: 0 auto;
    padding: 80px 20px;
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;
}

.hero-content h1 {
	font-size :     2.8rem;

		font-weight: 700;

	   line-height: 1.2;

	    margin-bottom: 1.5rem;

	  color: var(--text-dark);


}

.hero-content p {
    font-size  : 1.1rem;
  color: var(--text-light);
    margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
   color: #ffffff;
    padding: 14px 32px;
  border-radius: var(--border-radius);
    text-decoration :       none;
   font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--accent-color);
}

.cta-button:hover     {


  background: transparent;
     color: var(--accent-color);
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);}

.hero-image img {
      width: 100%;
    height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.services-preview {
	  background: var(--light-bg);
    padding: 80px 20px;}

.section-header {
  text-align: center;
	max-width: 700px;
   margin    :    0 auto 3rem;
}

.section-header h2 {

		 font-size: 2.2rem;
	    margin-bottom: 1rem;
	  color: var(--text-dark);
	}

.section-header p {

       font-size: 1rem;
  color: var(--text-light);

}

.services-grid {
  max-width: 1200px;
      margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
}

.service-card {
   background    :       #ffffff;
  border-radius: var(--border-radius);
  padding    :    2rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);


}

.service-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);


}

.service-card img {
   width: 100%;
   height  : 250px;
   object-fit:      cover;
  border-radius: var(--border-radius);
    margin-bottom   :    1.5rem;
}

.service-card h3    {
    font-size: 1.4rem;

   margin-bottom: 0.8rem;

  color: var(--text-dark);
}

.service-card p{
  color: var(--text-light);
  line-height: 1.7;
}

.benefits-section {
	background: #ffffff;
  padding: 80px 20px;
}

.benefits-container {
	    max-width: 1200px;
    margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;




}

.benefits-text h2 {
   font-size: 2.2rem;
   margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.benefits-text > p {
  color: var(--text-light);
   margin-bottom: 2rem;
         font-size: 1rem;
}

.benefits-list
	{
   list-style: none;
  gap: 1.5rem;
  display: flex;
    flex-direction: column;
}

.benefit-item {
    display: flex;
   gap: 1.5rem;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
    width: 50px;
    height :  50px;
  background: var(--accent-color);
    border-radius: 50%;
      display: flex;
	 align-items: center;
   justify-content: center;
	margin-top   :      0.25rem;
} 

.benefit-icon img {
  width: 24px;
          height: 24px;
  filter: brightness(0) invert(1);
}



.benefit-text-block h4 {
  font-size: 1.1rem;
     margin-bottom: 0.5rem;
     color: var(--text-dark);
}

.benefit-text-block p {
  font-size    : 0.95rem;
     color: var(--text-light);
}

.benefits-image img     {
    width: 100%;
   height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding:       80px 20px;
  text-align     : center;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
  color: #ffffff;
  font-size: 2.4rem;
   margin-bottom:       1.5rem;
}

.cta-wrapper p {
   color: #ecf0f1;
			font-size  :      1.1rem;
  margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button-primary {
  display: inline-block;
  background: var(--accent-color);
   color: #ffffff;
       padding: 16px 40px;
  border-radius: var(--border-radius);
  text-decoration: none;
         font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid var(--accent-color);
}

.cta-button-primary:hover {
  background: var(--secondary-accent);
  border-color: var(--secondary-accent);
  transform: scale(1.05);
}

.contact-section {
  background: var(--light-bg);
	padding: 80px 20px;
}

.contact-container {
  max-width:       800px;
    margin: 0 auto;
}

.contact-section h2 {
	    font-size: 2.2rem;
        text-align: center;
    margin-bottom: 1rem;
  color: var(--text-dark);

}

.contact-section > p {
     text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
	font-size: 1rem;

}

.contact-form
{
  background  :    #ffffff;
    padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}



.form-group
	{
   margin-bottom: 1.8rem;
}

.form-group label     {
    display: block;
    margin-bottom: 0.6rem;
	 font-weight: 600;
  color: var(--text-dark);
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea  {
	  width: 100%;
         padding: 12px 14px;
   border: 1.5px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
     }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
         outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); 
	
}

.submit-button {
   width    :    100%;
    padding: 14px 24px;
  background: var(--accent-color);
	color: #ffffff;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
   font-size  :     1rem;
  cursor: pointer;
  transition: var(--transition);
}

.submit-button:hover {
  background: var(--secondary-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.contact-info {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 2rem;
    margin-top: 3rem;
}

.info-block {
   background   :       #ffffff;
    padding    :  2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);


}

.info-block h3 {
  color: var(--text-dark); 
		 margin-bottom: 1rem; 
	  font-size: 1.1rem;
}

.info-block p {
  color: var(--text-light);
               line-height: 1.8;
}

.footer {
  background: var(--primary-color);
    color: #ecf0f1;
   padding: 60px 20px 30px;
}

.footer-content {

	    max-width: 1200px;
   margin :      0 auto;
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2.5rem;
    margin-bottom: 2rem;


}

.footer-branding {
  display   :        flex;
	align-items: center;


}

.footer-logo {
         height: 50px;
    width: auto;
  filter: brightness(0) invert(1);

}

.footer-section h4 {
  margin-bottom: 1.2rem;
  font-size :    1.05rem;
    color: #ffffff; 

}

.footer-section ul
	{
    list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.8rem;


}

.footer-section ul li a {
  color    :  #bdc3c7; 
	  text-decoration: none; 
	  transition: var(--transition); 
	  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-section p	{
   font-size: 0.95rem;
  line-height: 1.7;
  color: #bdc3c7;
}

.footer-bottom {
  max-width: 1200px;
	margin   :0 auto;
    text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    color     :   #95a5a6;
  font-size:    0.9rem;
}  

img[src*="save/"]


{
  transition: var(--transition);
}

.benefit-icon img	{
   stroke     :        #ffffff;
  fill: none;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 1.5rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-branding {
        justify-content: center;
    }

    .footer-section ul {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .footer-section ul li {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-primary {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer {
        padding: 40px 20px 20px;
    }
}.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, #2c3e50 0%, #34495e 100%);
	padding: 100px 20px;
  text-align  :    center;
    color: #ffffff;
   min-height: 400px;
   display    :  flex;
    align-items: center;
  justify-content: center;
}

.services-hero-content h1


{
  font-size   :     3rem;
    margin-bottom: 1.5rem;
	font-weight  :     700;
}

.services-hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
	margin: 0 auto;
  opacity: 0.95;
        line-height: 1.6;
}

.services-breadcrumb {
  background: #ecf0f1;
  padding: 20px;
   border-bottom: 1px solid #ddd;
}

.breadcrumb-container {
   max-width: 1200px;
  margin: 0 auto;
    font-size: 0.95rem;
    padding: 0 20px;
    color: #7f8c8d;
}

.breadcrumb-separator     {
    margin: 0 10px;
    color: #bdc3c7;
}

.breadcrumb-container a {
   color: #3498db;
  text-decoration: none;
   transition: color 0.3s ease;
}

.breadcrumb-container a:hover {
  color: #e74c3c;
}

.services-detailed {
  background: #ffffff;
   padding: 80px 20px; 
	
}

.services-container
	{
   max-width: 1200px;
   margin: 0 auto;
}

.service-item {
	   display: grid;
        grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
  padding: 2rem 0;
    border-bottom: 1px solid #ecf0f1;
     }

.service-item:last-child {
  border-bottom: none;
      margin-bottom: 0;
}

.service-item-2 {
    grid-template-columns: 1fr 1fr;
	}
/* Component styles */
	/* Cross-browser fix */


.service-item-2 .service-image


{
  order: 2;
}

.service-item-2 .service-content {
   order: 1;
}

.service-item-3 {
 grid-template-columns  :    1fr 1fr;
}

.service-item-4	{
   grid-template-columns: 1fr 1fr;
}

.service-item-4 .service-image {
   order: 2;
}

.service-item-4 .service-content {
    order: 1;
}

.service-item-5 {
   grid-template-columns: 1fr 1fr;
}

.service-item-6 {
    grid-template-columns: 1fr 1fr;
}

/* Component styles */


/* Hack for old browsers */

/* Development only */


.service-item-6 .service-image {
   order: 2;
}

.service-item-6 .service-content {


     order  :       1;}

/* Animation and transitions */

.service-image img {
  width  :      100%;
   height   :auto;
   border-radius: 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}

.service-image:hover img {


  transform: scale(1.02);
}

.service-content h2   {
    font-size: 2rem;
      color:    #2c3e50;
  margin-bottom    :     1.5rem;
   font-weight: 700;
}

.service-content > p:first-of-type  {
   font-size: 1.05rem;
    color: #7f8c8d;
     line-height  :     1.8;
    margin-bottom: 1.5rem;
}

.service-content h3 {
	 font-size: 1.1rem;
       color: #2c3e50;
   margin-top: 1.5rem;
   margin-bottom: 1rem;
   font-weight   :        600;
}
/* TODO: optimize for mobile */


.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

/* Build system output */


.service-features li {
      padding: 0.6rem 0 0.6rem 2rem;

	  position   :relative;

	   color: #7f8c8d;

	    line-height: 1.6;}

.service-features li:before {
	  content: '✓'; 
  position: absolute; 
  left: 0; 
  color: #3498db; 
   font-weight: bold; 
       font-size: 1.2rem;
     }

.service-duration,
.service-format {
   font-size :      0.95rem;
                    color: #7f8c8d;
	line-height: 1.7;
	margin-top: 1rem;
}

.service-duration strong,
.service-format strong {
         color   :       #2c3e50;

}

.service-packages {


  background: linear-gradient(180deg, #f8f9fa 0%, #ecf0f1 100%);
       padding: 80px 20px;
	}

.packages-container {
	max-width: 1200px;
   margin: 0 auto;
}

.packages-container h2 {
   color: #2c3e50;

   font-size: 2.2rem;

	 margin-bottom: 0.8rem;

   text-align: center;
}

.packages-container > p {
		 text-align: center;
   color: #7f8c8d;
   margin-bottom: 3rem;
  font-size: 1rem;
}

.packages-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
   margin-top: 2rem;
}

.package-card {
   background: #ffffff;
    border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
         position: relative;
    transition: all 0.3s ease;
   border: 2px solid transparent;
}

.package-card:hover {

	  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	}

.package-card.featured {
  border-color: #3498db;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.package-card.featured:hover {
  transform: translateY(-12px);

}

.package-badge {
    position: absolute;
   top: -12px;
  left:      20px;
         background   :  #3498db;
  color: #ffffff;
    padding: 0.4rem 1.2rem;
      border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
   text-transform: uppercase;
}

.package-header  
  {
   margin-bottom: 1.5rem;
}

/* Typography */
/* Responsive design */
	/* Debug styles */
.package-header h3 {
       font-size: 1.5rem;

  color   :    #2c3e50;

  margin-bottom: 0.3rem;
}  

.package-subtitle {


   color: #7f8c8d;
  font-size: 0.9rem;
     }

.package-price {
         margin: 1.5rem 0 2rem 0;
   display: flex;
	align-items: baseline;
   gap: 0.5rem;

}

.currency {
    font-size: 0.9rem;
   color: #7f8c8d;
}

.amount {

   color: #2c3e50;
   font-size: 2.2rem;
   font-weight: 700;

}

.package-features {


    list-style: none;
	margin-bottom    :       2rem;
	}

.package-features li {
     padding: 0.7rem 0;
   color: #7f8c8d;
    border-bottom: 1px solid #ecf0f1;
  font-size: 0.95rem;
}

/* Generated styles */


.package-features li:before {
  content: '✓ ';
  color: #2ecc71;
  font-weight: bold;

}

.package-cta {
	display: block;
    text-align: center;
    padding   : 12px 20px;
	 background: #ecf0f1;
  color  :     #2c3e50;
   text-decoration: none;
   border-radius: 6px;
   font-weight: 600;
    transition: all 0.3s ease;
  border: 2px solid #ecf0f1;
}

.package-cta:hover {
  background: #2c3e50;

	   color: #ffffff;
}

.package-cta-primary {
	 background: #3498db;
   color: #ffffff;
  border-color     :  #3498db;
	}

.package-cta-primary:hover {
   background: #2980b9;
   border-color: #2980b9;
}

/* Colors and backgrounds */


.services-faq {
   background  :   #ffffff;
   padding    :  80px 20px;
     }

.faq-container {
    max-width: 1000px;
   margin:        0 auto;
}
	/* Framework override */
/* State modifiers */


.faq-container h2 {
   font-size: 2.2rem;
	text-align: center;
    color: #2c3e50;
   margin-bottom: 3rem;
}

.faq-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8f9fa; 
	   padding  :       1.8rem; 
		 border-radius: 8px; 
	    border-left: 4px solid #3498db; 
	   transition: all 0.3s ease;
}
	/* Build system output */


/* Development only */

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.faq-question {

    font-size: 1.05rem;
  color: #2c3e50;
   margin-bottom: 0.8rem;
  font-weight   :        600;
}

.faq-item p {
    color : #7f8c8d;
  font-size: 0.95rem;
   line-height   :       1.7;
}

.services-cta {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 80px 20px;
   text-align: center;


}


.services-cta .cta-wrapper h2 {
       color: #ffffff;
    font-size: 2.4rem;
 margin-bottom: 1.5rem;
}

.services-cta .cta-wrapper p {
  color: #ecf0f1;
   font-size    :      1.1rem;
   margin-bottom: 2.5rem;
   max-width: 700px;
          margin-left: auto;
    margin-right: auto;


}

.thankyou-section {
  background: linear-gradient(180deg, #ecf0f1 0%, #ffffff 100%);
   padding  :     80px 20px;
  min-height: calc(100vh - 300px);
         display: flex;
   align-items: center;
       justify-content: center;
}

.thankyou-container {

    max-width: 700px;
  background: #ffffff;
   padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
	
     }

.thankyou-icon {
	 margin-bottom: 1.5rem;
}

.thankyou-icon img     {
   width: 80px;
       height: 80px;
  filter: drop-shadow(0 4px 8px rgba(46, 204, 113, 0.2));
  animation: bounceIn 0.6s ease;
}  
@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title {
                    font-size   :  2.2rem;
   color: #2c3e50;
  margin-bottom: 0.5rem;
   font-weight: 700;
}

.thankyou-subtitle


{

		font-size:      1.1rem;
    color: #2ecc71;
               margin-bottom: 2rem;
         font-weight: 600;
     }

.thankyou-message {
  background    :    #f8f9fa;
    padding: 1.5rem;
    border-radius   :     8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thankyou-message p {
   color  :        #7f8c8d; 
	    line-height  :     1.8; 
	   margin-bottom: 1rem;
}

.thankyou-message p:last-child {
    margin-bottom  :     0;
}

.thankyou-details {
  border-radius  :8px;
  text-align: left;
	padding: 1.5rem;
   margin-bottom: 2rem;
	background: #ecf0f1;
}

.thankyou-details h3 {
 font-size: 1.05rem; 
	      color:     #2c3e50; 
	   margin-bottom    :1rem; 
	    text-align: center;
}

.detail-item {
        display   :    flex;
	justify-content :    space-between;
    padding: 0.7rem 0;
	 border-bottom: 1px solid #ddd;
}

.detail-item:last-child {


    border-bottom  :  none;
}

.detail-label {
   font-weight: 600;
         color     :       #2c3e50;
}

.detail-value {
    color: #7f8c8d;
  text-align: right;
} 

.thankyou-next-steps {

   background: #f0f7ff;
   padding: 1.5rem;
   border-radius:8px;
	-moz-border-radius: 8px;
   margin-bottom: 2rem;
    text-align: left;
  border-left: 4px solid #3498db;}

.thankyou-next-steps h3 {
   font-size  : 1.05rem;
    color  :       #2c3e50;
   margin-bottom: 1rem;
}

.steps-list {
  list-style: none;
   padding-left: 0;
}

.steps-list li {
      padding: 0.6rem 0 0.6rem 1.5rem;
   color :#7f8c8d;
     position: relative;
	 line-height: 1.6;
}

.steps-list li:before   {
  content: '→';
    position: absolute;
	left:  0;
   color: #3498db;
    font-weight: bold;
}

.thankyou-contact-info {
    background: #f8f9fa;
   padding: 1.5rem;
  border-radius: 8px;
	 margin-bottom: 2rem;
}

.thankyou-contact-info p {
   color   :      #7f8c8d;
   line-height: 1.8;
   margin-bottom: 0.8rem;
}

.thankyou-contact-info p:first-child {
	margin-bottom  :       1.2rem;
}

.thankyou-contact-info strong {
	  color: #2c3e50;
	}

.thankyou-actions {
    gap: 1rem;
  flex-wrap: wrap;
   display: flex;
    justify-content: center;
}

.thankyou-button {
    flex: 1;
  min-width:     150px;
 padding: 12px 24px;
  background: #3498db;
    color: #ffffff;
	text-decoration: none;
    border-radius: 6px;
   font-weight :  600;
    transition: all 0.3s ease;
   display    :    inline-block;
  text-align: center;
}

.thankyou-button:hover {
   background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
} 

.thankyou-button.secondary {
	background: #ecf0f1;
  color: #2c3e50;
   border: 2px solid #bdc3c7;
}

.thankyou-button.secondary:hover {

	  background: #2c3e50;
    color: #ffffff;
    border-color: #2c3e50;}

.thankyou-icon img   {
      stroke: #2ecc71;
	 fill: none;
          stroke-width:       2;
     }@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
        min-height: 300px;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .service-item-2 .service-image,
    .service-item-4 .service-image,
    .service-item-6 .service-image {
        order: 0;
    }

    .service-item-2 .service-content,
    .service-item-4 .service-content,
    .service-item-6 .service-content {
        order: 0;
    }

    .service-content h2 {
        font-size: 1.4rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-button {
        width: 100%;
    }

    .services-cta .cta-wrapper h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.4rem;
    }

    .service-content h2 {
        font-size: 1.2rem;
    }

    .service-features li {
        padding: 0.5rem 0 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-title {
        font-size: 1.6rem;
    }

    .detail-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .detail-value {
        text-align: left;
    }
}