* {
    margin: 0;
   padding    :    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: #ffffff;
}

.navigation-bar {
   background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   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: 15px 30px;
}

.nav-logo img

{
    max-height: 74px;
    width : auto;
    display  :      block;
}

.nav-logo {
   text-decoration: none;
} 

.nav-menu {
         display: flex;
   list-style: none;
    gap: 35px;
}



.nav-link {
   text-decoration: none;
  color: #2c3e50;
    font-weight: 500;
 font-size: 16px;
   position: relative;
   transition: color 0.3s ease;
}

.nav-link:hover {
    color   :        #3498db;
}

.nav-link::after {
  height: 2px;
       position: absolute;
  content: '';
   transition    :    width 0.3s ease;
	 bottom: -5px;
  width   :   0;
      left: 0;
                    background-color: #3498db;
}

.nav-link:hover::after {

     width: 100%;}

.nav-toggle {

	  display: none;
   flex-direction    :        column;
    cursor: pointer;
}

.hamburger-line {
  width: 25px;
       height: 3px;
     background-color: #2c3e50;
      margin: 5px 0;
       transition: all 0.3s ease;
}@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-button-large {
    display: inline-block;
    background-color: #667eea;
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
}

.cta-button-large:hover {
    background-color: #764ba2;
    border-color: #764ba2;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.intro-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.intro-section > .container > p {
    font-size: 16px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.8;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #667eea;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 30px;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-item h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 15px;
    color: #666;
    margin: 0 25px 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    margin: 0 25px 25px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #764ba2;
    margin-left: 30px;
}

.approach-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.approach-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .approach-content {
        grid-template-columns: 1fr;
    }
}.testimonials-section {
    padding  :80px 30px;
}

.testimonials-section h2 {
   font-size: 36px;
    margin-bottom: 50px;
  color: #2c3e50;
    text-align: center;
}

