* {

	  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: #f8f9fa;


}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: sticky;
    top: 0;
	z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
   max-width: 1200px;
    margin: 0 auto;
	 padding: 1rem 2rem;
  display     :       flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
    align-items:center; 
	
}



.navbar-logo {
   height: 45px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {

    display: flex;
  list-style: none;
    gap: 2rem;
     }

.nav-menu a {
               color     :    white;
   -moz-transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
   -o-transition: opacity 0.3s ease;
   text-decoration: none;
   font-weight: 500;
  transition: opacity 0.3s ease;
    padding: 0.5rem 1rem;
} 

.nav-menu a:hover {
    opacity: 0.8;
  border-bottom    :     2px solid white;
}

.burger-menu {
    display: none;
  flex-direction: column;
   background: none;
   border: none;
  cursor: pointer;
  gap: 5px;
	}

.burger-menu span {
    width: 25px;
  height   :       3px;
    background: white;
    border-radius: 2px;
  transition  :   0.3s ease;
}

.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(7px, -7px);
}

.hero-section

{
   display: grid;
    grid-template-columns: 1fr 1fr;
                    gap: 3rem;
    align-items: center;
    padding     : 4rem 2rem;
  max-width: 1200px;
  margin  :      0 auto;
  background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
  color: #667eea;
			margin-bottom: 1.5rem;
    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;
   padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
   text-decoration   :   none;
    border-radius: 8px;
    font-weight: 600;
	transition:      transform 0.3s ease, box-shadow 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: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
   background: white;
    border-radius     :   12px;
	margin-top: 2rem;
}

.about-content h2 {
    font-size: 2.5rem;
   color: #2c3e50;
               margin-bottom: 1.5rem;

}

.about-content > p {
	 line-height: 1.8;
   font-size: 1.1rem;
    color: #666;
   margin-bottom: 2.5rem;
}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap:       2rem;
  margin-top: 2rem;
     }

.benefit-card     {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
   padding: 2rem;
  border-radius: 10px;
  border-left     :      4px solid #667eea;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.benefit-card h3 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size :     1.3rem;
}

.benefit-card p {
  line-height: 1.6;
 color: #666;
}

.services-showcase {
   padding: 4rem 2rem;
    max-width: 1200px;
	 margin :    0 auto;
}

.services-showcase h2 {

	    font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;}

.services-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
       background   :    white;
    border-radius :    12px;
	 overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

.service-item:hover {

  transform: translateY(-8px); 
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);}

.service-item img {

   width: 100%;
  height: 220px;
	 object-fit: cover;
    display: block;
}

.service-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
  color: #667eea;
   font-size: 1.3rem;
	}

.service-item p {
   padding: 0 1.5rem 1.5rem;
   color: #666;
  line-height: 1.6;
}

.webinar-section {
	display: grid;
					grid-template-columns: 1fr 1fr;
   gap: 3rem;
			align-items: center;
	padding: 4rem 2rem;
   max-width :    1200px;
	margin   :  0 auto;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
	border-radius: 12px; 
	
}

.webinar-content h2 {
    font-size: 2.3rem;
   color:      #2c3e50;
  margin-bottom: 1.5rem;
}

.webinar-content p {
     font-size: 1.05rem;
   color: #666;
	margin-bottom: 2rem;
  line-height: 1.8;
}

.webinar-info {
	 display: flex;
   flex-direction     :   column;
    gap: 1.5rem;
}

.info-block {
   background: white;
     padding: 1.5rem;
     border-radius: 8px;
     border-left: 3px solid #764ba2;

}

.info-block h4 {
  color: #764ba2;

    margin-bottom     :     0.5rem;

    font-size :    1.1rem;
} 

.info-block p {
  color: #666;
  font-size: 0.95rem;
   line-height: 1.6;
   margin    :  0;
}

.webinar-image {
   width: 100%;

  border-radius    :        12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section


{
            padding: 4rem 2rem;
       max-width: 1200px;
   	margin: 2rem auto;

}

.cta-box {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding   :       3rem;
    border-radius: 12px;
    text-align :       center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
     }

.cta-box h2 {

   font-size: 2.2rem;
   margin-bottom: 1rem;
     }

.cta-box p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
	 opacity: 0.95;
  line-height: 1.6;
}

