* {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
   color: #2c3e50;
    line-height :   1.6;

}

.navbar-container
{
  position:  sticky;
   top: 0;
   z-index: 100;
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
}

.navbar-wrapper
	{


     max-width  :       1200px;
    margin: 0 auto;
   display: flex;
   justify-content: space-between;
	align-items: center;
    padding    :     0 2rem;
	}

.nav-brand {
    display: flex;
   align-items: center;
  flex-shrink :0;
}

.nav-logo {
  height: 48px;
	    width: auto;
	  object-fit: contain;
}

.nav-links {
   display: flex;
  list-style   :none;
               gap    :   2.5rem;
 align-items   :        center;
}

/* Performance critical */

.nav-item {
   color     :       #ecf0f1;
   text-decoration: none;
   font-size:     1rem;
  font-weight: 500;
   transition: all 0.3s ease;
   position:   relative;
   padding-bottom: 4px;
}

.nav-item::after {
  content: '';
    position    :  absolute;
  bottom:   0;
  left: 0;
  width: 0;
   height: 2px;
  background: linear-gradient(90deg, #3498db, #2980b9);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
   width: 100%;
}

.hamburger-menu {
	display: none;
   flex-direction: column;
 cursor: pointer;
  gap: 6px;
    z-index: 101;
}

.bar-line {
   width     :        28px;
  height: 3px;
    background-color     :    #ecf0f1;
    transition  :      all 0.3s ease;
   border-radius: 2px;
	
}
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a2332;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 1.5rem;
        padding: 2rem 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger-menu.active .bar-line:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .hamburger-menu.active .bar-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar-line:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -8px);
    }
}.hero-section    {
   display: grid;
    grid-template-columns: 1fr 1fr;
  align-items: center;
   gap: 4rem;
  max-width:        1200px;
   margin :      5rem auto;
   padding: 0 2rem;
}

.hero-content {
   display: flex;
   flex-direction: column;
  gap: 1.5rem;
}

.hero-title  {
    font-size: 3.2rem;
  font-weight: 700;
  color :    #1a2332;
    line-height: 1.2;
}


.hero-subtitle  {
   font-size: 1.2rem;
    color: #555;
   line-height: 1.8;


} 

.responsive-image
	{
	   width: 100%;
   height: auto;
	 border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);}

.cta-button {

	    display  :  inline-block;
    padding: 14px 32px;
  background: linear-gradient(135deg, #3498db, #2980b9);
	color: white;
  text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
   transition  :    all 0.3s ease;
   border: none;
    cursor: pointer;
    font-size: 1rem;
	max-width: fit-content;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);}


.cta-button:hover    {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.services-overview {
    background-color: #fff;
     padding: 5rem 2rem;
  margin: 4rem 0;
}

.section-container {
   max-width: 1200px;
  margin: 0 auto;
}

.section-title {
               color: #1a2332;
    font-weight: 700;
         text-align :    center;
    font-size: 2.8rem;
  margin-bottom: 3rem; 
	
}

.services-grid	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
	
}

