* {
    margin: 0;
    padding: 0;
   box-sizing: border-box;
}

html, body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
	 color: #2c3e50;
    background-color: #fafafa;
     }

body {
  min-height: 100vh;
   display: flex;
  flex-direction     :       column;
}

main


{
   flex     :  1;
}

a {
   color: #3498db;
	   text-decoration: none;
	   transition: color 0.3s ease;
}

a:hover {
      color: #2980b9;}

img {
	 max-width: 100%;
   height: auto;
    display: block;
}

.responsive-img {
  width: 100%;
     height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
   margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3.2rem;
  color: #1a252f;
}

h2 {
	   font-size: 2.4rem; 
               text-align: center; 
  color: #1a252f; 
  margin-bottom: 2.5rem;


}

h3 {
       color: #2c3e50;
    font-size :        1.5rem;
     }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

ul, ol {
  margin-left: 1.5rem;
}

li {
	margin-bottom: 0.5rem; 
	
}

.main-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position     :     sticky;
   top: 0;
    z-index: 1000;
}

.navigation-bar  {
  padding  :   1rem 2rem;
}

.nav-container

{
  max-width    :      1200px;
    margin: 0 auto;
   display: flex;
  justify-content : space-between;
    align-items: center;
}

.nav-brand {
	     display: flex;
  align-items   :       center;


}

.brand-logo {
  height: 45px;
		width: auto;
}

.burger-toggle {
    display: none;
                    background: none;
      border: none;
    cursor: pointer;
   padding: 0.5rem;
}

.burger-icon {
    height: 28px;
   fill: none;
  stroke-width: 2;
    stroke: #2c3e50;
  width     :       28px;
}

.nav-links {
  display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link  
  {
	color: #2c3e50;
     font-weight: 500;
     font-size     :    1rem;
     position: relative;
      transition: color 0.3s ease;
}



.nav-link::after {
  content: '';
  position: absolute;
         bottom: -5px;
    left: 0;
  width: 0;
   height: 2px;
    background: #3498db;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}@media (max-width: 768px) {
    .burger-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-link::after {
        display: none;
    }
}.hero-section {
	    max-width: 1200px;
	 margin: 3rem auto;
	padding: 2rem;
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
	align-items: center;

}

.hero-content h1    {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
   color: #555;
	margin-bottom: 2rem;
   line-height :       1.8;


}

.cta-button {
    transition    :     all 0.3s ease;
  font-size: 1rem;
    cursor: pointer;
        display  :       inline-block;
	font-weight: 600;
   text-align: center;
  border-radius: 8px;
	 border: none;
   padding: 1.2rem 2.5rem;
   text-decoration: none;
}

.primary-btn {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	   color    :     white;
	  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.primary-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);


}

.secondary-btn {
     background: #ecf0f1;
    color  :  #2c3e50;
    border: 2px solid #3498db;
	}

.secondary-btn:hover {
  background    :      #3498db;
      color: white;
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}.approach-section {
	  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
   padding: 4rem 2rem;
   margin: 2rem 0;

}

.approach-grid {
	   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap  :   2rem;
     }

.approach-card {
   background: white;
	border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;


}

