* {
	   margin: 0;
   padding: 0;
    box-sizing: border-box;
	}

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --secondary-accent: #e74c3c;
    --light-bg: #ecf0f1;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

html {
    scroll-behavior: smooth;
}



body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
    line-height: 1.6;
}

.navbar {
  background-color: var(--primary-color);
  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;
   	display: flex;
     margin: 0 auto;
          padding: 0 2rem;
       align-items: center;
     justify-content: space-between; 

}

.logo-section

{
    flex   :   0 0 auto;
}

.logo-img {
   height: 50px;
    width   :      auto;
  filter: brightness(0) invert(1);
}

.nav-links {

  display: flex;
  list-style: none;
  gap  :  2rem;
    align-items: center;


}

.nav-links a

{
  color: #ffffff;
   text-decoration: none;
       font-weight  :    500;
   transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.cta-nav {


  background-color: var(--secondary-accent);
   padding: 0.7rem 1.5rem;
	 border-radius: 4px;
   color: #ffffff !important;

}

.cta-nav:hover {
   background-color: #c0392b;
}

.burger-menu {
    display: none;
   flex-direction: column;
   background: none;
    border: none;
  cursor: pointer;
  gap: 5px;

}

.burger-line {
  width: 25px;
		height: 3px;
	          background-color: #ffffff;
	  transition: all 0.3s ease;
	  border-radius: 2px;
}

.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);
}


.hero-section {
          max-width: 1200px;
   margin: 0 auto;
	padding: 4rem 2rem;
    display   :   grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items   :       center;
}