.service-card {
   background: #f8f9fa;
	    padding: 2rem;
		 border-radius: 8px;
	    border-left: 4px solid #3498db;
	   transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-icon-wrap {
     margin-bottom: 1.5rem;

    height: 60px;

	display: flex;

	align-items: center;
}

.card-icon {
    width: 60px;
  height: 60px;
   object-fit: contain;
}

.card-icon {
	stroke     :       #3498db;
   fill: none;
  stroke-width: 2;
  stroke-linecap: round;
    stroke-linejoin: round;
	transition: all 0.3s ease;
}

.service-card:hover .card-icon {
   stroke: #2980b9;
  transform: scale(1.1);
} 

.card-title {
    font-size: 1.5rem;
    color: #1a2332;
    margin-bottom: 0.8rem;
  font-weight: 600;
}

.card-desc {
    color: #666;
	 line-height :1.7;
}

.highlight-section

{
   max-width  :   1200px;
   margin: 4rem auto;
   padding: 0 2rem;

}

.highlight-wrapper {

	  display: grid;
   grid-template-columns: 1fr 1fr;
  gap     :        3rem;
  align-items: center;

}

.highlight-title {
    font-size: 2.4rem;
	 color: #1a2332;
    margin-bottom: 1.5rem;
	font-weight     :      700;
}

.highlight-para {
	color: #555;
  margin-bottom: 1.5rem;
	line-height: 1.8;
}


.highlight-list {


  list-style: none;}

.list-item {
  color :     #666;
   padding: 0.8rem 0;
   padding-left: 1.8rem;
  position  :     relative;
   line-height   :    1.6;
}

.list-item::before {
  font-weight: bold; 
   color :        #27ae60; 
  content: '✓'; 
   font-size:1.2rem; 
   position: absolute; 
	left: 0;
}

.highlight-image {
					width   :       100%;

   border-radius: 12px;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}  

.expertise-section {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
      padding:       5rem 2rem;
}



.expertise-grid	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
}

