* {
      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:  #f8f9fa;
	}  

.navbar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1rem 2rem;
	position: sticky;
  top: 0;
  z-index:  1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} 

.navbar-container {
   justify-content: space-between;
    max-width: 1200px;
  display: flex;
	margin: 0 auto;
   align-items: center;
}

.logo-section     {
    display: flex;
	align-items     :    center;
	
}

.navbar-logo {
	 height: 64px;
               width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu {
               display  :  none;
   flex-direction: column;
    background: none;
   border: none;
	cursor: pointer;
    gap: 6px;
}

.burger-line {
    width: 25px;
         height: 3px;
  background: #fff;
  border-radius:      2px;
 transition:  all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
                    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3){
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap     :    2rem;
}

.nav-link {
   color: #fff;
  text-decoration: none;
   font-weight: 500;
          transition: color 0.3s ease;
	 position: relative;
}

.nav-link::after {
  content: '';
   position   :    absolute;
	bottom: -5px;
        left: 0;
   width: 0;
   height: 2px;
   background: #3498db;
   transition: width 0.3s ease;
}

.nav-link:hover::after {
   width: 100%; 

}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 80px 2rem;
         display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: center;
  gap: 3rem;
   min-height: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
   margin-bottom: 1.5rem;
     line-height: 1.2;
}


.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
   opacity: 0.95;
}

.cta-button {
   display: inline-block;
    background: #fff;
   color: #667eea;
    -webkit-border-radius: 50px;
  padding: 15px 40px;
   border-radius: 50px;
   text-decoration  :      none;
    font-weight :        600;
   -moz-transition    :      all 0.3s ease;
               -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  cursor: pointer;
					border: 2px solid #fff;
}

.cta-button:hover  {
    background  :     transparent; 
	   color:        #fff; 
	  transform: translateY(-3px);
}



.hero-visual img {
  width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.services-preview {
               max-width: 1200px;
   margin :       80px auto;
       padding: 0 2rem;
}

.section-header {
    text-align: center;
   margin-bottom: 4rem;
}

.section-header h2 {
   font-size: 2.5rem;
  margin-bottom    :       1rem;
         color: #1a1a1a;
}

.section-header p 
 {
	   font-size: 1.2rem;
         color: #7f8c8d;
     }

.services-grid

{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
   background: white; 
   padding    :     2.5rem; 
  border-radius: 12px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
   transition:  all 0.3s ease; 
    text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
   margin-bottom: 1.5rem;
}

.service-icon img


{
    width: 50px;
    height: 50px;
    margin: 0 auto;
    stroke: #667eea;
    fill: none;
}

.service-card h3 {
    font-size: 1.5rem;
   margin-bottom: 1rem;
          color: #2c3e50;
}

.service-card p {

	  color: #7f8c8d;

  line-height: 1.8;

}

.training-programs    {
   background: #f0f4f8;
   padding: 80px 2rem;
   margin: 60px 0;
}

.training-programs .section-header  
  {
  max-width: 1200px;
   margin: 0 auto 4rem;
	
}

.programs-container {
    max-width: 1200px;
   margin: 0 auto;
}

.program-item {
    display: grid;
   grid-template-columns: 1fr 1fr;
  align-items: center;
   gap: 3rem;
   margin-bottom  :    4rem;
}

.program-item.right {

    grid-template-columns    :1fr 1fr;
	}

.program-item.right .program-text {
    order: 2;
}

.program-item.right .program-image {
   order: 1;
}

.program-image img {
  width: 100%;
        border-radius :12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.program-text h3 {
    font-size: 2rem;
 margin-bottom: 1.5rem;
   color: #1a1a1a;
} 

.program-text p {
  font-size     :  1.1rem;
    color: #555;
    line-height: 1.9;
}

.workshops-section {

	   max-width: 1200px;
          margin   :80px auto;
 padding: 0 2rem;}

.workshops-section h2 {
	font-size :      2.5rem;
   text-align :        center;
        margin-bottom: 1rem;
}

.section-subtitle 
 {
  text-align: center;
    color: #7f8c8d;
          font-size   :  1.1rem;
  margin-bottom: 3rem;
}



.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap     :   2.5rem;
}

.workshop-card {


  background: white;
  border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: scale(1.05);
} 

.workshop-card img {
  width: 100%;
   height: 250px;
     object-fit: cover;
}



.workshop-card h4 {
   font-size: 1.5rem;
  padding: 1.5rem 1.5rem 0.5rem;
   color: #2c3e50;
}

.workshop-card p
	{
  padding: 0 1.5rem 1.5rem;

	   color: #7f8c8d;

		 line-height: 1.8;
} 

.benefits-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
    padding: 80px 2rem;
    margin  :        60px 0; 

}