.cta-button-primary {
     display   :      inline-block;
	          padding: 1rem 2.5rem;
	  background: white;
	    color: #667eea;
	  text-decoration: none;
	  border-radius  :   8px;
	   font-weight   :600;
	   transition: transform 0.3s ease, box-shadow 0.3s ease;
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-section {
    padding: 4rem 2rem;
   max-width: 1200px;
    margin: 0 auto;
    background: white;
  border-radius: 12px;
}

.contact-section h2 {

	  font-size: 2.5rem;
    color: #2c3e50;
   text-align: center;
   margin-bottom: 3rem;

}

.contact-form	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
   max-width: 900px;
  margin: 0 auto;
}

.form-group {

   display: flex;
   flex-direction: column;
	}

.form-group:nth-child(3) {
    grid-column: auto; 
	
}

.form-group:nth-child(4) {
	  grid-column     :     1 / -1;
}

.form-group:nth-child(5) {
   grid-column: 1 / -1;
}

.form-group label

{
	margin-bottom   :        0.5rem;
    font-weight: 500;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
      padding    :0.75rem;
   border    :2px solid #e0e0e0;
  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 10px rgba(102, 126, 234, 0.2);
}

.form-group textarea{
  resize    : vertical;
   min-height    :120px;
}

.submit-button {

   grid-column: 1 / -1;
   padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border: none;
	border-radius: 8px;
  font-weight     :      600;
    font-size: 1rem;
    cursor: pointer;
   transition: transform 0.3s ease, box-shadow 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);
     }

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
  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-logo-img {
   height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-info h4,
.footer-links h4 {
    margin-bottom: 1rem;
  color: #ecf0f1;
    font-size: 1.1rem;
}

.footer-info p,
.footer-links ul li a {
  font-size: 0.95rem; 
     color: #bdc3c7; 
    margin-bottom    :  0.5rem; 
   line-height: 1.6;
}

.footer-links ul {
   list-style: none;
}

.footer-links ul li a     {
   text-decoration: none;
  transition     :   color 0.3s ease;
}

.footer-links ul li a:hover {
    color :     #ecf0f1;
   text-decoration: underline;
}

.footer-copy {
  text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size     :   0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #667eea;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .about-section,
    .services-showcase,
    .webinar-section,
    .cta-section,
    .contact-section {
        padding: 2rem 1rem;
    }

    .webinar-section {
        grid-template-columns: 1fr;
    }

    .about-section h2,
    .services-showcase h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .webinar-content h2 {
        font-size: 1.8rem;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .cta-box {
        padding: 2rem;
    }

    .benefits-grid,
    .services-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group:nth-child(4),
    .form-group:nth-child(5) {
        grid-column: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p,
    .webinar-content p {
        font-size: 1rem;
    }

    .cta-button,
    .cta-button-primary {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }

    .about-content h2,
    .services-showcase h2,
    .webinar-content h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .service-item img {
        height: 180px;
    }

    .submit-button {
        padding: 0.75rem 1.5rem;
    }
}.services-hero {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color    :  white;
   padding: 4rem 2rem;
  text-align: center;
       margin-top: 70px; 
} 

.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;
   line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid-section {
         padding: 4rem 2rem;
               max-width: 1200px;
       margin: 0 auto;
}

.services-grid-section h2 {


    font-size: 2.5rem;
  color: #2c3e50;
    text-align: center;
          margin-bottom: 3rem; 



}

.services-detailed-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom  :        3rem;
}

.service-card-detailed {
   background: white;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  display  :       flex;
    flex-direction: column;
}

.service-card-detailed:hover {
     transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);}

.service-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.service-card-image img {
   width: 100%;
	transition :        transform 0.3s ease;
    display: block;
   height: 100%;
   object-fit: cover;
}

.service-card-detailed:hover .service-card-image img {
  transform: scale(1.05);
}



.service-card-body {
  padding: 2rem;
  flex-grow  : 1;
    display: flex;
   flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.5rem;
  color: #667eea;
   margin-bottom : 0.5rem;
}

.service-subtitle  
  {
          color: #999;
  font-size: 0.95rem;
    font-weight: 500;
    margin-bottom    :     1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-body p:not(.service-subtitle) {
	  color: #666;
   line-height: 1.6;
    margin-bottom: 1.5rem;
   font-size: 1rem;}

.service-features {
        list-style     :     none;
   margin-bottom: 1.5rem;
   flex-grow: 1;
}

.service-features li


{
    padding-left     :    1.5rem;
    position: relative;
    color:   #555;
   margin-bottom: 0.75rem;
    line-height: 1.5;

}

.service-features li:before {

  font-size: 1.2rem;

  content: "✓";

                    font-weight: bold;

  left  :       0;

   position: absolute;

  color: #667eea; 
	


}

.service-price {
    font-size: 1.3rem;
	   color: #764ba2;
	  font-weight: 600;
		margin-top: auto;
}

.comparison-section {
    padding: 4rem 2rem;
   max-width: 1200px;
    margin    :     0 auto;
   background: white;
	border-radius: 12px;
  margin-bottom   :   3rem;


}

.comparison-section h2 {

	               font-size: 2.3rem;
    color   :    #2c3e50;
  text-align: center;
  margin-bottom: 2rem;

}

.comparison-table {
  overflow-x  :        auto;
}

.comparison-table table {
   width: 100%;
   border-collapse   :     collapse;
}

.comparison-table thead {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color :white;
	}

.comparison-table th		{
    padding: 1rem;
  text-align: left;
  font-weight: 600;
    font-size: 1rem;
}

.comparison-table td {

	  padding: 1.2rem;
  border-bottom: 1px solid #e0e0e0;
          color: #555;
   font-size     :   0.95rem;}

.comparison-table tbody tr:hover 
 {
  background-color: rgba(102, 126, 234, 0.05);

}

.comparison-table tbody tr:nth-child(odd) {
  background-color: rgba(102, 126, 234, 0.02);
} 

.process-section     {
  padding: 4rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}


.process-section h2

{
   margin-bottom: 3rem;
   text-align: center;
    color: #2c3e50;
    font-size: 2.3rem;
}

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.step {
                    text-align: center;
    padding: 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover    {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15); 
}

.step-number {
		display: inline-flex;
  align-items: center;
    justify-content:       center;
  width    : 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
    border-radius: 50%;
     font-size: 1.8rem;
  font-weight  :     bold;
  margin-bottom: 1.5rem;}

.step h3 {
  color: #667eea;
   font-size: 1.2rem;
   margin-bottom: 0.75rem;
}

.step p
{


  color: #666;
   line-height: 1.6;
   font-size: 0.95rem;

}

.testimonials-section {
    padding: 4rem 2rem;
  max-width: 1200px;
   margin: 0 auto;
}

.testimonials-section h2 {
  font-size: 2.3rem;
   color: #2c3e50;
    text-align: center;
   margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
} 

.testimonial {
  background: white;
	padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {

  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
     }

.testimonial p   {
   color:  #666;
  line-height: 1.7;
  margin-bottom: 1rem;
	font-size: 0.95rem;
}

.testimonial p:first-child {
  font-style: italic;
    color: #555;
}

.testimonial-author		{
		font-size: 0.9rem;
   color: #764ba2;
  font-weight     :600;
}

.faq-section {
   padding: 4rem 2rem;
             max-width: 1200px;
     margin: 0 auto;
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
      border-radius: 12px;
}

.faq-section h2		{
   font-size: 2.3rem;
  color   :  #2c3e50;
        text-align: center;
  margin-bottom   : 3rem;
}

.faq-container     {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap   :   2rem;
                    max-width: 1000px;
   margin: 0 auto;
}

.faq-item  {
    background: white;
	 padding: 2rem;
    border-radius    :10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.15);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
   color: #667eea;
	}

.faq-item p {
  color: #666;
          line-height: 1.6;
    font-size: 0.95rem;
}

.cta-services-section    {
   padding: 4rem 2rem;
     max-width: 1200px;
   margin: 2rem auto;
}

.cta-services-box
{

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding     :  3rem;
  border-radius: 12px;
   text-align  :       center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
	
}

.cta-services-box h2 {
   font-size: 2.2rem;
        margin-bottom: 1rem;
}

.cta-services-box p {
   margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
  font-size: 1.1rem;
}

.thankyou-container {
  min-height: calc(100vh - 200px);

	 display:   flex;

	  align-items: center;

	  justify-content: center;

	  padding   : 2rem;

	  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);

	  margin-top: 70px; 

}

.thankyou-content

{


    background: white;
        padding: 3rem;
  border-radius : 12px;
  max-width: 700px;
    width     :      100%;
		 text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);}