.testimonials-grid {
   display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card  {
  background-color   : #f8f9fa;
  padding   :  30px;
   border-radius: 10px;
  border-left: 4px solid #667eea;
    position: relative; 

}

.testimonial-card p {
    font-size: 15px;
  color: #666;
   line-height: 1.8;
    margin-bottom: 20px;
  font-style: italic; 
	
}

.testimonial-card h4 {
    color: #2c3e50;
   font-size: 16px;
    margin-bottom :        5px;

}

.testimonial-role


{
   color: #999;
  font-size: 13px;
    font-style: normal;
}

.cta-section {
   padding: 100px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   text-align: center;

}

.cta-section h2 {
    font-size     :        40px; 
	    margin-bottom: 20px;
}

.cta-section p {
    font-size   :  18px;
    margin-bottom: 40px;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
  opacity: 0.95;
}

.webinar-section {
    padding: 80px 30px;
	background-color    :    #f8f9fa;
}

.webinar-section h2		{
   font-size: 36px;
	   margin-bottom  : 50px;
	  color: #2c3e50;
	   text-align: center;
}

.events-grid


{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: #ffffff;
	 padding  :      30px;
        border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;


}

.event-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.event-card h3 {
  font-size: 20px;
    margin-bottom: 15px;
 color: #667eea;
}

.event-card p {
   font-size: 15px; 
	   color: #666; 
		line-height : 1.7; 
	    margin-bottom   : 15px;
}

.event-date {
	    font-weight: 600;
    color: #764ba2;
    font-size: 14px;
	margin-top: 15px;
     }

.event-link {
 display: inline-block;

    margin-top: 15px;

   color: #667eea;

   text-decoration: none;

   font-weight: 600;

   font-size: 14px;

  transition: all 0.3s ease;
}

.event-link:hover {
	 color: #764ba2;

}

.resources-section {

	    padding: 80px 30px;


}

.resources-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.resources-section > .container > p
{
  text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
  margin-left: auto;
	margin-right: auto;
}

.resources-grid  
  {
	 display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.resource-card {
  padding: 30px;
   transition: all 0.3s ease;
  border-radius:       10px;
	background-color: #f8f9fa;
}

.resource-card:hover {
  transform: translateY(-3px);

   background-color: #e8eef7;
}



.resource-card h3 {
    font-size: 18px;
  color: #667eea;
   margin-bottom: 15px;
}

.resource-card p {
   color: #666;
  line-height: 1.7;
    font-size: 15px;
     }

.contact-section {
	 padding: 80px 30px; 
     background-color: #f8f9fa;
}

.contact-section h2 {


   font-size: 36px;
    margin-bottom: 20px;
  color   :        #2c3e50;
  text-align: center;

}



.contact-intro {
  text-align :  center;
               font-size: 16px;
   color: #666;
	 max-width:600px;
    margin: 0 auto 50px;
    line-height:     1.8; 

}

.contact-content {
    display: grid;
	 grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form {
   background-color: #ffffff;
     padding: 40px;
	border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}


.form-group {
   margin-bottom: 25px;

}

.form-group label {
   display: block;
   margin-bottom: 8px;
  color: #2c3e50;
    font-weight: 600;
   font-size:      14px;
}

.form-group input,
.form-group select,
.form-group textarea  {
  width :    100%;
   padding: 12px 15px;
   border: 1px solid #ddd;
			border-radius: 6px;
    font-size: 14px;
    font-family:       inherit;
    transition     :  all 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);
}

.submit-btn {
   width: 100%;
		padding: 15px;
    background-color: #667eea;
   color   :   #ffffff;
                    border  :      none;
         border-radius: 6px;
  font-size: 16px;
    font-weight: 600;
    cursor: pointer;
          transition: all 0.3s ease;
}

.submit-btn:hover {
	background-color :#764ba2;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-info {
  background-color: #ffffff;
          padding: 30px;
  border-radius     : 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-info h3 {

   font-size: 24px;
  margin-bottom: 30px;
       color: #2c3e50; 
	


}

.info-block {
   margin-bottom: 30px;
}

.info-block h4 {
  font-size: 16px; 
	  color  :      #667eea; 
	    margin-bottom    :    10px; 
	   font-weight: 600;
}

.info-block p {
        font-size:  15px;
    color: #666;
   line-height:   1.8;
}

.cookie-alert	{
  position: fixed;
  bottom :  20px;
   left: 20px;
   right: 20px;
  background-color: #2c3e50;
   color  : #ffffff;
  padding: 20px;
   border-radius:      10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
   display: none;
 max-width: 600px;
}

.cookie-alert.show {
  display: block;
}

.cookie-content p {
	font-size: 14px;
   margin-bottom: 15px;
  line-height: 1.6;
}

.cookie-buttons

{

  display: flex;
   gap     :     10px;
         flex-wrap: wrap;
}

.cookie-btn    {
   -moz-border-radius :5px;
		 padding: 10px 20px;
   border: none;
   border-radius: 5px;
  cursor: pointer;
   font-size: 13px;
    font-weight: 600;
	 text-decoration: none;
   transition: all 0.3s ease;
	
} 

.accept-btn {
	 background-color: #667eea;
   color: #ffffff;
	
}

.accept-btn:hover     {
   background-color: #764ba2;
}

.reject-btn {
    background-color     :       transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.reject-btn:hover {
  background-color: rgba(255,255,255,0.1);


}

.settings-btn
{
  background-color: transparent;
    color: #667eea;
  border: 1px solid #667eea;
}

.settings-btn:hover {
   color: #ffffff;
         background-color  : #667eea; 
	
}

.footer-section {
        background-color: #2c3e50;
   color: #ffffff;
   padding: 60px 30px 30px;
}

.footer-container {
    max-width : 1200px;
   margin: 0 auto;
}

.footer-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap   : 40px;
    margin-bottom    :       40px;
}

.footer-logo-section {
	display: flex;
    align-items: flex-start;
}

.footer-logo {
   max-height: 96px;
	width: auto;
  filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4 {


   font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
     }

.footer-links ul {
	list-style: none;
}


.footer-links li   {

    margin-bottom: 10px;
     }



.footer-links a {
    color: #bdc3c7;
  text-decoration: none;
    font-size: 14px;
   transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #667eea;

}

.footer-contact p {
  font-size: 14px;
    color: #bdc3c7;
   margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
       padding-top: 20px;
  text-align: center;
    font-size: 13px;
	color: #95a5a6;
}@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .intro-section h2,
    .services-preview h2,
    .approach-section h2,
    .testimonials-section h2,
    .webinar-section h2,
    .resources-section h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info {
        padding: 25px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cookie-alert {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color    :   #ffffff;
  padding: 80px 30px;
  text-align: center;
}

.services-hero-content h1 {
   font-size: 44px;
    margin-bottom: 20px;
  font-weight   :      700;
}

.services-hero-content p {
	font-size: 18px;
        opacity: 0.95;
    max-width: 700px;
	 margin: 0 auto;
}

.services-overview {
  padding: 60px 30px;
  background-color:  #f8f9fa;
}

.services-overview h2 {
   font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
    color: #2c3e50;
}

.overview-intro {

	    margin: 0 auto;
  max-width: 700px;
    line-height: 1.8;
   color: #666;
  font-size: 16px;
    text-align: center;}

.service-detailed	{
   padding: 80px 30px;
}

.service-detail-item {
	display    :       grid;
    grid-template-columns: 1fr 1fr;
   gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-item.alternate {
            direction :       rtl;}

.service-detail-item.alternate > * {
  direction: ltr;
}

.service-detail-image img {
	 width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
   display: block;
}

.service-detail-content h3     {
   font-size  :32px;
   color:        #2c3e50;
   margin-bottom: 20px;
}

.service-detail-content p {
  font-size : 16px;

	   color: #666;

	   line-height: 1.8;

	    margin-bottom: 20px;
}

.service-detail-content h4 {
   font-size: 18px;
    font-weight: 600;
   color: #667eea;
  margin:     25px 0 15px;
}

.service-list		{
    list-style     :   none;
   padding:      0;
  margin-bottom  :20px;
}

.service-list li {
    padding:10px 0 10px 30px;
   position   :        relative;
  color: #666;
  font-size: 15px;
	line-height: 1.7;
}

.service-list li:before {
  content: '';
      position: absolute;
     left: 0;
   			top: 12px;
       width: 8px;
       height: 8px;
                  background-color: #667eea;
       border-radius :  50%;
}

.service-price {
    background-color: #f0f4ff;
  padding: 15px;
    border-radius: 8px;
   border-left:  4px solid #667eea;
    color: #667eea;
    font-weight    : 600;
    margin-top: 20px;
     }
@media (max-width: 1024px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-item.alternate {
        direction: ltr;
    }
}.services-comparison {
    padding: 80px 30px;
    background-color: #f8f9fa;
	
}

.services-comparison h2 {
    font-size: 36px;
	text-align: center;
         margin-bottom    :   50px;
   color: #2c3e50;
}

.comparison-table-wrapper {
    overflow-x     :    auto;
}

.comparison-table {
    width:  100%;
      border-collapse    :      collapse;
  background-color: #ffffff;
  border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.comparison-table thead {
	background-color: #667eea;
    color: #ffffff;
	
}

.comparison-table th {
    padding: 20px;
	 text-align: left;
   font-weight: 600;
				 font-size: 15px;
}

.comparison-table td
{
   padding: 20px;
    border-bottom: 1px solid #ecf0f1;
    font-size    :        14px;
	color     :      #666;
}

.comparison-table tbody tr:hover {
  background-color: #f5f7fa;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.services-methodology {
   padding  : 80px 30px;
}

.services-methodology h2 {
	 font-size: 36px;
  text-align: center;
   margin-bottom: 50px;
	color: #2c3e50;
}

.methodology-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap     :        30px;
}

.methodology-card		{
	text-align: center;
   border-radius:    10px;
   transition: all 0.3s ease;
   padding: 30px;
  border-bottom: 3px solid transparent;
    background-color:       #f8f9fa;
}

.methodology-card:hover {
  border-bottom-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.methodology-card h3 {
  font-size: 20px;

   color: #667eea;

   margin-bottom: 15px;
}

.methodology-card p {
  font-size: 15px;
  color: #666;
  line-height :  1.7;
}

.services-faq  
  {
    padding: 80px 30px;
  background-color: #f8f9fa;
}

.services-faq h2 {
   font-size: 36px;
  text-align    :center;
   margin-bottom: 50px;
    color: #2c3e50;
}

.faq-grid {
          display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 30px;
  max-width: 1200px;
    margin: 0 auto; 
	
} 

.faq-item {
  background-color: #ffffff;
  padding  :       25px;
   border-radius   :       10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-item h4 {
  font-size: 17px;
          color: #667eea;
   margin-bottom: 12px;
    font-weight  :  600;
}



.faq-item p		{
   font-size: 14px;
   color    :  #666;
    line-height :       1.7;
}

.services-cta
{
  padding: 80px 30px;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: #ffffff;
	   text-align: center;
}

.services-cta h2 {
    font-size: 40px;
  margin-bottom: 20px;
}

.services-cta p
	{
   font-size: 18px;
	margin-bottom    :     40px;
   max-width: 600px;
    margin-left: auto;
        margin-right: auto;
	opacity     :    0.95;
}

.thankyou-section {

  padding: 60px 30px;
  min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
     }

.thankyou-container {
    max-width: 700px; 
	    width: 100%;
} 

.thankyou-content {
   background-color   :    #ffffff;
  padding: 50px 40px;
   border-radius:15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
          text-align: center;

}

.success-icon {
	 margin-bottom: 30px;
}

.success-icon svg    {

     width: 100px;
  height     :   100px;
   animation: scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
   font-size: 36px;
   color: #2c3e50;
   margin-bottom: 10px;
}

.thankyou-subtitle  {
   font-size: 18px;
  color: #667eea;
  margin-bottom: 30px;
    font-weight: 600;

}

.thankyou-message {
   text-align: left;
   margin-bottom  :     40px;
   background-color: #f8f9fa;
    padding: 25px;
  border-radius: 10px; 

}

.thankyou-message p {
   font-size: 15px;
               color: #666;
   line-height: 1.8;
    margin-bottom: 15px;
}

.thankyou-message p:last-child {
   margin-bottom: 0;
}

.contact-details {
    background-color: #ffffff;
					padding: 15px;
     border-radius: 8px;
  margin-top :      15px;
   border-left: 4px solid #667eea;
}

.contact-details p

{
      margin-bottom: 8px;
	font-size: 14px;

     }

.contact-details p:last-child {
  margin-bottom: 0;
}

.next-steps {


    margin     :    40px 0;
   text-align: left; 
}

.next-steps h2		{
    margin-bottom    :    25px;
	color  :     #2c3e50;
 font-size: 24px;
}

.steps-list {
    list-style  :      none;
    padding: 0;
}

.steps-list li {
    display: flex;
    align-items:       center;
  margin-bottom: 20px;
   padding-bottom: 20px;
  border-bottom   :     1px solid #ecf0f1;
}

.steps-list li:last-child {


   border-bottom: none;

	                    margin-bottom: 0;

		padding-bottom: 0;


	}  

.step-number {
  display: flex;
  align-items: center;
   justify-content: center;
   width: 40px;
    height: 40px;
  background-color: #667eea;
   color: #ffffff;
  border-radius: 50%;
         font-weight: 700;
	font-size:       18px;
   margin-right    :        20px;
   flex-shrink: 0;
}



.steps-list p
{
  margin: 0; 
    font-size: 15px; 
     color: #666;
}

.recommended-section {
    margin: 40px 0; 
	 text-align: left;
}

.recommended-section h2 {
   font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.recommended-section > p {
  font-size    :   14px;
    color:   #666;
   margin-bottom: 25px;
}

.articles-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap     :        20px;
}

.article-card {

	   background-color: #f0f4ff;
    padding: 20px;
  border-radius: 8px;
   border-left: 4px solid #667eea;
    transition: all 0.3s ease;


}

.article-card:hover {


  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
  transform: translateY(-3px);


}

.article-card h3 {
   font-size: 14px;
   color: #667eea;
  margin-bottom  :      8px;
   font-weight: 600;
}

.article-card p {
                    font-size: 13px;
	color: #666;
   line-height: 1.6;
   margin   :   0;
}

.social-follow {
             margin  :        40px 0;
    text-align: left;
	background-color: #f8f9fa;
    -moz-border-radius: 10px;
	 padding: 25px;
    border-radius: 10px;
	}

.social-follow h2 {
                    font-size: 24px;
   color: #2c3e50;
   margin-bottom:        10px;
}



.social-follow > p {
   font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.follow-channels {
	    display: flex;
    flex-wrap: wrap;
   gap: 10px;
	


}

.follow-link{
    display: inline-block;
	 background-color: #667eea;
  color: #ffffff;
   padding: 10px 16px;
		border-radius: 6px;
  text-decoration: none;
   font-size:   13px;
  font-weight :       600;
   transition:    all 0.3s ease;
}

.follow-link:hover {
  transform: translateY(-2px);
	background-color: #764ba2;
}

.action-buttons {
	       display: flex;
    gap: 15px;
   justify-content: center;
  margin-top: 40px;
}  

.btn-primary,
.btn-secondary {


   display: inline-block;
     padding: 15px 35px;
       border-radius: 6px;
                       text-decoration: none;
     font-weight: 600;
   	font-size: 15px;
        transition: all 0.3s ease; 

     }

.btn-primary
	{
   background-color: #667eea;
  color: #ffffff;
  border: 2px solid #667eea;
	
}

.btn-primary:hover {
    background-color: #764ba2;
               border-color: #764ba2;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color  : transparent;
    color: #667eea;
     border: 2px solid #667eea;
}

.btn-secondary:hover {
    background-color: #667eea;
  color:       #ffffff;
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 28px;
    }

    .service-detail-content h3 {
        font-size: 24px;
    }

    .services-comparison h2,
    .services-methodology h2,
    .services-faq h2,
    .services-cta h2 {
        font-size: 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 30px 20px;
    }

    .success-icon svg {
        width: 80px;
        height: 80px;
    }

    .thankyou-content h1 {
        font-size: 28px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}.policySection		{
      padding:80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 300px);}

.policyContainer {
   max-width: 900px;
    margin: 0 auto;
   text-align: left;
  background-color: #ffffff;
    padding: 50px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h2 {
       margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.5rem;
               color: #2c3e50;
	 font-weight: 700;}

.policyContainer h3 {
	font-size  :       1.5rem;
   color:  #667eea;
	 margin-top: 30px;
   margin-bottom: 15px;
   font-weight: 600;
	border-bottom   :      2px solid #f0f4ff;
	padding-bottom     :       10px;
}

.policyContainer p {
  color: #666;
       margin-bottom: 1.5rem;
     line-height: 1.8;
       font-size: 1rem;
     text-align: justify;
}

.policyContainer p:first-of-type {
     font-size  :        1.05rem;
  font-weight     :       500;
	margin-bottom: 30px;
   line-height: 1.9;
   color: #555;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 40px;
    }

    .policyContainer h2 {
        font-size: 2.2rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 25px;
        border-radius: 8px;
        margin: 0 auto;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .policyContainer p:first-of-type {
        font-size: 0.95rem;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 20px;
        border-radius: 6px;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer h3 {
        font-size: 1rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .policyContainer p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
}

@media print {
    .policyContainer {
        box-shadow: none;
        border: 1px solid #ddd;
        padding: 40px;
    }

    .policyContainer h2,
    .policyContainer h3 {
        page-break-after: avoid;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}