.approach-card:hover    {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-img {
  width: 100%;
    height: 250px;
   object-fit: cover;

}

.approach-card h3    {
       padding: 1.5rem 1.5rem 0.5rem;
   color: #2c3e50;

}

.approach-card p {
    padding: 0 1.5rem 1.5rem;
    color   :       #666;
    font-size: 0.95rem;
}

.services-overview {
  max-width: 1200px;
   margin: 3rem auto;
   padding : 0 2rem;
}  

.services-list {
    display:   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-item {


  text-align: center;



}

.service-icon {
   margin-bottom: 1.5rem; 

}

.icon-svg {
	width: 48px;

	          height: 48px;

	    stroke: #3498db;

	   fill: none;

	    stroke-width: 2;

					 stroke-linecap: round;

	               stroke-linejoin: round;

	   transition: all 0.3s ease;
}

.service-item:hover .icon-svg {
    stroke: #2980b9;
  filter: drop-shadow(0 0 8px rgba(52, 152, 219, 0.4));
  transform: scale(1.1);
}


.service-item h3 {

	    margin-bottom: 0.8rem;
	}

.service-item p {
          color: #666;

  font-size: 0.95rem;
}

.expertise-section  
  {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
    padding: 4rem 2rem;
     margin :      3rem 0;
}

.expertise-content {
   max-width: 1200px;
   margin   :     0 auto;
   display   :    grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
}

.benefits-list {
    list-style: none;
	  margin-left: 0;
}

.benefits-list li {
   padding-left     :2.5rem;
	position: relative;
  margin-bottom: 1.2rem;
  font-size: 1rem;
    color: #2c3e50;
				 line-height: 1.6;
}

.benefits-list li::before {
    top: 0.5rem;

    height: 20px;

    width    :    20px;

    position: absolute;

  content: '';

  border-radius: 50%;

   background     :    #3498db;

	left: 0;

}

.benefits-list li::after {
  content: '';
     width: 8px;
   -moz-border-radius  :   50%;
  position: absolute;
   background: white;
    left: 6px;
        height: 8px;
    border-radius: 50%;
	top: 6px;
	}@media (max-width: 768px) {
    .expertise-content {
        grid-template-columns: 1fr;
    }
}.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 3rem 2rem;
  text-align: center;
	margin: 3rem 0;
}

.cta-section h2 {
  color: white;
   margin-bottom: 1rem; 
	
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin   : 0 auto 2rem;
	font-size: 1.05rem;
}

.contact-section {
  max-width: 700px;
    margin:      4rem auto;
   padding: 2rem;
	
}

.contact-form {
  background: white;
    padding: 2.5rem;
   border-radius  :       12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-group


{
    margin-bottom: 1.5rem;


}

.form-group label {
   font-weight: 600;
      display :    block;
   margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-input,
.form-textarea {
   width: 100%;
  padding: 0.8rem 1rem;
   border: 1px solid #bdc3c7;
    border-radius: 6px;
	font-family  :   inherit;
  font-size     :    1rem;
                    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus	{
  outline: none;
	border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea {
   resize   :  vertical;
}

.main-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding: 3rem 2rem 1rem;
  margin-top:       4rem;
}

.footer-container {

    max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap    :      2rem;
    margin-bottom: 2rem;
     }

.footer-brand

{
    display: flex;
    align-items: flex-start;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-nav h4,
.footer-contact h4,
.footer-hours h4 {
  font-size: 1.1rem;
	margin-bottom     :  1rem;
  color: #ecf0f1;
}

.footer-nav ul {
	list-style: none;
  margin-left: 0;
}

.footer-nav ul li {
   margin-bottom    : 0.8rem;
}

.footer-nav a {
	color :   #bdc3c7;
    transition  :  color 0.3s ease;
} 

.footer-nav a:hover {
    color: #3498db;
}

.footer-contact p,
.footer-hours p  
  {


   color: #bdc3c7;
     margin-bottom:     0.8rem;
  font-size: 0.95rem;
        line-height: 1.6;
     }

.footer-bottom {
      text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   color: #95a5a6;
  font-size: 0.9rem;
	}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .services-overview h2 {
        margin-bottom: 2rem;
    }
}.policySection {
   padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
     max-width: 800px;
   margin: 0 auto;
  text-align: left;
}

.policyContainer h1 {
	color: #1a252f;
  font-size: 3.2rem;
    line-height: 1.3;
  margin-bottom: 2rem;
}

.policyContainer h2 {
   font-size: 2rem;
   color: #2c3e50;
  margin: 2.5rem 0 1.5rem;
   font-weight: 700;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;

}

.policyContainer h3 {
	 font-size: 1.4rem;
   color: #2c3e50;
	margin: 1.5rem 0 1rem;
}

.policyContainer p {
    color: #7f8c8d;
   margin-bottom   :     1.5rem;
   line-height: 1.7;
               font-size: 1.1rem;
}


.policyContainer ul {
    margin-bottom:1.5rem;
	margin-left  :       1.5rem;
	
} 

.policyContainer li {
    color: #555;
   margin-bottom: 0.8rem;
    position: relative;
  padding-left: 0.5rem;
}

.policyContainer li::before {
  content: "→";
    position  :absolute;
          left :        -1rem;
  color: #3498db;
  font-weight:bold;
}

.policyContainer strong {
  color     : #2c3e50;
}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2.4rem;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	padding: 4rem 2rem;
		text-align    :  center;
}

.services-hero h1 {
      margin-bottom: 1rem;
    font-size: 3rem;
    color: white;

}

.services-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
	 max-width: 600px;
    margin: 0 auto;
}

.services-detailed {
          max-width: 1200px;
   margin: 0 auto;
   padding    : 2rem;
}

.service-block {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap :  3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
  background: #fafafa;
    border-radius   :  12px;
  transition: all 0.3s ease;
}

.service-block:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);

}