.benefits-section h2{
    font-size: 2.5rem;

	    text-align: center;

	    margin-bottom: 3rem;
}

.benefits-container {
       max-width: 1200px;
	 margin: 0 auto;
  display   :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap   :  2rem;
     }

.benefit-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border-left    :     4px solid #3498db;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.benefit-number {
    font-size: 2.5rem;

  font-weight    :     bold;

       color: #3498db;

 margin-bottom: 1rem;
}

.benefit-item h3 {
   font-size: 1.5rem;
   margin-bottom   :1rem;
}

.benefit-item p {
	    font-size  :0.95rem;
    opacity: 0.9;
     }

.consultation-cta {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
	padding: 60px 2rem;
	text-align: center;
    margin: 60px 0; 

}

.cta-content h2 {
  font-size: 2.5rem;
    margin-bottom     :    1rem;
}

.cta-content p {

  margin-bottom: 2rem;
   font-size: 1.2rem;
  opacity: 0.95;
	}

.cta-button-primary {

   display :        inline-block;
    background: white;
   color    :   #3498db;
	padding: 15px 45px;
  border-radius: 50px;
    text-decoration: none;
					font-weight: 600;
  transition: all 0.3s ease;
   cursor: pointer;
    font-size: 1.1rem;


}

.cta-button-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
  max-width: 1200px;
   margin: 80px auto;
  padding: 0 2rem;
}

.contact-container h2 {
	color: #1a1a1a;
   margin-bottom: 0.5rem;
  font-size: 2.5rem;
    text-align: center;
}

.contact-subtitle {
  text-align: center;
    color: #7f8c8d;
  font-size: 1.1rem;
                    margin-bottom: 3rem;
}

.contact-wrapper
	{
   display: grid;
	grid-template-columns     :1.5fr 1fr;
   gap: 3rem;
}

.contact-form {
   background: white;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 

}

.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: 12px;
   border:       2px solid #e0e0e0;
   border-radius  :    8px;
   font-size    :    1rem;
    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  : #667eea;
     box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button    {
  width: 100%;

         padding: 14px;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

   color: white;

    border     :    none;

  border-radius: 8px;

  font-size    :    1.1rem;

    font-weight: 600;

	cursor: pointer;

  transition: all 0.3s ease;
}

.submit-button:hover {

  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);}

.contact-info {
    background: #f8f9fa;
   padding: 2rem;
   border-radius: 12px;
  border-left: 4px solid #667eea;
}

.contact-info h3 {
    font-size     :       1.5rem;
	margin-bottom   :     1.5rem;
  color: #1a1a1a;
}

.address {
    margin-bottom: 1rem;
      line-height: 1.8;
   color: #555;
}

.phone
	{
   font-weight: 600;
   color: #667eea;
   font-size: 1.2rem;
          margin-bottom: 1.5rem;

}

.office-hours {


   margin-top: 2rem;
    padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
     }

.office-hours h4 {
    margin-bottom: 0.5rem;
	color: #2c3e50;
}

.office-hours p {
	color    :        #7f8c8d;
}

.footer {
	  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 2rem 20px;
  margin-top   :  80px;
}

.footer-container {
  max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
       gap   :3rem;
  margin-bottom: 3rem;
}

