* {
   padding: 0;

	  box-sizing :        border-box;

	    margin: 0; 
	
}

html {
      scroll-behavior: smooth;

	}

body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
   color: #2c3e50;
  background-color: #f8f9fa;


}

.navbar-section {

  background: linear-gradient(135deg, #1a1f36 0%, #2d3561 100%);
   padding    : 1rem 0;
   position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.navbar-container {
    max-width: 1200px;
    margin:      0 auto;
		 display: flex;
  justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.navbar-logo img {
    height   :64px;
    width: auto;
  filter: brightness(0) invert(1);
}

.navbar-menu {

	    display: flex;
     list-style: none;
    gap: 3rem;}

.navbar-menu a  {
    color: #fff;
	text-decoration: none;
   font-weight: 500;
	transition: color 0.3s ease;
   font-size    :    1rem;
}

.navbar-menu a:hover {
    color: #64c5eb;
}

.burger-menu {
   display: none;
    flex-direction     : column;
  background : none;
   border: none;
    cursor   :pointer;
  gap: 5px;
}

.burger-menu span{
	width     :    25px;
    height: 3px;
   background-color     :  #fff;
  transition: all 0.3s ease;
  border-radius  :2px; 

}

.burger-menu.active span:nth-child(1) {

  transform: rotate(45deg) translate(8px, 8px);


}

.burger-menu.active span:nth-child(2)  
  {
  opacity   :  0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #1a1f36;
        padding: 2rem;
        gap: 1rem;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu a {
        font-size: 1.1rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }
}.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
   gap  :      3rem;
    max-width :     1200px;
  margin: 4rem auto;
        padding: 0 2rem; 

}

.hero-content h1 {
        font-size: 3rem;
   margin-bottom: 1.5rem;
	color: #1a1f36;
          line-height: 1.2;
}


.hero-content p
{
    font-size :   1.1rem;
   color :     #555;
   margin-bottom: 2rem;
                    line-height: 1.8;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
	padding: 1rem 2rem;
   border-radius   :50px;
   text-decoration  :   none;
    font-weight :      600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
	}

.hero-image img {
    width: 100%;
	border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        margin: 2rem auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.expertise-section {
  background  : #fff;
   padding    :        4rem 2rem;
   margin: 2rem 0; 

}

.expertise-container {
     max-width: 1200px;
    margin: 0 auto;
}

.expertise-section h2 {


    text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1f36;
}

.expertise-grid {
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
   display   :  grid;
}

.expertise-card {
      background: #f8f9fa;
	padding: 2rem;
    border-radius: 12px;
   transition: all 0.3s ease;
  border : 1px solid #e0e0e0;
	
	}

.expertise-card:hover {
	  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-color: #667eea;

}

.card-icon {
    width: 60px;
   height: 60px;
   margin-bottom: 1rem;
}

.card-icon img {
   width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}  

.expertise-card h3 {
    font-size: 1.3rem;
   margin-bottom: 1rem;
   color: #1a1f36;
}

.expertise-card p {
  color    :#666;
  line-height     :    1.6;
   font-size: 0.95rem;
	
} @media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expertise-section h2 {
        font-size: 2rem;
    }
}.workshops-section {
   max-width    :        1200px;
   margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
	align-items: center; 
	
}

.workshops-image img{
    width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.workshops-content h2 {
  font-size: 2.2rem;
      margin-bottom: 1.5rem;
    color  :     #1a1f36;
} 

.workshops-content p {
    font-size: 1rem;
    color: #555;
  margin-bottom: 1.5rem;
    line-height: 1.8;
}

.workshops-list {
	list-style: none;
  margin-top   :     1.5rem;
}



.workshops-list li {
   padding: 0.8rem 0 0.8rem 2rem;
  color: #666;
    position: relative;
}

.workshops-list li:before {
  content: "✓";
   position: absolute;
  left   : 0;
	color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
}@media (max-width: 768px) {
    .workshops-section {
        grid-template-columns: 1fr;
        margin: 2rem auto;
    }

    .workshops-content h2 {
        font-size: 1.8rem;
    }
}.webinars-section 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :      #fff;
    padding: 4rem 2rem;
  margin: 3rem 0;

}

.webinars-section h2 {
   margin-bottom: 1rem;
    text-align: center;
   font-size   :      2.5rem;
}  

.section-intro {
  text-align :  center;
    font-size: 1.1rem;
   max-width: 800px;
  margin     :       0 auto 3rem;
    opacity  :  0.95;
}

.webinars-grid {
	display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 2rem;
    max-width: 1200px;
   margin: 0 auto;
}

.webinar-card 
 {
  background: rgba(255, 255, 255, 0.1);

    border-radius: 12px;

   overflow: hidden;

  backdrop-filter: blur(10px);

   transition:all 0.3s ease;

  border: 1px solid rgba(255, 255, 255, 0.2);
}


.webinar-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.webinar-image {
    width: 100%;
  height    :    200px;
   overflow: hidden;
}


.webinar-image img {
  width: 100%;
   height:       100%;
  object-fit: cover;
}

.webinar-card h3 {
   padding: 1.5rem 1.5rem 0.8rem;
    font-size: 1.3rem;
}

.webinar-card p {
  padding: 0 1.5rem 1rem;
    font-size: 0.95rem;
   opacity     :      0.9;
}

.webinar-type {
    display: inline-block;
  margin: 0 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius : 20px;
         font-size: 0.85rem;
    font-weight: 600;
}@media (max-width: 768px) {
    .webinars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .webinars-section h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1rem;
    }
}.services-offer-section {
   max-width: 1200px;
   margin:       4rem auto;
    padding: 0 2rem;
}

.services-offer-section h2 {
  text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #1a1f36;
}

.services-offer-grid {
  display: grid;
     grid-template-columns: repeat(3, 1fr);
   	gap: 2rem;
}

.service-item {
    background: #fff;
  padding: 2rem;
               border-radius: 10px;
     border-left: 4px solid #667eea;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-item:hover 
 {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
	
}


.service-item h3  {
					font-size  :       1.2rem;
	 margin-bottom: 1rem;
   color: #1a1f36;
}

.service-item p {
   color: #666;
  font-size : 0.95rem;
  line-height: 1.6;
}@media (max-width: 768px) {
    .services-offer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-offer-section h2 {
        font-size: 2rem;
    }
}.strategy-section {
	   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
    max-width: 1200px;
    margin: 4rem auto;
   padding: 0 2rem;}

.strategy-content h2	{

   font-size: 2.2rem;
   margin-bottom: 1.5rem;
  color: #1a1f36; 

	}

.strategy-content p   {
   color: #555;
   font-size: 1rem;
	margin-bottom: 1.5rem;
   line-height: 1.8;
}

.strategy-image img {
   width: 100%;
	   border-radius: 12px;
	  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .strategy-section {
        grid-template-columns: 1fr;
        margin: 2rem auto;
    }

    .strategy-content h2 {
        font-size: 1.8rem;
    }
}.cta-section	{
     background: linear-gradient(135deg, #2d3561 0%, #1a1f36 100%);
   color: #fff;
   text-align: center;
  padding: 4rem 2rem;
   margin: 3rem 0;
     }

.cta-section h2 {
    font-size     :    2.5rem;
   margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
    max-width: 700px;
   margin-left: auto;
  margin-right    :       auto;
	opacity    :     0.95;
}

.cta-button-large {
    display  :      inline-block;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color: #fff;

    padding: 1.2rem 2.5rem;

    border-radius: 50px;

  text-decoration:     none;

    font-weight     :  600;

  font-size: 1.1rem;

   transition: all 0.3s ease;

  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}.contact-section {
   max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.contact-container h2 {
	   text-align  : center;
   font-size: 2.3rem;
  margin-bottom :    0.5rem;
    color: #1a1f36;
}

.contact-intro {
	color: #666;
        text-align     :  center;
    margin-bottom: 2rem;
  font-size     :       1rem;
}

.contact-form
	{
		background: #fff;
  padding    :        2.5rem;
	border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {


         margin-bottom: 1.5rem;


}

.form-group label {
  display: block;
        margin-bottom  :    0.5rem;
   font-weight: 600;
    color: #1a1f36;
}

.form-group input,
.form-group select,
.form-group textarea {
  width    :  100%;
	 padding: 0.8rem;
  border: 2px solid #e0e0e0;
   -webkit-border-radius: 8px;
   border-radius     :   8px;
   font-family: inherit;
    font-size: 1rem;
               transition :  border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus 
 {
        outline    :  none;
	border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize:        vertical;
   min-height: 120px;
}

.submit-button {


    width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color    :    #fff;
	padding: 1rem;
    border : none;
               border-radius: 8px;
  font-weight: 600;
    font-size : 1rem;
   cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}@media (max-width: 768px) {
    .contact-section {
        margin: 2rem auto;
    }

    .contact-container h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.footer-section{
               background: #1a1f36;
  color: #fff;
         padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
	margin: 0 auto;
    display: grid;
               grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
    margin-bottom :     2rem;
}

.footer-logo-img {
   height     :      86px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
	 display: flex;
     gap: 3rem;
}

.footer-address h4,
.footer-contact h4,
.footer-nav h4 {
       margin-bottom   :0.8rem;
   font-size: 1rem;

}

.footer-address p,
.footer-contact p {
	color: #b0b5d0;
	               font-size: 0.95rem;
}

.footer-nav ul {
   list-style: none;
}  

.footer-nav ul li {
  margin-bottom: 0.5rem;
}

.footer-nav a {


  color: #b0b5d0;
  text-decoration: none;
    font-size: 0.95rem;
	transition: color 0.3s ease;
	}

.footer-nav a:hover {
       color: #667eea;
}

.footer-bottom {
  padding-top: 1.5rem;
   font-size: 0.9rem;
      text-align: center;
    color: #8890b5;
    border-top: 1px solid #2d3561;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}.services-hero {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
  padding: 5rem 2rem;
    text-align :   center;

}

.services-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
	line-height: 1.2;
	
}

.services-hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
         max-width: 700px;
    margin: 0 auto; 
	
}

.breadcrumb-section {
   background     :       #f8f9fa;
  padding: 1.5rem 2rem;
   border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-container {
    max-width: 1200px;
   margin: 0 auto;
  font-size    :  0.95rem;
}

.breadcrumb-container a {
  color: #667eea;
  text-decoration: none;
    transition: color 0.3s ease;
	
}

.breadcrumb-container a:hover {

  color: #764ba2;
	}  

.breadcrumb-container span {
	    color: #999;
        margin: 0 0.5rem;
}

.services-detailed-section {


    max-width: 1200px;
   margin: 3rem auto;
   padding     :       0 2rem;
    display: grid;
	 grid-template-columns: 2fr 1fr;
  gap: 3rem;

}
	/* Debug styles */
.services-list
{
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-detailed-card{


  background: #fff;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	display: grid;
	grid-template-columns: 300px 1fr;
   transition: all 0.3s ease;
}

/* Cross-browser fix */

.service-detailed-card:hover


{
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.service-card-image {
    width: 100%;
  height: 280px;
   overflow: hidden;
}
/* Vendor-specific */

.service-card-image img {
    width: 100%;
   height: 100%;
  object-fit: cover;
   transition: transform 0.3s ease;
}

.service-detailed-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
    padding: 2rem;
	 display: flex;
   flex-direction: column;
}

.service-card-content h2 {
    font-size: 1.8rem;
     margin-bottom: 1rem;
    color: #1a1f36;
}

.service-card-content p {
  color :       #555;
    margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-features {

	   margin: 1.5rem 0; 
}

.service-features h3 {
    font-size: 1rem;
      margin-bottom   : 0.8rem;
      color: #1a1f36;
}


.service-features ul {
  margin-left     : 0;

    list-style: none;
}

.service-features ul li {
  padding: 0.4rem 0 0.4rem 1.8rem;
    position: relative;
   color: #666;
                    font-size: 0.9rem;
}

.service-features ul li:before {
  content: "•";
    position: absolute;
               left: 0;
   color: #667eea;
      font-weight: bold;
  font-size    : 1.2rem;
	
}

.service-duration {
  display   :    flex;
   gap: 1rem;
    margin-top: auto;
   padding-top: 1rem;
       border-top: 1px solid #e0e0e0;
}

.duration-label {
  font-weight     :  600;
   color: #1a1f36;


}

.duration-value {
     color: #667eea;
  font-weight: 500;
     }

/* Utility classes */

.services-sidebar	{
   gap: 2rem;
    flex-direction :   column;
    display: flex;
}

.sidebar-box {
    background: #fff;
   padding: 1.5rem;
   border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);


}

/* Animation and transitions */

	/* Responsive design */
	/* Debug styles */
.sidebar-box h3
{
       font-size   :      1.2rem;
  margin-bottom: 1rem;
   color: #1a1f36;
}

.benefits-list,
.expectations-list   {
	 list-style: none;
}  

.benefits-list li,
.expectations-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    color: #666;
  position  : relative;
   font-size: 0.9rem;
	}

.benefits-list li:before,
.expectations-list li:before {
  content: "✓";

	    position: absolute;

	  left: 0;

	        color     :#2ecc71;

	  font-weight: bold;

}

/* Debug styles */

.sidebar-box p {
  color: #666;
	   font-size: 0.9rem;
	    margin-bottom: 1rem;
	   line-height: 1.6;
}

.pricing-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
}

.pricing-box h3 {
   color: #fff;
}

/* Cross-browser fix */


.pricing-box p {
  color: #e0e0f0;
}

.sidebar-cta {
    font-weight: 600;
          display    :  inline-block;
    color: #667eea;
    background: #fff;
    text-decoration: none;
    border-radius: 8px;
  transition: all 0.3s ease;
  padding :  0.8rem 1.5rem;
}

.sidebar-cta:hover  {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.comparison-section {

   max-width: 1200px;
   margin: 4rem auto;
    padding: 0 2rem;
     }
/* Build system output */

.comparison-section h2 {

   text-align: center;
  font-size    :      2.3rem;
    margin-bottom     :        2rem;
  color     :    #1a1f36;
	}

.comparison-table{
    background    :   #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   overflow-x  :   auto;
}

table {


  width :        100%;
    border-collapse: collapse;
	}

thead tr {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

/* Minified version */

th {
   font-weight: 600;
  text-align: left;
    padding: 1.2rem;
}

td {

    padding: 1rem 1.2rem;
   border-bottom: 1px solid #e0e0e0;
     }

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background-color: #f8f9fa;
}

tbody td:first-child {
    color: #1a1f36;
         font-weight: 500;
}

.check    {


   color:      #2ecc71;
   font-weight: bold;
  font-size     :        1.2rem;
}

.cross {
   color: #e74c3c;
    font-weight: bold;
   font-size: 1.1rem;
}

.service-cta-section {
  background: linear-gradient(135deg, #2d3561 0%, #1a1f36 100%);
  color: #fff;
	 text-align: center;
   padding: 4rem 2rem;
    margin: 4rem 0;
}

.service-cta-section h2 {
   font-size: 2.3rem;
    margin-bottom   :1rem;
}

.service-cta-section p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
   max-width: 700px;
   margin-left     :  auto;
  margin-right  :       auto;
    opacity: 0.95;
}

.cta-button-service {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
   padding: 1.2rem 2.5rem;
       border-radius     :   50px;
	 text-decoration: none;
     font-weight: 600;
	 font-size  :     1rem;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Auto-generated CSS */

.cta-button-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

.thankyou-section   {
   padding: 0 2rem; 
  margin: 4rem auto; 
   max-width   :     800px;
}

.thankyou-container {
   background: #fff;
   border-radius :        12px;
   padding  :   3rem;
    text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thankyou-icon     {
  width: 100px;
	height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
   align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 50%;
}

.thankyou-icon img {
    width: 50px; 
    height: 50px; 
  filter: brightness(0) invert(1);
}

.thankyou-container h1 {
    font-size: 2.5rem;
  color : #1a1f36;
   margin-bottom     :        0.5rem;
}

.thankyou-subtitle		{
    font-size: 1.2rem;
  color: #667eea;
    margin-bottom: 2rem;
               font-weight: 500;
}

.thankyou-content    {
    text-align: left;
  margin: 2rem 0;
}

.thankyou-message


{
   background: #f8f9fa;
  padding: 1.5rem;
   border-radius:8px;
  border-left: 4px solid #667eea;
    margin-bottom: 2rem;
}



.thankyou-message p {


    color: #555;
    margin-bottom: 1rem;
     line-height: 1.8;

}

.thankyou-message strong {
  color: #1a1f36;
}

/* FIXME: IE11 compatibility */

.next-steps h2 {
  font-size: 1.5rem;
    color: #1a1f36;
  margin-bottom: 1.5rem;
   text-align: center;
}

.steps-list {

		 display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
	}
	/* Colors and backgrounds */


.step-item {
  text-align: center;
}

.step-number {
  display: inline-flex;
	align-items: center;
    justify-content    :   center;
   width    :        50px;
	 height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
   font-weight:     bold;
    font-size: 1.3rem;
   border-radius: 50%;
         margin-bottom: 1rem;
     }

.step-item h3 {
	font-size     :   1.1rem;
   color: #1a1f36;
	margin-bottom: 0.5rem;
	
}

.step-item p {
    color: #666; 
	   font-size: 0.9rem; 
	   line-height: 1.6;
}

.helpful-info h2 {
	font-size: 1.5rem;
	color: #1a1f36;
  margin   :2rem 0 1.5rem;
  text-align: center;
}

.info-boxes {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-box {
	background: #f8f9fa;
         padding    : 1.5rem;
  border-top: 3px solid #667eea;
   border-radius: 8px;
}
/* FIXME: IE11 compatibility */
	/* Temporary fix */


.info-box h3
	{
   font-size: 1rem;
  color: #1a1f36;
   margin-bottom:     0.8rem;
}

.info-box p {
       color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.thankyou-actions {

   display: flex;
    gap: 1rem;
	justify-content: center;
   margin-top: 2.5rem;
  flex-wrap     : wrap;}

/* Utility classes */

.action-button    {


	display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;


}


.action-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color     :#fff;
     box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-button.primary:hover  
  {
	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);


}

/* Debug styles */

/* Hack for old browsers */

.action-button.secondary {
  background: #f8f9fa;
   color: #667eea;
 border: 2px solid #667eea;
}

.action-button.secondary:hover {
	background: #667eea;
    color    :  #fff;
}

.recommended-services
{
    background     :    #f8f9fa;
  padding: 4rem 2rem;
    margin-top :   3rem;
}
	/* NOTE: keep for legacy support */
.recommended-container {
   max-width  :      1200px;
    margin: 0 auto;
}

.recommended-container h2{
   text-align    :  center;
  font-size     :    2.2rem;
   margin-bottom: 1rem;
  color: #1a1f36;
}

.recommended-intro {
   text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.recommended-cards	{
  grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 2rem;
}

.recommended-card {
  background: #fff;
    padding: 2rem;
   border-radius: 12px;
	text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;}



.recommended-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.recommended-icon {
  justify-content: center;
	 margin: 0 auto 1rem;
  align-items    :       center;
		 display    : flex;
   width: 70px;
  height: 70px;
}

.recommended-icon img {
   width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.recommended-card h3
	{
    font-size: 1.2rem;
	 color:     #1a1f36;
       margin-bottom: 0.8rem;
	
}

.recommended-card p {

	  color: #666;
   font-size: 0.9rem;
  line-height: 1.6;
     }
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .services-detailed-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto;
    }

    .service-detailed-card {
        grid-template-columns: 1fr;
    }

    .service-card-image {
        height: 200px;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .recommended-cards {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 0.8rem;
    }

    .comparison-section {
        margin: 2rem auto;
    }

    .service-cta-section {
        margin: 2rem 0;
        padding: 2rem 1rem;
    }

    .service-cta-section h2 {
        font-size: 1.7rem;
    }
}.policySection {
  padding:  80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 400px); 

}

.policyContainer {
   max-width: 800px;
    margin:    0 auto;
   text-align: left;
    background: #fff;
  padding: 3rem;
	border-radius :        12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.policyContainer h2 {
    font-size: 2.5rem;
  color: #1a1f36;
      margin-bottom: 1.5rem;
    font-weight: 700;
      line-height:   1.2;
}

.policyContainer h3 {
  font-size: 1.3rem;
  color: #2d3561;
  margin-top: 2rem;
  margin-bottom: 1rem;
    font-weight: 600;
   border-left: 4px solid #667eea;
  padding-left: 1rem;
}

.policyContainer p {
   color: #555;
  margin-bottom: 1.5rem;
   line-height: 1.8;
	font-size   :       1rem;
}

.policyContainer strong {
	  color: #1a1f36;
       font-weight: 600;

}

.policyContainer ul {
    list-style: none;
 margin-bottom:    1.5rem;
  margin-left: 1rem;
}

.policyContainer ul li {
   margin-bottom: 0.8rem;
	 padding-left: 1.5rem;
 position: relative;
  color: #555;
  line-height: 1.7;
}

.policyContainer ul li:before {
  content: "•";
	 position:   absolute;
  left: 0;
   color: #667eea;
  font-weight: bold;
 font-size: 1.2rem; 

}

.policyContainer p:first-of-type {
		font-size: 1.1rem;
   color: #666;
   font-style: italic;
   background: #f0f4ff;
   padding: 1rem;
  border-radius:       8px;
  margin-bottom: 2rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }

    .policySection {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer h3 {
        font-size: 1rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }

    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
    }
}