.service-block-2,
.service-block-4 {
    grid-template-columns: 1fr 1fr;
  direction     :      rtl;
}

.service-block-2 > *,
.service-block-4 > * {
               direction: ltr;


}

.service-content h2 {
       text-align: left;
   margin-bottom    :      1rem;
    color: #667eea;
    font-size: 2rem;
}

.service-content p {
	        margin-bottom: 1.5rem;
    line-height: 1.8;
         color: #555;}

.service-features {
   margin: 1.5rem 0;
} 

.service-features h3 {
    font-size: 1.1rem;
    color: #2c3e50;
               margin-bottom: 1rem;
    text-align:        left;
}

.features-list {

      list-style: none;
    margin-left: 0;


}

.features-list li {
    padding-left   :       1.8rem;
   position: relative;
    margin-bottom  :        0.8rem;
    color: #666;
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';

   position: absolute;

   left: 0;

    top: 0;

    color     :        #667eea;

   font-weight: bold;

	font-size: 1.1rem;
}

.service-cta {
       margin-top   :        2rem;
}

.service-btn {
	   display: inline-block;
   padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
    text-decoration   :    none;


}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.service-image {
   border-radius: 12px;
  overflow    :     hidden;
}

.service-image img {


  width: 100%;
  height: 350px;
   object-fit: cover;
   transition: transform 0.3s ease;
	}

.service-block:hover .service-image img {
  transform: scale(1.05);
}@media (max-width: 968px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-block-2,
    .service-block-4 {
        direction: ltr;
    }

    .service-block-2 > *,
    .service-block-4 > * {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 1.6rem;
    }

    .service-image img {
        height: 250px;
    }
}.pricing-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
   padding  :    4rem 2rem;
  margin    :     3rem 0;
} 

.pricing-section h2 {
               margin-bottom: 3rem;
}

.pricing-grid {
   max-width: 1100px;
   margin: 0 auto;
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap  : 2rem; 
	
}

.pricing-card {
   background: white;

    padding: 2rem;

    border-radius   :   12px;

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

  position   :      relative;

    transition: all 0.3s ease;

   display   :        flex;

   flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
	 border: 2px solid #667eea;
}

.featured-badge {
   position: absolute;
					top: -12px;
	-moz-border-radius: 20px;
   -webkit-border-radius: 20px;
    right: 20px;
   background: #667eea;
  color: white;
    padding: 0.4rem 1rem;
	border-radius: 20px;
  font-size: 0.85rem;
   font-weight: 600;
     }

.pricing-card h3 {

		font-size: 1.3rem;
     margin-bottom  :        0.5rem;
   text-align: center;
     }

.price-value {
   font-size: 2rem;
   color: #667eea;
   font-weight:        700;
   text-align: center;
   margin-bottom: 1.5rem;
}

.price-features {
    list-style    :       none;
    margin-left: 0;
    flex: 1;
   margin-bottom:    1.5rem;
}

.price-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #666;
  font-size    :0.95rem;
}

.price-features li::before		{
  content: '•';
	 position: absolute;
		left: 0;
    color: #667eea;
      font-weight: bold;
}

.pricing-btn {


         padding     :        0.9rem 1.5rem;
  background    :     #ecf0f1;
    color: #2c3e50;
   border: 2px solid #667eea;
  border-radius: 8px;
  font-weight: 600;
   cursor: pointer;
      text-align: center;
    text-decoration: none;
        transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: #667eea;
    color: white;
}



.pricing-btn-featured {
    background: #667eea;
    color: white;
}

.pricing-btn-featured:hover {
    background: #764ba2;
}

.faq-section {
                    max-width:900px;
    margin: 3rem auto;
	padding: 0 2rem;
}

.faq-section h2 {
       margin-bottom: 2.5rem;
}

.faq-container  
  {
    display: flex;
    flex-direction     :    column;
	gap: 1rem;
}

.faq-item {
   background  :white;
   border-radius: 8px;
  overflow:     hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-question {
   width    :      100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
	cursor: pointer;
	 display: flex;
   justify-content   :      space-between;
    align-items:center;
   font-size: 1.05rem;
  font-weight     :  600;
  transition   :    all 0.3s ease;
}

.faq-question:hover
{
         padding-left: 2rem;
}

.faq-icon {
    width: 24px;
  height: 24px;
    stroke: white;
   fill: none;
   stroke-width: 2;
     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: #f8f9fa;
}

.faq-item.active .faq-answer {
                    max-height: 500px;
	
}

.faq-answer p {
    padding: 1.5rem;
	  color: #666;
	   line-height: 1.7;
}  

.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 4rem 2rem;
               margin: 3rem 0;
}