.footer-logo-img {
  height: 86px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
   display     :   grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section h4 {
    margin-bottom :  1.5rem;
  font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}  

.footer-section a {
	color: #bbb;
    text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
	 color: #3498db;
}

.footer-section p {
    color: #bbb;
  margin-bottom: 0.5rem;
    line-height: 1.6;


}

.footer-bottom {
  color: #999;
  padding-top: 2rem;
    max-width: 1200px;
   border-top: 1px solid #444;
   text-align: center;
   margin: 0 auto;
	}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 2rem;
        gap: 1rem;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 2rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .program-item {
        grid-template-columns: 1fr;
    }

    .program-item.right .program-text,
    .program-item.right .program-image {
        order: initial;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :    white;
    padding: 80px 2rem;
    text-align: center;
          min-height: 300px;
  display: flex;
   flex-direction: column;
    justify-content: center;
  align-items: center;
     }

.services-hero h1 {
   font-size: 3rem;
  margin-bottom   :1rem;
		 line-height   : 1.2;

}

.services-hero p {
    font-size    :        1.2rem;
  opacity: 0.95;
}

.services-detailed {
        max-width: 1200px;
  margin :      80px auto;
  padding: 0 2rem;
}

.section-container
{

	    display: flex;
   flex-direction: column;
	gap  :    5rem; 
	


}

.service-full-item {
  display: grid;
    grid-template-columns: 1fr 1fr;
         align-items: center;
   gap: 3rem;
    background: white;
    padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.service-full-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-full-item.left {
    grid-template-columns: 1fr 1fr;
}

.service-visual.left {
  grid-column     :1;
}

.service-visual.right {
   grid-column: 2;
}

.service-description {
	    grid-column: 2;}

.service-full-item:nth-child(even) .service-visual {
  grid-column :  2;
}

.service-full-item:nth-child(even) .service-description {
   grid-column: 1;
}

.service-visual img {
    width: 100%;
   height  :auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-description h2 {
        font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
	
	}

.intro-text {
       font-size: 1.1rem;
    color: #555;
          margin-bottom    :    1.5rem;
   line-height: 1.8;
}

.service-features {
    list-style:   none;
  margin-bottom: 2rem;
}

.service-features li	{
   padding    :     0.8rem 0;
   padding-left: 2rem;
   color: #2c3e50;
  position     :relative;
    line-height: 1.6;
}

.service-features li:before {
				 color:    #667eea;
  content: '✓';
    left: 0;
    font-size: 1.2rem;
  position: absolute;
    font-weight: bold;
}

.service-meta {
	 display: flex;
    flex-direction: column;
  gap: 0.8rem;
   padding-top: 1.5rem;
   border-top: 2px solid #e0e0e0;
}

.service-meta span {
       color: #667eea;

		font-weight: 600;

	  font-size: 0.95rem;
     }

.pricing-comparison {
    background: #f8f9fa;
    padding: 80px 2rem;
    margin: 80px 0;
}

.pricing-comparison h2 {
	margin-bottom: 3rem;
	  color: #1a1a1a;
	  font-size: 2.5rem;
	  text-align: center;
}

.pricing-table
{
    max-width: 1000px;
               margin    :0 auto;
    overflow-x: auto;
}

.pricing-table table {
   width: 100%;
   border-collapse: collapse;
  background:    white;
  border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


.pricing-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color    :    white;




}

.pricing-table th {
   padding: 1.5rem;
   text-align: left;
    font-weight: 600;
   font-size :    1rem;
}

.pricing-table td {
   padding     : 1.2rem 1.5rem;
   border-bottom: 1px solid #e0e0e0;
    color: #2c3e50;
}

.pricing-table tbody tr:hover {
   background: #f8f9fa;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.testimonials-section


{
   max-width     :     1200px;
   margin: 80px auto;
   padding: 0 2rem;


}

.testimonials-section h2 {
   font-size: 2.5rem;
    text-align: center;
	margin-bottom: 3rem;
        color: #1a1a1a;
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
	    background: white;
   padding: 2.5rem;
	 border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
    transition    : all 0.3s ease;
     }

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-text {

    font-size: 1rem;
         color: #555;
  margin-bottom: 1.5rem;
   line-height  :    1.8;
  font-style: italic; 
	
	}

.testimonial-author  {
  color: #667eea;
  font-weight: 600;
   font-size: 0.95rem;
}

.faq-section {
    background: #f8f9fa;
  padding: 80px 2rem;
         margin: 80px 0;
	}

.faq-section h2 {
  font-size: 2.5rem;
   text-align: center;
    margin-bottom     :    3rem;
    color: #1a1a1a;
}

.faq-container {
    max-width   :       900px;
  margin: 0 auto;
   display: flex;
    flex-direction   :   column;
    gap :      1.5rem;
}

.faq-item


{
    background: white;

	padding     :2rem;

   border-radius: 12px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    transition     :    all 0.3s ease;
}

.faq-item:hover


{
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  align-items: center;
  justify-content     :     space-between;
   margin-bottom:       1rem;
  cursor    :  pointer;
   font-size   :   1.2rem;
	 color: #2c3e50;
   user-select: none;
   display: flex;
}

.faq-question::after {
  content: '▼';
    color: #667eea;
  transition :   transform 0.3s ease;
    font-size: 0.8rem;
}

.faq-answer {
    color: #555;
    line-height: 1.8;
   font-size   :   0.95rem;
}


.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
  padding: 80px 2rem;
    text-align: center;
   margin: 60px 0;
}

.cta-section h2{
         font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
    margin-bottom: 2rem;
  opacity: 0.95; 
	
}

.cta-button-large {
    border-radius: 50px;
				 cursor: pointer;
    font-weight: 600;
   text-decoration: none;
         padding: 18px 50px;
    color: #3498db;
	 display: inline-block;
   transition: all 0.3s ease;
    font-size: 1.1rem;
	background: white;
     }

.cta-button-large:hover   {
  transform: scale(1.05);

	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thankyou-container {
  min-height: 600px;
   display: flex;
  align-items    :center;
  justify-content: center;
   padding: 40px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thankyou-content
{
   background  :  white;
    border-radius: 16px;
  padding: 4rem 3rem;
  max-width: 600px;
               width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-badge {
    margin-bottom: 2rem;
}

.success-badge img {
    width    :        80px;
   height: 80px;
  margin: 0 auto;
  display: block;
    stroke: #2ecc71;
  animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
    font-size: 2.5rem;
  color   : #1a1a1a;
    margin-bottom: 1rem;
}

.thankyou-message {
                    font-size: 1.1rem;
   line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #555;
}

.next-steps {
	margin: 3rem 0;
          padding: 2rem 0;
   border-top: 2px solid #e0e0e0;
   border-bottom: 2px solid #e0e0e0;
}

.next-steps h2 {
   font-size: 1.8rem; 
	    color: #2c3e50; 
	   margin-bottom   :        2rem;
}

.steps-list {
  display: flex; 
	flex-direction: column; 
   gap: 1.5rem; 

}

.step {
  display   :       flex;
   align-items: flex-start;
   gap: 1.5rem;
  text-align: left; 
	
}

.step-number {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    width: 50px;
   height: 50px;
  display     :flex;
  align-items:        center;
      justify-content: center;
  border-radius: 50%;
  font-weight: bold;
   font-size: 1.5rem;
    flex-shrink: 0;
     }

.step-content h3 {
       font-size: 1.1rem;
  color :      #2c3e50;
   margin-bottom: 0.5rem;
}

.step-content p {
   color: #7f8c8d;
 font-size: 0.95rem;
}

.info-box {
    border-radius: 8px;
   padding: 1.5rem;
   background: #f8f9fa;
					text-align: left;
 margin    :      2rem 0;
}

.info-box h3 {
     color: #2c3e50;

	  margin-bottom     : 1rem;
}

.info-box ul {
  list-style: none;

}

.info-box li {
  padding :    0.5rem 0;
   color: #555;
   padding-left  :      1.5rem;
   position: relative;
}

.info-box li:before {
  content: '•';
   position: absolute;
   left   :     0;
  color: #667eea;
  font-weight: bold;
}

.action-buttons {
    display: flex;
  gap: 1rem;
	margin-top: 2rem;
      justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding   :        12px 30px;
	border-radius    :   50px;
   text-decoration :      none;
   font-weight: 600;
  transition:   all 0.3s ease;
               display: inline-block;
	 cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary  {
   background: white;
                    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover  {
   background: #f8f9fa;
  border-color: #764ba2;
	color     :   #764ba2;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-full-item {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .service-visual.left,
    .service-visual.right {
        grid-column: auto;
    }

    .service-description {
        grid-column: auto;
    }

    .service-full-item:nth-child(even) .service-visual,
    .service-full-item:nth-child(even) .service-description {
        grid-column: auto;
    }

    .service-description h2 {
        font-size: 1.5rem;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .steps-list {
        flex-direction: column;
    }
}.policySection {
  padding: 80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
   max-width: 800px;
   margin: 0 auto;
   text-align: left;

}

.policyContainer h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
   margin-bottom: 2rem;
  font-weight:  700;
  padding-bottom: 1.5rem;
    border-bottom: 3px solid #667eea;
}

.policyContainer h2 {
  font-size     :       1.8rem;
     color: #2c3e50;
   margin-bottom: 1.2rem;
   margin-top: 2rem;
     font-weight: 600;
}

.policyContainer p {
      color: #555;
	margin-bottom: 1.5rem;
    line-height: 1.8;
  font-size: 1rem;
      text-align    :    justify;
}

.policyContainer h2:first-of-type {
    margin-top: 0;
}

.policyContainer h2:before {
  content: '';
    display: inline-block;
    width: 4px;
  height  :        24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin-right: 12px;
    vertical-align: middle;
    border-radius :     2px;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}