.success-icon {
   color: #2ecc71;
   margin-bottom: 2rem;
         animation: scaleIn 0.6s ease;
}

.success-icon svg {
   display: inline-block;
	
}@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.thankyou-content h1 {
   font-size: 2.5rem;
               color: #2c3e50;
   margin-bottom: 0.5rem;
}

.thankyou-subtitle {
   font-size: 1.2rem;
   color: #666;
   margin-bottom: 2rem;
}



.thankyou-message {
  background: rgba(102, 126, 234, 0.05);
    padding: 2rem;
  border-radius: 10px;
    margin-bottom: 2rem;
   border-left: 4px solid #667eea;


}

.thankyou-message p {
  color: #555;

	       line-height: 1.8;

		margin-bottom: 1rem;

		 font-size: 1rem;
}

.thankyou-message p:last-child {
  margin-bottom: 0;
}

.next-steps {
   margin: 3rem 0;
  text-align: left;
}

.next-steps h2 {
  margin-bottom: 2rem; 
    color: #2c3e50; 
    font-size: 1.8rem; 
	text-align    :     center;
}

.steps-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 1.5rem;
}

.step-item
{
       display: flex;
   gap: 1.5rem;
}

.step-item .step-number {
   display: flex;
   align-items: center;
    justify-content     :    center;
  width: 50px;
				 height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
   font-weight: bold;
      flex-shrink   :   0;

}