.testimonials-section h2 {
    margin-bottom: 3rem;
}

.testimonials-grid	{
	 max-width: 1100px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap    :    2rem;
}



.testimonial-card {
      background: white;
  padding  :2rem;
    border-radius  :    12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  border-left: 4px solid #667eea;
	}

.testimonial-card:hover  {
  transform: translateY(-3px); 
	  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
} 

.testimonial-text {
   margin-bottom: 1rem;
  font-size: 0.95rem;
    line-height: 1.8;
	color: #555;
                    font-style: italic;
}

.testimonial-author {
  color: #667eea;
	font-weight: 600;
}

.thankyou-section {


     min-height: 70vh;
  display: flex;
   align-items: center;
   justify-content    : center;
    padding     :      3rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.thankyou-content {
  max-width: 700px;
	text-align    :       center;
}

.success-icon {
   margin-bottom: 2rem;
}

.success-svg {
    width: 80px;

  height: 80px;

                    stroke: #2ecc71;

    fill     :  none;

       stroke-width: 2;

    animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
    color: #2c3e50;
  margin-bottom: 1rem;
	font-size: 2.5rem;
}

.thankyou-subtitle {
   color    :#666;
  font-size: 1.1rem;
   margin-bottom: 2rem;
}

.submission-details	{
         background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom:       2rem;
   text-align: left;
}

.submission-details h2 
 {
   text-align: center;
    font-size: 1.3rem;
   margin-bottom: 1.5rem;
	 color: #2c3e50;
}

.details-box		{
                    display: flex;
  flex-direction     : column;
  gap   :        1rem;
}

.detail-row	{
  padding-bottom: 1rem;
	gap     :     1rem;
  border-bottom: 1px solid #ecf0f1;
  display: grid;
      grid-template-columns: 150px 1fr;
}

.detail-row:last-child {
  border-bottom: none;
	
}

.detail-label {
    color: #667eea;
    font-weight: 600;
}

.detail-value {
   color    : #555;
}

.next-steps {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color  :        white;
                    padding   :      2rem;
   border-radius    :    12px;
   margin-bottom: 2rem;
    text-align :     left;
}

.next-steps h2 {
     text-align: center;
   color: white;
  margin-bottom: 1.5rem;
}

.steps-list
	{
   list-style: decimal;
       margin-left: 2rem;
}

.steps-list li {
  margin-bottom   :    1rem;
    line-height :      1.6;
}

.additional-info {
                    background: #fff3cd;
  border-left: 4px solid #ffc107;
   padding: 1.5rem;
	 border-radius: 6px;
  margin-bottom: 2rem;
  color: #856404;

}

.thankyou-ctas {
					display: flex;
  gap: 1rem;
    justify-content: center;
	flex-wrap    : wrap;
  margin-bottom: 2rem;
}

.bonus-section
{
  background: #e7f3ff;
               border-left: 4px solid #3498db;
    padding: 2rem;
    border-radius  :     8px;
   margin-top: 2rem;
}

.bonus-section h3 {
   color: #2c3e50;
  margin-bottom: 0.5rem;


}

.bonus-section p   {
  color: #555;
    margin-bottom: 1rem;
}

.download-btn {
   display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
	border-radius: 6px;
  font-weight: 600;
    text-decoration: none;
   transition: all 0.3s ease;
   cursor: pointer;

}

.download-btn:hover   {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.related-services {
  padding     :        0 2rem;
   margin: 3rem auto;
    max-width: 1200px;
}

.related-services h2  {
      margin-bottom: 2.5rem;
     }

.related-grid{
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
   gap     :    2rem;
}

.related-card {
  background: white;
    padding: 1.5rem;
      border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;


}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-card h3 {
    margin-bottom: 0.5rem;
          color: #667eea;
}

.related-card p {
  margin-bottom  :1rem;
         color  :     #666;
	font-size: 0.95rem;
}

.card-link {
  color: #667eea;
  font-weight: 600;
    transition: color 0.3s ease;
}


.card-link:hover {

	    color: #764ba2;
     }@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-ctas {
        flex-direction: column;
    }

    .thankyou-ctas a {
        width: 100%;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .next-steps {
        text-align: center;
    }

    .steps-list {
        margin-left: 1.5rem;
    }
}