.hero-content h1     {
    font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
	line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-button {
  background-color: var(--accent-color);
       color: #ffffff;
      border: none;
     padding: 1rem 2rem;
      font-size: 1rem;
      border-radius: 4px;
       cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
}


.cta-button:hover {
	    background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
     }

.hero-visual img

{
   width: 100%;
    height     :      auto;
         border-radius :       8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-section {


  background-color: var(--light-bg);
  padding     :    4rem 2rem;
     }

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-container h2,
.workshops-container h2,
.contact-container h2,
.cta-booking-content h2 {

	       font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 2rem;
    text-align: center;
}


.about-grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
   background-color :       #ffffff;
    padding    :        2rem;
	border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.about-card h3 {

	  color: var(--accent-color);
   margin-bottom     :1rem;
    font-size: 1.3rem;} 

.about-card p {
  color: var(--text-light);
	line-height: 1.7;
}

.workshops-section {
  padding: 4rem 2rem;
}

.workshops-container {
	max-width: 1200px;
   margin: 0 auto;
}

.workshops-grid{
    display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.workshop-card {
  background-color: #ffffff;
    border-radius: 8px;
   overflow   :       hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.workshop-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
	}

.workshop-card img {
  object-fit   :  cover;
    height: 200px;
   width: 100%;
}

.workshop-card h3 {
  color: var(--primary-color);
     padding: 1.5rem 1.5rem 0.5rem;
       font-size: 1.1rem;
}

.workshop-card p   {
          padding: 0 1.5rem;
  color: var(--text-light);
	font-size: 0.95rem;
  line-height: 1.6;
}

.workshop-type     {
  display: inline-block;
  background-color: var(--secondary-accent);
   color: #ffffff;
        padding: 0.4rem 0.8rem;
   border-radius: 4px;
	font-size :0.8rem;
    margin: 1rem 1.5rem 1.5rem;
  font-weight: 600;
}

.cta-booking {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #ffffff;
   padding :    4rem 2rem;
    text-align: center;
}

.cta-booking-content {
  max-width     :    1200px;
		margin   : 0 auto;
}

.cta-booking-content h2 {
   color: #ffffff;
    font-size: 2.2rem;
     margin-bottom: 1rem;

}

.cta-booking-content p


{

   font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button-alt {
  background-color: var(--secondary-accent);
               color    :     #ffffff;
 border: none;
    padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 4px;
   cursor: pointer;
                    transition: all 0.3s ease;
   font-weight: 600;
}

.cta-button-alt:hover {
   background-color :    #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.contact-section 
 {
  padding:      4rem 2rem; 
		background-color: #f8f9fa;
}

.contact-container    {
    max-width  : 600px;
    margin: 0 auto;}

.contact-form {
	   background-color: #ffffff;
	 padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	}

.form-group {
         margin-bottom: 1.5rem;

}

.form-group label {
     display: block;
    margin-bottom: 0.5rem;
  color: var(--primary-color);
    font-weight: 600;
} 

.form-group input,
.form-group select,
.form-group textarea  {
    width: 100%;
  padding   :   0.8rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
	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: var(--accent-color); 
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);


     }

.submit-button {
  width: 100%;
  background-color: var(--accent-color);
   color: #ffffff;
   border: none;
    padding: 1rem;
   font-size: 1rem;
	 border-radius: 4px;
  cursor: pointer;
    font-weight :        600;
    transition: all 0.3s ease;
}

.submit-button:hover {
   background-color   :#2980b9;
  transform: translateY(-2px);
}

.footer-main {
  background-color: var(--primary-color);
  color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
   margin:        0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
   margin-bottom     :      2rem;
}

.footer-block h3 {


  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-logo {
    height: 60px;
  width: auto;
  filter: brightness(0) invert(1);


}

.footer-links
{
  list-style: none;
} 

.footer-links li {
                    margin-bottom: 0.7rem;
}

.footer-links a {
	 color: #ecf0f1;
	transition    :color 0.3s ease;
		 text-decoration: none;
}

.footer-links a:hover {
	  color: var(--accent-color);}

.footer-contact p {
  margin-bottom    :      0.8rem;
    line-height: 1.6;
  color     :   #ecf0f1;
	
}

.footer-block p {
    color: #ecf0f1;
    line-height: 1.6;
	font-size: 0.95rem;


}

.footer-bottom {
		 text-align: center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
   color:    #bdc3c7;


}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--primary-color);
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .about-container h2,
    .workshops-container h2,
    .contact-container h2,
    .cta-booking-content h2 {
        font-size: 1.8rem;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button,
    .cta-button-alt {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.services-hero    {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
        color: #ffffff;
                    padding: 3rem 2rem;
   text-align     :      center; 

}

.services-hero-content
{
   max-width  : 1200px;
  margin: 0 auto;

	}

.services-hero h1 {
     margin-bottom: 1rem;
	    font-size: 2.8rem;
	
}

.services-hero p {

   font-size     :  1.1rem;
   opacity: 0.95;
}

.services-overview {
      background-color: #f8f9fa;
   padding: 3rem 2rem;
}  

.services-overview-container  
  {
   max-width    :        1200px;
  margin: 0 auto;
  text-align: center;
}

.services-overview-container h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
   margin-bottom: 1.5rem;
}

.overview-intro {
    font-size    :  1.05rem;
  color: var(--text-light);
    line-height: 1.7;
   max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
       padding: 4rem 2rem;


}

.services-detailed-container {
   max-width: 1200px;
   margin    :     0 auto;
}

.service-item {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items :center;
  margin-bottom  : 4rem;
}

.service-item.alternate	{
  direction:  rtl;
}

.service-item.alternate > * {
  direction: ltr;

}

.service-image {
  overflow: hidden;
   border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-image img {
    width: 100%;
                    height: auto;
    display: block;
   transition: transform 0.3s ease;
}  

.service-item:hover .service-image img


{
  transform: scale(1.05);
}

.service-content h3 {
   font-size: 1.8rem;
	  color: var(--primary-color);
	   margin-bottom     :0.5rem;
}



.service-subtitle {
  font-size: 1rem;
  color: var(--accent-color);
    margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-description {
   margin-bottom: 1.5rem;
}

.service-description p {
  color: var(--text-light);
   line-height: 1.7;
    margin-bottom:    1rem;
}

.service-list {
   list-style: none;
	    margin-left: 0;
}

.service-list li {
     color: var(--text-light);
  padding-left    :  1.5rem;
  margin-bottom: 0.7rem;
   position: relative;
  line-height: 1.6;
	}

.service-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
	 font-weight: bold;
}

.service-details {
  display     :   flex;
   flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
	}

.detail-item {
        display: inline-block;
  background-color: var(--light-bg);
   padding :   0.6rem 1rem;
    border-radius: 4px;
                    font-size: 0.9rem;
  color: var(--text-dark);
    font-weight: 500;
}

.webinars-section {
	 background-color: #ecf0f1;
    padding: 4rem 2rem;

}

.webinars-container {
    max-width: 1200px;
   margin :    0 auto;
	
}

.webinars-container h2 {
  color: var(--primary-color);
	font-size: 2.2rem;
   text-align: center;
   margin-bottom: 1rem;
}

.webinars-intro {
	   text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
   font-size: 1rem;
	}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem; 
	
}


.webinar-card {
    background-color: #ffffff;
    padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.webinar-card:hover {
  transform: translateY(-5px);
	  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.webinar-card h3 {
  color: var(--primary-color);
   margin-bottom: 0.8rem;
   font-size: 1.1rem;
}

.webinar-date {
  color: var(--accent-color);
   font-weight: 600;
    margin-bottom     :        0.8rem;
    font-size     :        0.95rem;
}

.webinar-desc {
  color: var(--text-light);
  margin-bottom     :   1rem;
		 font-size: 0.95rem;
   line-height: 1.6;
}

.webinar-duration {
  display: inline-block;
  background-color: var(--accent-color);
    color: #ffffff;
   padding: 0.4rem 0.8rem;
    border-radius: 4px;
  font-size :    0.85rem;
	font-weight: 600;
}

.conferences-section {
    padding: 4rem 2rem;
}

.conferences-container {
 max-width: 1200px;
    margin: 0 auto;
}



.conferences-container h2 {

  color: var(--primary-color);
					 font-size: 2.2rem;
	    text-align    :center;
	  margin-bottom: 1rem;

}

.conferences-intro {

                    text-align: center;
  color: var(--text-light);
  margin-bottom   :   2rem;
  line-height: 1.7;



}

.conferences-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.conference-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	 padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-top: 3px solid var(--secondary-accent);
  transition: all 0.3s ease;
}

.conference-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12); 

}

.conference-item h3 {
  color: var(--primary-color);
   margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.conference-item p {

  color: var(--text-light);
          line-height: 1.6;
	 margin-bottom: 1rem;
}

.conf-details {
  color: var(--accent-color); 
		 font-weight  :       600; 
	    font-size: 0.95rem; 
	      margin-top: 1rem;
}

.pricing-section {
    padding :4rem 2rem;
    background-color     :   #f8f9fa;

}

.pricing-container {


	max-width:   1200px;
    margin: 0 auto;
}

.pricing-container h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  text-align: center;
	margin-bottom: 2rem;
}

.pricing-grid {
    display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; 
	
} 

.pricing-card {
    background-color: #ffffff;
				 padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
               text-align :        center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.pricing-card h3     {
  color: var(--primary-color);
  font-size: 1.3rem;
 margin-bottom   :      1rem;
}

.price {
  font-size: 2rem;
  color: var(--accent-color);
    font-weight     :       700;
   margin-bottom: 0.3rem;
}

.price-desc {
  color: var(--text-light);
   font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.price-features
	{

	  list-style  :    none;
   text-align: left;
   margin-bottom: 1.5rem;
	

}

.price-features li {
  color: var(--text-light);
	padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.price-features li:last-child {
   border-bottom: none;
}

.thankyou-section {
  min-height: 100vh;
       display: flex;
     align-items    :     center;
     padding     :       3rem 2rem;
     background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
}

.thankyou-container {
 max-width: 800px;
  margin: 0 auto;
  width: 100%;}



.thankyou-content {
      background-color: #ffffff;
	    padding: 3rem;
	      border-radius :      12px;
	  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	    text-align: center;

}

.success-icon {
  color: var(--success-color);
   margin-bottom: 2rem;
                    display: flex;
      justify-content: center;
}


.success-icon svg {
	 width: 80px;
  height     : 80px;
  stroke: var(--success-color);
       fill: none;
    stroke-width: 2;
}

.thankyou-content h1 {
   font-size: 2.5rem;
  color: var(--primary-color);
	margin-bottom: 1rem;
}

.thankyou-message {
    font-size:       1.1rem;
  color: var(--text-light);
    line-height   :        1.7;
    margin-bottom   :     2rem; 
	
}

.next-steps {
   background-color: #f8f9fa;
   padding: 2rem;
  border-radius: 8px;
    margin-bottom: 2rem;
  text-align: left;
}

.next-steps h2 {
  color: var(--primary-color);
    font-size    :      1.5rem;
    margin-bottom: 1.5rem;
   text-align: center;
}

.steps-list   {
  display    :  flex;
          flex-direction: column;
    gap    :    1.5rem;
}

.step		{


       display: grid;
   grid-template-columns: 60px 1fr;
		 gap: 1.5rem;
  align-items: flex-start;} 

.step-number {
   width: 60px;
  height: 60px;
  background-color: var(--accent-color);
   color: #ffffff;
        display: flex;
	align-items: center;
    justify-content: center;
 border-radius    : 50%;
                    font-size: 1.5rem;
          font-weight: 700;
          flex-shrink: 0;
}

.step-content h3 {
  color: var(--primary-color);
   margin-bottom:        0.5rem;
         font-size: 1.1rem;
}  

.step-content p 
 {
  color: var(--text-light);
    line-height: 1.6; 

}

.additional-info {
    background-color: #ecf0f1;
   padding: 2rem;
   border-radius: 8px;
    margin-bottom: 2rem;
}

.additional-info h2 {
  color: var(--primary-color);
    font-size: 1.3rem;
  margin-bottom: 1rem;


}  

.additional-info p {


  color: var(--text-light);
	 margin-bottom: 1rem;
    line-height :      1.6;

}

.contact-info {
  background-color: #ffffff;
   margin-top: 1rem;
   border-radius :     6px;
   padding: 1.5rem;
}

.contact-info p {
  color: var(--text-dark);
  margin: 0.5rem 0;
  font-weight:   500; 
	
     }

.action-buttons {
  display: grid;
			grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.button-primary,
.button-secondary {
  display: inline-block;
    padding: 1rem 2rem;
   border-radius: 4px;
  text-decoration: none;
   font-weight: 600;
      transition: all 0.3s ease;
  cursor: pointer;
   border: none;
    font-size: 1rem;
}

.button-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

.button-primary:hover {


    background-color: #2980b9;
  transform: translateY(-2px);
}

.button-secondary {
      background-color: #ecf0f1;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}



.button-secondary:hover {
  background-color: var(--primary-color);
	color:        #ffffff;
}

@media (max-width: 968px) {
    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item.alternate {
        direction: ltr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .services-overview-container h2,
    .webinars-container h2,
    .conferences-container h2,
    .pricing-container h2 {
        font-size: 1.8rem;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .success-icon svg {
        width: 60px;
        height: 60px;
    }

    .step {
        grid-template-columns: 50px 1fr;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-details {
        flex-direction: column;
    }

    .detail-item {
        width: 100%;
        text-align: center;
    }

    .webinars-grid,
    .conferences-list {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .next-steps,
    .additional-info {
        padding: 1.5rem;
    }

    .step {
        grid-template-columns: 45px 1fr;
    }

    .step-number {
        width: 45px;
        height: 45px;
    }
}.policySection {
  padding     :   80px 2rem;
   background     : #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
   max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom :       2rem;
  font-weight: 700;
		text-align: center;
}

.policy-content {
   background-color: #ffffff;
  padding: 2.5rem;
    border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policy-content h3 {
  font-size: 1.5rem;
    color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
    font-weight: 700;
          border-left :    4px solid #3498db;
   padding-left: 1rem;
}

.policy-content h3:first-child {
 margin-top: 0;
	
}

.policy-content p{
	 color: #7f8c8d; 
		margin-bottom: 1.5rem; 
	  line-height: 1.8; 
		 font-size: 1rem; 
	                    text-align: justify;
}

.policy-list 
 {
    list-style  :      none;
     margin: 1.5rem 0 1.5rem 0;
      padding-left: 0;
}

.policy-list li {
    color: #7f8c8d;
    margin-bottom: 1rem;
               padding-left: 2rem;
          position: relative;
  line-height: 1.7;
   font-size: 1rem;


}

.policy-list li:before {
	  content: "•";
    position: absolute;
   left: 0;
  color: #3498db;
   font-weight: bold;
   font-size   :   1.2rem;
     }

.policy-list li strong {

	    color: #2c3e50;
	   font-weight: 600;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-content {
        padding: 1.5rem;
        border-radius: 6px;
    }

    .policy-content h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        padding-left: 0.8rem;
    }

    .policy-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .policy-list li {
        font-size: 0.95rem;
        padding-left: 1.8rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .policy-content {
        padding: 1.2rem;
        border-radius: 4px;
    }

    .policy-content h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
        padding-left: 0.6rem;
        border-left-width: 3px;
    }

    .policy-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .policy-list {
        margin: 1rem 0;
    }

    .policy-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
        margin-bottom: 0.6rem;
        line-height: 1.6;
    }
}