*    {
  padding     :       0;
  margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
   color: #2c3e50;
    background-color: #f8f9fa;}

.navbar {
	 background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
  top: 0;
   z-index: 1000;
}

.nav-container	{
  max-width:    1200px;
   margin:        0 auto;
   display: flex;
  justify-content: space-between;
   align-items: center;
  padding: 1rem 2rem;
}

.logo-section    {
   display: flex;
   align-items: center;
}

.navbar-logo {
   height: 45px;
          width: auto;
}

.nav-menu {
  display: flex;
   list-style: none;
   gap   :   2rem;
}

.nav-menu a {
   text-decoration: none;
  color: #2c3e50;
   font-weight     :    500;
    transition: color 0.3s ease;
   position: relative;
}

.nav-menu a:hover {
    color: #3498db; 
	
}  

.nav-menu a::after

{
       background-color: #3498db;
   left: 0;
    height: 2px;
    bottom  :        -5px;
        width: 0;
  content: '';
   transition: width 0.3s ease;
   position: absolute;


}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger-menu {
  display: none;

	  flex-direction: column;

	   background: none;

		 border: none;

	    cursor   :    pointer;

	   gap: 5px;
	
}

.hamburger-menu span
{
  width: 25px;
   height: 3px;
  background-color:        #2c3e50;
  border-radius: 3px;
   transition: all 0.3s ease;
}

.hero-banner		{


   max-width: 1200px;
          margin: 0 auto;
    padding: 4rem 2rem;
   display    :  grid;
		grid-template-columns    :    1fr 1fr;
    gap   :3rem;
	align-items: center;
     }

.hero-content h1 {
   font-size: 3.5rem;
   color  : #1a252f;
               margin-bottom     : 1rem;
   line-height: 1.2;
}

.hero-subtitle {
   font-size :      1.1rem;
         color     :       #555;
  margin-bottom    :2rem;
        line-height: 1.8;
}

.hero-image {
  position: relative; 

} 

.hero-image img {
    width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	
}

.cta-button


{
          display: inline-block;
   padding: 0.8rem 2rem;
  border-radius: 8px;
               text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
    border: none;
  cursor: pointer;
   font-size   :   1rem;
	
}

.cta-button.primary {
  background-color: #3498db;
	color: #fff;
}  

.cta-button.primary:hover {
   background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}



.cta-button.secondary {
  background-color: #2c3e50;
  color   : #fff;
}

.cta-button.secondary:hover {
	 background-color    :  #1a252f;
  transform: translateY(-2px);
}

.cta-button.large {
      padding: 1rem 2.5rem;
   font-size: 1.1rem;
	}

.services-preview {
	max-width:    1200px;

	    margin    :        4rem auto;

		padding: 0 2rem; 
	
}

.section-header {
		text-align: center;
  margin-bottom: 3rem; 
	
}

.section-header h2 {
    font-size: 2.5rem;
               color: #1a252f;
    margin-bottom: 0.5rem;
}

.section-header p {
   font-size  :        1.1rem;

		color: #666;
}

.services-grid 
 {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {


    background-color: #fff;
	 border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:     all 0.3s ease;
     }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-image {

  width: 100%;
    height: 220px;
  overflow: hidden;
	

}

.service-image img {
  width: 100%;
  height: 100%;
   object-fit     :     cover;
   transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
   font-size: 1.3rem;
	color: #2c3e50;
  padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {


   color: #666;
   padding: 0 1.5rem 1.5rem;
   font-size: 0.95rem;

}

.why-us {
	  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
   padding: 4rem 2rem;
  margin     :    3rem 0;
     }

.why-us h2 {
   max-width: 1200px;
   margin: 0 auto 3rem;
    font-size: 2.5rem;
   color: #1a252f;
   text-align: center;
}

.benefits-container {
   max-width    :   1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.benefit-item {
  background-color : #fff;
   padding    :       2rem;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    margin-bottom: 0.5rem;
    color: #3498db;
    font-weight: 700;
       font-size: 2.5rem;
}

.benefit-item h4
{
  font-size: 1.2rem;
 color: #2c3e50;
       margin-bottom: 0.8rem;
}

.benefit-item p {
		color    :     #666;
  font-size: 0.95rem;
    line-height: 1.7;



}

.training-section {
  max-width: 1200px;
	    margin: 4rem auto;
	    padding: 0 2rem;
}

.training-wrapper {
   grid-template-columns: 1fr 1fr;
    align-items: center;
  display: grid;
   gap: 3rem;
}

.training-image {
  position: relative;
}

.training-image img {
    width: 100%; 
  height:    auto; 
   border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.training-content h2 {
   font-size: 2.2rem;
    color: #1a252f;
    margin-bottom: 1rem;
}

.training-content p {
  color: #666;
   font-size: 1rem;
  margin-bottom: 1.5rem;
   line-height: 1.8;
}

.training-features {
  list-style     :   none;
        margin-bottom: 2rem;
}

.training-features li {
   position: relative;
  padding-left:    1.5rem;
  color: #555;
  padding:       0.5rem 0;
}

.training-features li::before    {
  content: '→';
    position:      absolute;
  left: 0;
   color     :     #3498db;
	 font-weight: bold; 

}

.webinar-section {
  background-color: #f0f4f8;
    padding: 4rem 2rem;
}

.webinar-section h2 {
    max-width: 1200px; 
  margin  :0 auto 0.5rem; 
    font-size: 2.3rem; 
		 color: #1a252f; 
   text-align: center;
}

.section-description {
   max-width  :   1200px;
   margin: 0 auto 2.5rem;
     text-align: center;
		 color :#666;
                    font-size: 1rem;
}

.webinar-grid {

    max-width    :    1200px;
    margin    :0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.webinar-item
{
	 background-color: #fff;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   position :       relative;
  transition: all 0.3s ease;
	}

.webinar-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.webinar-tag {
   display: inline-block;
   background-color: #2ecc71;
    color: #fff;
    padding: 0.3rem 0.8rem;
  border-radius: 20px;
    font-size: 0.8rem;
   font-weight: 600;
  margin-bottom: 1rem;
	
}

.webinar-tag.premium {
    background-color: #f39c12;
}

.webinar-item h4 {
  font-size: 1.2rem;
   color: #2c3e50;
         margin-bottom: 0.8rem;
}

.webinar-item p {
     color: #666;
	 font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align:    center;
}  

.cta-content h2 {
       font-size: 2.5rem;
    margin-bottom: 1rem;
     }

.cta-content p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button.primary.large {
    background-color: #fff;
		color: #3498db;

} 

.cta-button.primary.large:hover {
    background-color: #ecf0f1;
}

.contact-section {
  max-width: 1200px;
    margin: 4rem auto;
   padding: 0 2rem;
}

.contact-wrapper {
   background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-wrapper h2 {
      font-size: 2.2rem;
  color: #1a252f;
  margin-bottom: 0.5rem;
    text-align :       center;

}

.contact-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
   color: #666;
    text-align: center;
}


.contact-form {
   margin: 0 auto;
    max-width: 600px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
   font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
	width :        100%;
	padding: 0.8rem;
    border :     1px solid #ddd;
	border-radius: 6px;
 font-size: 0.95rem;
    font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

	   border-color: #3498db;

	  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-submit {
    width: 100%;
	 padding: 1rem;
    background-color: #3498db;
      color: #fff;
  border   :    none;
  border-radius: 6px;
   font-size: 1rem;
   font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
	
}

.form-submit:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.footer {
  background-color: #1a252f;
  color: #ecf0f1;
   padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content   {
   max-width: 1200px;
	 margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.1rem;
    margin-bottom: 1rem;
  color    :  #fff;
}

.footer-section ul {
 list-style: none;
}

.footer-section ul li {

   margin-bottom: 0.7rem;
}

.footer-section ul a {
  color: #bdc3c7;
    text-decoration: none;
               transition     :     color 0.3s ease;
}

.footer-section ul a:hover {
   color: #3498db;
}

.footer-section p {

	   margin-bottom: 0.5rem;
	   color: #bdc3c7;
	    line-height     :    1.8;
	}

.phone-contact {
	font-weight: 600;
   color: #3498db;
}

.logo-image {
   height  :  50px;
  width: auto;
  filter: brightness(0) invert(1);
	margin-bottom:   1rem;
}

.footer-bottom


{
      max-width :  1200px;
   margin: 0 auto;
   padding-top: 2rem;
					border-top: 1px solid #34495e;
   text-align: center;
   color: #95a5a6;
    font-size   :0.9rem;
     }@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
    }

    .hero-banner {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .training-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .why-us h2 {
        font-size: 2rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-wrapper {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .service-card {
        border-radius: 8px;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }
}.services-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
	padding: 4rem 2rem;
    text-align :        center;
}

.services-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  line-height: 1.2;
}

.services-header-content p {
   font-size: 1.2rem;
  opacity: 0.95;
   max-width: 700px;
  margin: 0 auto;
}

/* Production ready */

	/* Typography */

.detailed-services {
      max-width    :       1200px;

    margin: 3rem auto;

   padding: 0 2rem;

}

.service-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
 gap  :    3rem;
   align-items: center;
	 padding: 3rem 0;
}

.service-detail-image    {
    position :relative;
	
     }

.service-detail-image img {
   width: 100%;
  height : auto;
    border-radius    :      12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
	
}

.service-detail-content h2

{
  font-size: 2.2rem;
   color: #1a252f;
      margin-bottom: 1rem;

	}

.service-intro {

    font-size: 1.05rem;
          color: #555;
  line-height: 1.8;
   margin-bottom: 2rem;



}

.service-highlights {
	  background-color: #f8f9fa;
  padding: 2rem;
 border-radius:10px;
	margin-bottom: 2rem;}

.service-highlights h3{
	font-size :       1.2rem;
            color: #2c3e50;
      margin-bottom: 1rem;
}

.service-highlights ul {
               list-style: none;
} 

.service-highlights li {
   padding :     0.5rem 0;
    color: #555;
 padding-left: 1.5rem;
   position: relative;
}

.service-highlights li::before {
  content: '✓';
    position: absolute;
  left: 0;
    color   :      #3498db;
   font-weight: bold;
}

/* Custom modifications */

/* Minified version */
.service-pricing-info {
  background-color: #ecf0f1;
   padding: 1.5rem;
   border-radius: 8px;
  margin-bottom: 2rem;
   border-left: 4px solid #3498db;
}

.service-pricing-info p {
   color: #2c3e50;
  margin-bottom : 0.8rem;
    font-size    :0.95rem;
}

.service-pricing-info p:last-child


{
	margin-bottom :    0;
	
}

.detailed-services.alternate .service-detail-wrapper {
   grid-template-columns: 1fr 1fr;}

.detailed-services.alternate .service-detail-image {
  order: 2;
}

.detailed-services.alternate .service-detail-content {
               order   :  1;
}

/* Debug styles */

.services-comparison {
    background-color: #f8f9fa;
  padding   :4rem 2rem;
    margin: 3rem 0;
}

/* Production ready */
.services-comparison h2  {
    text-align: center;
  max-width  :   1200px;
  margin: 0 auto 2rem;
  font-size: 2.3rem;
   color: #1a252f;
}
	/* Hack for old browsers */

/* TODO: optimize for mobile */

/* Auto-generated CSS */

.comparison-table {
  max-width: 1200px;
   margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
    background-color: #2c3e50;
   color: #fff;
 font-weight: 600;
   gap: 1rem;
}

.comparison-item-header {
         padding   :      1.5rem;
         text-align    :      center; 

}

.comparison-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom   :       1px solid #eee;
    gap: 1rem;
}

.comparison-row:last-child {


   border-bottom: none;

}

.comparison-item {

    padding    : 1.5rem;
  text-align: center;
   color: #555;
}

.comparison-header .comparison-item-header:first-child,
.comparison-row .comparison-item:first-child
{
  text-align: left;
}


.services-faq{
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.services-faq h2 {

	   font-size: 2.3rem;
        color     : #1a252f;
   margin-bottom: 2.5rem;
  text-align: center;



}

.faq-container {
   gap :      1.5rem;
    display: grid;
}

/* Legacy code */

.faq-item {
  background-color  :       #fff;
   border-radius: 10px;
	 padding     :  2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  cursor: pointer;
	}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Responsive design */

.faq-question {
  font-size: 1.1rem;
  color: #2c3e50;
    margin-bottom: 1rem;
	 font-weight: 600;
         display: flex;
   align-items: center;
  justify-content: space-between;
}

.faq-question::after {
     content: '+';
	font-size: 1.5rem;
    color: #3498db;
  transition: transform 0.3s ease;
     }

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {

      color: #666;
  line-height: 1.8;
   font-size: 0.95rem;
    display: none;}

.faq-item.active .faq-answer {
   display: block; 
	
}

.thankyou-section {
  background: linear-gradient(135deg, #f0f4f8 0%, #ecf0f1 100%);
  padding: 4rem 2rem;
    min-height: 70vh;
     display: flex;
    align-items: center;
      justify-content   :  center;
} 

.thankyou-container {
    background-color: #fff;
   border-radius: 15px;
   padding: 4rem;
    max-width: 600px;
      text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-icon		{
   margin-bottom: 2rem;
}


.success-checkmark {
  justify-content: center;
    align-items: center;
   display    :  flex;
          border-radius: 50%;
    position: relative;
  animation: scaleIn 0.5s ease;
  width: 80px;
   background-color: #2ecc71;
    height: 80px;
   margin: 0 auto;


}

.success-checkmark::after {
  content: '✓';
    font-size :     3rem;
    color: #fff;
   font-weight     :    bold;
}
@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.thankyou-container h1 {

  font-size    :2.2rem;
   color: #1a252f;
  margin-bottom: 1rem;}

.thankyou-message {
  font-size: 1.05rem;
  color: #555;
   margin-bottom: 2rem;
  line-height: 1.8;
}

.thankyou-details {
   background-color: #f8f9fa;
   -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
   padding: 2rem;
  border-radius: 10px;
    margin-bottom: 2rem;
	text-align: left;
}

.thankyou-details p 
 {
                    font-weight: 600;
   color: #2c3e50;
  margin-bottom: 1rem;
}

.thankyou-list {
   list-style: none;
}

.thankyou-list li {
	padding: 0.5rem 0;
  color: #555;
    padding-left: 1.5rem;
   position :  relative;
   text-align: left;
}

.thankyou-list li::before {
  content: '→';
	  position: absolute;
	    left: 0;
	    color: #3498db;
	   font-weight: bold;
}

.thankyou-info-box {

   background-color: #e8f4f8;
   border-left: 4px solid #3498db;
    padding: 1.5rem;
  border-radius: 5px;
  margin-bottom: 2rem;
  color: #2c3e50;


}

.thankyou-actions {
	   display   :      flex;
  gap   :1rem;
  justify-content: center;
    margin-bottom    : 1.5rem;
   flex-wrap:    wrap;}

.thankyou-actions .cta-button {
	   flex:     1; 
   min-width: 150px;}

.thankyou-footer-note {
  font-size: 0.9rem;
       color:   #666;
}

.thankyou-footer-note a {
    color: #3498db;
  text-decoration: none;
	font-weight: 600;
} 

.thankyou-footer-note a:hover   {
   text-decoration: underline;
}

.next-steps {

	    max-width    : 1200px;
    margin: 4rem auto;
    padding :   0 2rem;


}

.next-steps h2
	{
    font-size: 2.2rem;

   color: #1a252f;

   margin-bottom: 2.5rem;

         text-align: center;
	
}

.next-steps-grid	{
          display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap :     2rem;


}

.next-step-card {
      background-color: #fff;
	padding: 2rem;
        border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition:      all 0.3s ease;}

.next-step-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);

}

.step-number {

       width    :        50px;
    height: 50px;
               background-color: #3498db;
  color: #fff;
  border-radius: 50%;
    display :        flex;
  align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   font-weight: 700;
  margin-bottom: 1rem;
	}

.next-step-card h3 {
    font-size: 1.2rem;
   color: #2c3e50;
    margin-bottom: 0.8rem;
}

.next-step-card p {
    color: #666;
  font-size   :      0.95rem;
    margin-bottom: 1rem;
}

.next-step-card a  {
   color: #3498db;
   text-decoration: none;
   font-weight: 600;
   transition: color 0.3s ease;
}

.next-step-card a:hover  
  {
	    color: #2980b9;


} 

.testimonials-preview {
          background-color: #f0f4f8;
	padding: 4rem 2rem;
}

.testimonials-preview h2 {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  font-size: 2.3rem;
    color: #1a252f;
    text-align :        center;
}

.testimonials-grid    {

   max-width: 1200px;
	margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem; 

     }



.testimonial-card {
	 background-color: #fff;
   padding: 2rem;
	border-radius     :        10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top    :    4px solid #3498db;
}

.testimonial-text {
	  color: #555;
  font-style  :        italic;
   margin-bottom: 1rem;
	 line-height: 1.8;
     }

.testimonial-author {
   color: #2c3e50;
  font-weight: 600;
   font-size: 0.95rem;
} @media (max-width: 768px) {
    .services-header-content h1 {
        font-size: 2rem;
    }

    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detailed-services.alternate .service-detail-image {
        order: 1;
    }

    .detailed-services.alternate .service-detail-content {
        order: 2;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-item-header,
    .comparison-item {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .services-faq h2 {
        font-size: 1.8rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .success-checkmark {
        width: 60px;
        height: 60px;
    }

    .success-checkmark::after {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-header {
        padding: 2rem 1rem;
    }

    .services-header-content h1 {
        font-size: 1.6rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-item-header,
    .comparison-item {
        text-align: center;
        padding: 0.8rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 1.6rem;
    }
}.policySection
	{
   padding   : 80px 2rem;
    background: #f8f9fa;
   min-height: 70vh;
}

.policyContainer {
	max-width  : 900px;
    margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {
   font-weight     : 700;
    margin-bottom: 2rem;
	line-height: 1.3;
  color:  #1a252f;
   font-size: 2.8rem;

}

.policyContainer h3 {
    color: #2c3e50;
    margin-top: 2.5rem;
	font-weight: 600;
   font-size: 1.4rem;
    line-height: 1.4;
  margin-bottom: 1rem;
}

.policyContainer h3:first-of-type		{
  margin-top: 0;
}

.policyContainer p {
  color: #555; 
  margin-bottom: 1.2rem; 
	 line-height: 1.8; 
   font-size: 1rem; 
    text-align: justify;
}

.policyContainer p:last-child	{
     margin-bottom: 0;

     }

.policySection {

	  background: linear-gradient(to bottom, #f8f9fa 0%, #ecf0f1 100%);
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 0.9rem;
        line-height: 1.6;
        text-align: left;
    }
}.policyContainer::-webkit-scrollbar {
   width: 8px;
}

.policyContainer::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.policyContainer::-webkit-scrollbar-thumb {
  background:        #3498db;

        border-radius: 4px;
}

.policyContainer::-webkit-scrollbar-thumb:hover {
	 background: #2980b9;
}