.step-content {
   text-align: left;
}

.step-content h3    {
   color: #667eea;
   font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p	{
      font-size: 0.95rem;
    color     :       #666;
   line-height: 1.5;}

.thankyou-info-box     {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
   padding: 2rem;
                    border-radius: 10px;
    margin: 2rem 0;
}

.thankyou-info-box h3 {
  color: #2c3e50;
   font-size: 1.2rem;
	margin-bottom: 1rem;
}

.thankyou-info-box p


{
	 color  :        #666;
  margin-bottom: 0.5rem;
   line-height: 1.6;
   font-size: 0.95rem;
}


.contact-phone    {
	font-size: 1.3rem;
    color: #667eea;
  margin-top: 1rem;
}

.contact-address {
  color: #555;
  font-size: 0.9rem;
    margin-top: 0.5rem;
     }

.thankyou-actions {
  display: flex;
    gap: 1rem;
    justify-content: center;
	flex-wrap: wrap;
    margin-top: 2rem; 
	
}

.button-back,
.button-services {
   display: inline-block;
  padding: 1rem 2rem;
	 border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.95rem;
}

.button-back


{
   background    :     white;
   color: #667eea;
    border: 2px solid #667eea;
}



.button-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.button-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.button-services:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .services-grid-section,
    .comparison-section,
    .process-section,
    .testimonials-section,
    .faq-section,
    .cta-services-section {
        padding: 2rem 1rem;
    }

    .services-grid-section h2,
    .comparison-section h2,
    .process-section h2,
    .testimonials-section h2,
    .faq-section h2,
    .cta-services-box h2 {
        font-size: 1.8rem;
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .service-card-image {
        height: 200px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .cta-services-box {
        padding: 2rem;
    }

    .cta-services-box h2 {
        font-size: 1.6rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .button-back,
    .button-services {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-content p {
        font-size: 0.9rem;
    }

    .services-grid-section h2,
    .comparison-section h2,
    .process-section h2,
    .testimonials-section h2,
    .faq-section h2 {
        font-size: 1.5rem;
    }

    .service-card-body {
        padding: 1.5rem;
    }

    .service-card-body h3 {
        font-size: 1.3rem;
    }

    .service-price {
        font-size: 1.1rem;
    }

    .thankyou-container {
        padding: 1rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.5rem;
    }

    .step-item {
        gap: 1rem;
    }

    .button-back,
    .button-services {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}.policySection {
  padding: 80px 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 350px);
  margin-top: 70px;
}

.policyContainer {
    max-width: 850px; 
  margin :0 auto; 
		 text-align: left;
}

.policyContainer h1 {
    font-size: 3rem;
  color: #2c3e50;
    margin-bottom: 2rem;
  font-weight : 700;
   text-align: center;
}


.policyContainer h2 {
          font-size: 1.8rem;
	color: #667eea;
   margin-top: 2.5rem;
   margin-bottom: 1rem;
    font-weight: 600;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
	 padding-bottom    :     0.5rem;
}


.policyContainer h2:first-of-type {
    margin-top: 1.5rem;
}

.policyContainer p {
    color: #555;
  margin-bottom  :    1.5rem;
                    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
}

.policyContainer p:last-child    {
			margin-bottom  :      0;
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.policyContainer {
  animation: fadeIn 0.6s ease;
}

.policyContainer h2 {
    animation    :      fadeIn 0.6s ease;
}

.policyContainer p {
   animation   :    fadeIn 0.6s ease;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: calc(100vh - 300px);
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 0.75rem;
    }

    .policyContainer p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        margin-top: 70px;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}