.expertise-card {
    background: white;
	 border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.expertise-img {
    width: 100%;
 height: 220px;
  object-fit: cover;
}

.expertise-content {
    padding: 1.8rem;
}

.expertise-header {
       font-size: 1.4rem;
   color: #1a2332;
	 margin-bottom: 0.8rem;
                    font-weight: 600;
}


.expertise-text {
    color: #666;
   line-height: 1.7;
}

.webinar-section {
    max-width: 1000px;
  margin: 4rem auto;
	padding :        2rem;
}

.webinar-box {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
                    padding: 3rem;
   border-radius: 12px;
    text-align: center;
  color: white;
  box-shadow: 0 12px 28px rgba(52, 152, 219, 0.3);
}

.webinar-title


{
    font-size: 2.2rem;
   margin-bottom: 1rem;
   font-weight: 700;
}

.webinar-desc {
         font-size: 1.1rem;
    margin-bottom: 2rem;
     line-height: 1.7;
     }


.cta-button-secondary {
	   display: inline-block;
   padding: 12px 28px;
	 background    :white;
  color: #3498db;
  text-decoration: none;
   border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;
  border    :  none;
    cursor:      pointer;
				 font-size: 1rem;
}

.cta-button-secondary:hover {
  transform: scale(1.05);
	
}

.cta-main-section {
		 background: #1a2332;
   padding: 4rem 2rem;
  text-align: center;
   color: white;
}

.cta-content-main {
    max-width: 800px;
	margin: 0 auto;
}

.cta-title-main {
   font-size: 2.6rem;
    margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text-main {
  font-size: 1.1rem;
   margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button-primary {
    display: inline-block;

	       padding: 14px 32px;

	  background: linear-gradient(135deg, #e74c3c, #c0392b);

	  color: white;

	  text-decoration: none;

		border-radius    :       6px;

	  font-weight: 600;

	  transition: all 0.3s ease;

	  border: none;

	   cursor: pointer;

	   font-size: 1rem;

	  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.contact-section {
    max-width: 1200px;
   margin     :      4rem auto;
    padding: 0 2rem;
}

.contact-title {
   font-size: 2.8rem;
    text-align: center;
	color     :        #1a2332;
  margin-bottom    :    3rem;
  font-weight:700;
}

.contact-wrapper {
  grid-template-columns: 2fr 1fr;
    display: grid;
    gap: 3rem;
	
}

.contact-form {
  display :       flex;
    flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
    flex-direction     : column;
   gap: 0.5rem;
}

.form-label {
       font-weight: 600;
	 color: #1a2332;
  font-size: 0.95rem;

}

.form-input,
.form-textarea {
   padding: 12px 14px;
         border: 1px solid #ddd;
  border-radius: 6px;
	font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
   background: white;
   color: #333;
}

.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;
   min-height: 120px;}

.submit-button {
  padding: 14px 28px;
	  background: linear-gradient(135deg, #3498db, #2980b9);
	    color: white;
		border: none;
	  border-radius: 6px;
	     font-size: 1rem;
	    font-weight: 600;
		 cursor: pointer;
	   transition: all 0.3s ease;
	  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.submit-button:hover {


  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);


}

.contact-info {
	background: #f8f9fa;
    padding: 2rem;
  border-radius     :    8px;
    border-left :       4px solid #3498db;
}

.info-header  
  {
   font-size: 1.6rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.info-text {
  color: #555;
	   line-height  :  1.8;
	    margin-bottom: 1.2rem;
	    font-size: 0.95rem;
}

.footer-container {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #ecf0f1;
  padding: 4rem 2rem 1rem;
   margin-top: 5rem;

}

.footer-wrapper {
    max-width: 1200px;
   margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap :     3rem;
         margin-bottom: 2rem;
}

.footer-brand {
   display: flex;
  align-items: flex-start;
}

.footer-logo {


   height: 50px;
	 width: auto;
    object-fit :        contain;
     }

.footer-grid    {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column {
	display: flex;
   flex-direction: column;
    gap    :   1rem;
}

.footer-heading
{
	font-size: 1.1rem;
  font-weight: 600;
   margin-bottom: 0.5rem;
    color: white;
}

.footer-list {
				 list-style: none;
   display: flex;
  flex-direction  :      column;
  gap  :        0.8rem;
}

.footer-link {
  color :     #bdc3c7;
   text-decoration: none;
   transition    :   all 0.3s ease;
  font-size   :   0.95rem;
}

.footer-link:hover {
   color: #3498db;
}

.footer-text {
  color: #bdc3c7;
          line-height: 1.7;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(236, 240, 241, 0.2);
   padding-top: 1.5rem;
 text-align: center;
  color    :   #95a5a6;
}

.footer-copyright  {
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        margin: 3rem auto;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlight-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .webinar-box {
        padding: 2rem 1rem;
    }

    .webinar-title {
        font-size: 1.8rem;
    }

    .cta-title-main {
        font-size: 2rem;
    }
}.policySection


{
	padding: 80px 2rem;
 background    :     #f8f9fa;
}

.policyContainer {
    max-width:  800px;
   margin   :  0 auto;
    text-align: left;
}

.policyContainer h1     {
   font-size: 3rem;
  color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.policyContainer h2 {
    padding-bottom: 0.5rem;
  font-weight     :  700;
    border-bottom: 2px solid #3498db;
    color: #2c3e50;
    font-size: 2.5rem;
  margin: 2.5rem 0 1.5rem 0;
}

.policyContainer h3 {
      font-size: 1.8rem;
     color: #34495e;
   margin     :   2rem 0 1rem 0;
         font-weight: 600;
	}

.policyContainer p
	{
   color: #7f8c8d;
    line-height: 1.7;
   font-size: 1.1rem;
      margin-bottom: 1.5rem;
}

.policyContainer ul {
  margin: 1rem 0 1.5rem 2rem;
         color:#7f8c8d;
}

.policyContainer ul li {

  margin-bottom: 0.8rem;

	 line-height    :1.6;

	 font-size: 1.1rem;
}

.policyContainer a {

	          color     :        #3498db;
   text-decoration: none;
     }

.policyContainer a:hover {
    text-decoration: underline;
}

.policyContainer em {


    color: #95a5a6;
    font-style: italic;
     } @media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.5rem;
    }

    .policyContainer p,
    .policyContainer ul li {
        font-size: 1rem;
    }

    .policyContainer ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
    }

    .policyContainer h2 {
        font-size: 1.7rem;
    }
}.services-hero {
	  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
   padding: 5rem 2rem;
 text-align: center;
    color: white;}

.services-hero-content {
		 max-width:      800px;
  margin: 0 auto;
}

.services-hero-title {
   font-size: 3rem;
    font-weight: 700;
  margin-bottom: 1rem;
}

.services-hero-subtitle {
    font-size    :       1.3rem;
   color: #ecf0f1;
  line-height: 1.7;
}

.service-detailed-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 2.5rem;
  margin-top: 3rem;}

.detailed-service-item {
    background: white;
  padding: 2.5rem;
  border-radius:        10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition   : all 0.3s ease;
   border-top: 4px solid #3498db;
}

.detailed-service-item:hover {

  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
	border-top-color:   #2980b9;}

.service-icon-container {
    height: 70px;
    margin-bottom: 1.5rem;
   display    :        flex;
   align-items: center;
}

.service-icon-large {
	width: 70px;
  height: 70px;
  object-fit: contain;
	stroke: #3498db;
        fill: none;
  stroke-width: 2;
   stroke-linecap: round;
	stroke-linejoin:     round;
   transition: all 0.3s ease;
}

.detailed-service-item:hover .service-icon-large {
  stroke: #2980b9;
  transform: scale(1.1);
}

.detailed-service-title {
       font-size: 1.6rem;
     color: #1a2332;
   margin-bottom: 1rem;
    font-weight: 600;
}

.detailed-service-desc {


   color    :       #555;
  line-height  :  1.7;
    margin-bottom: 1.5rem;
	}

.service-features-list {

	 list-style: none;
                    margin-bottom: 1.5rem;
     }

.feature-item {
	color: #666;
   padding: 0.6rem 0;
    padding-left: 1.5rem;
   position: relative;
   line-height: 1.6;


}

.feature-item::before {
    transition:     all 0.3s ease;
  content: '';
    border-radius: 50%;
    position: absolute;
   left    :0;
  height: 6px;
  top: 50%;
    background     :     #3498db;
  transform: translateY(-50%);
  width:6px;
}

.detailed-service-item:hover .feature-item::before {
    background: #2980b9;
}

.service-duration {
      color: #27ae60;
	font-weight: 600;
    font-size: 0.95rem;
}

.process-section {
	background   :       white;
      padding: 5rem 2rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
               gap: 2rem;
         margin-top   :        3rem;
  position  :        relative;


}  @media (min-width: 768px) {
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 5%;
        right: 5%;
        height: 3px;
        background: linear-gradient(90deg, #3498db, #2980b9);
        z-index: 0;
    }
}

.process-step {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: #ecf0f1;
    transform: translateY(-4px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.2rem;
    color: #1a2332;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-desc {
    color: #666;
    line-height: 1.6;
}

.pricing-section {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    padding: 5rem 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.pricing-featured {
    border-color: #3498db;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.2);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-title {
    font-size: 1.5rem;
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-value {
    font-size: 2.2rem;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    color: #666;
    padding: 0.8rem 0;
    line-height: 1.6;
    border-bottom: 1px solid #ecf0f1;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: #666;
    margin-top: 2rem;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-section {
    background: white;
    padding: 5rem 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-author {
    color: #1a2332;
    font-weight: 600;
    font-size: 0.95rem;
}

.thankyou-section {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thankyou-container {
    max-width: 600px;
    width: 100%;
}

.thankyou-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.success-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    stroke: #27ae60;
    fill: none;
    stroke-width: 1.5;
}

.thankyou-title {
    font-size: 2.4rem;
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thankyou-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.thankyou-info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
    text-align: left;
}

.info-box-title {
    font-size: 1.2rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #666;
    font-weight: 500;
}

.info-value {
    color: #1a2332;
    font-weight: 600;
}

.thankyou-next-steps {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-button {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.action-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.action-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.action-secondary {
    background: #ecf0f1;
    color: #1a2332;
    border: 1px solid #bdc3c7;
}

.action-secondary:hover {
    background: #bdc3c7;
}

.faq-section {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 6px;
}

.faq-title {
    font-size: 1.1rem;
    color: #1a2332;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-text {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.faq-contact {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-detailed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: translateY(-8px);
    }

    .thankyou-card {
        padding: 2rem 1.5rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    @media (min-width: 768px) {
        .process-timeline::before {
            display: none;
        }
    }
}