* {
    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;
}

a {
   text-decoration: none;
   color: inherit;
}

button {
       cursor: pointer;
    border     :none;
   background:      none;
}

.navbar {

	  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
   padding :     1rem 2rem;
    position: sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	}

.navbar-container {
    max-width: 1200px;
   margin: 0 auto;
 display: flex;
  justify-content: space-between;
  align-items: center;
} 

.logo-section {
   display: flex;
    align-items: center;
}

.navbar-logo

{
     height: 64px;
    width: auto;


}

.burger-menu     {

	  display: none;
  flex-direction: column;
   cursor     :    pointer;
   gap  :  6px;
	}

.burger-line {
	 -webkit-transition: all 0.3s ease;
 width: 28px;
	 -moz-transition: all 0.3s ease;
  height: 3px;
    background-color: #2c3e50;
    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(7px, -7px); 
	
}

.nav-menu {
   display: flex;
	 list-style   :        none;
	gap: 2rem;
}

.nav-link {
  color: #2c3e50;
     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: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
 width: 100%;
}

.hero {
	display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items:  center;
    max-width: 1200px;
   margin: 0 auto;
    padding     :5rem 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
   line-height: 1.2;
   margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
   background-clip     :      text;
}

.hero-content p {
  font-size: 1.2rem;
     color    :      #555;
   	 margin-bottom: 2rem;
     line-height: 1.8; 

}

.cta-button {
	 display: inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
    color   :  white;
  border-radius: 50px;
   font-weight: 600;
	 transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.hero-image img {

	   width: 100%;

	  height: auto;

	  border-radius :        15px;

	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }

.about-section {
   background: #f8f9fa;
   padding  :        5rem 2rem;
}

.section-container {
    max-width: 1200px;
   margin     :      0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
}

.about-content h2,
.services-overview h2,
.training-section h2,
.consulting-section h2 {

         font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
     }

.about-content p {
  font-size: 1rem;
   color: #555;
	 margin-bottom: 1.5rem;
  line-height: 1.9; 

}

.about-image img {
   width: 100%;

 height: auto;

   border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-overview    {
   padding: 5rem 2rem;
}

.services-overview .section-container   {
    display: block;
	max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
			gap: 2rem;
       margin-top: 3rem;
}



.service-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
   padding: 2rem;
   border-radius: 12px;
               border :1px solid #e0e0e0;
   transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.15);
	border-color: #667eea; 

}

.service-card h3 {
    font-size: 1.5rem;
     margin-bottom: 1rem;
  color: #2c3e50;
}

.service-card p {
	 color: #666;
    line-height: 1.8;
}

.training-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
	padding: 5rem 2rem;
}

.training-container {
  display    :grid;
		 gap: 3rem;
	align-items   :        center;
  max-width     :      1200px;
   grid-template-columns: 1fr 1fr;
  margin: 0 auto;
}

.training-image img   {
   width: 100%;
  height     :   auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.training-content h2
	{
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.training-content p {
   color: #555;
    margin-bottom: 2rem;
  line-height  :1.9;
}

.training-list {
    list-style: none; 
	
}

.training-list li  
  {
    padding    :        0.8rem 0;
    padding-left: 2rem;
   position: relative;
	color: #555;
   line-height: 1.8;
	
}

.training-list li::before


{

	  content: '✓'; 
	                    position: absolute; 
	  left  :    0; 
	   color: #667eea; 
	       font-weight: bold; 
	  font-size    :     1.2rem;
	}

.consulting-section    {


    padding: 5rem 2rem;
  background: #ffffff;}

.consulting-section .section-container {
    display    :      block;
}

.consulting-cards {
		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
  margin-top: 3rem;}

.consulting-card {
	 background: #f8f9fa;
     border-radius:  12px;
   overflow: hidden;
          transition     :        all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.consulting-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.consulting-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}


.consulting-card h3 {
          font-size: 1.5rem;
   padding: 1.5rem;
    color: #2c3e50;
		padding-bottom :   0.5rem;
}

.consulting-card p {
   color: #666;
   line-height: 1.8;
    padding    :0 1.5rem 1.5rem;
}

.cta-section {
  background: linear-gradient(135deg, #667eea, #764ba2);
               color: white;
   padding: 5rem 2rem;
    text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
     font-size: 2.5rem;
   margin-bottom    :    1rem;
   color: white;
}

.cta-section p


{
      font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button-large {
         display   : inline-block;
    padding: 1.2rem 3rem;
  background: white;
               color: #667eea;
    border-radius: 50px;
    font-weight :      700;
   transition :       all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.contact-section {
   background: #f8f9fa;
    padding  :        5rem 2rem;
}

.contact-container {
    max-width: 700px;
   margin: 0 auto;
}

.contact-section h2 {

    font-size  :       2.5rem;
	 text-align: center;
  margin-bottom: 3rem;
   color: #2c3e50;


}

.contact-form {
  background: white;
               padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 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: 0.9rem;
   border: 1px solid #ddd;
    border-radius: 8px;
  font-family     :        inherit;
	 font-size: 1rem;
  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-button {
  width: 100%;
     padding: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color:     white;
  border-radius: 8px;
  font-weight: 600;
       font-size: 1rem;
    cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.footer {

  background: linear-gradient(135deg, #2c3e50, #34495e); 
   color: white; 
     padding: 4rem 2rem;
     }

.footer-container
{
    max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
	 align-items: start;
}

.footer-logo {

   display: flex;
   align-items: center;}

.footer-logo-img {
  height: 86px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info p {
  margin-bottom :0.8rem;
    line-height: 1.8;
}

.address,
.phone {
       font-size: 0.95rem;
   opacity: 0.9;
}

.footer-nav {
   display: flex;
   flex-direction: column;
  gap   :       0.8rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
	transition    :        color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
               grid-column     :  1 / -1;
	 text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity  :   0.8;
   font-size: 0.9rem;
	}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .consulting-cards {
        grid-template-columns: 1fr;
    }

    .training-container {
        grid-template-columns: 1fr;
    }

    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .about-content h2,
    .services-overview h2,
    .training-section h2,
    .consulting-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .navbar {
        padding: 1rem;
    }

    .navbar-logo {
        height: 50px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
	 padding     :       4rem 2rem;
  text-align     :     center;
}

.services-hero-content {
  margin: 0 auto;
   max-width: 900px;
}

.services-hero h1 {
 font-size: 3rem;
	margin-bottom: 1rem; 

}

.services-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
   line-height: 1.8;
}

.services-detailed {
   padding: 5rem 2rem;
	background: #ffffff;
}

.service-detail-item {
	display: grid;
   grid-template-columns: 1fr 1fr;
               gap   :        3rem;
       align-items: center;
                    margin-bottom: 5rem;
  max-width: 1200px;
  margin-left: auto;
   margin-right :auto;
}

.service-detail-item.reverse {
   grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail-item.reverse > * {
	direction: ltr;
}

.service-detail-image img {
   width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
    color: #2c3e50;
      margin-bottom: 1rem;
   font-size: 2.2rem;
}

.service-detail-content p


{
    font-size: 1rem;
  margin-bottom: 1.5rem;
	color: #555;
    line-height: 1.9;
}

.service-detail-content h3 {
    font-size: 1.3rem;
               color: #2c3e50;
  margin: 1.5rem 0 1rem 0;
}

.service-list {
    list-style: none;
   margin-bottom: 1.5rem;
}

.service-list li {
 padding: 0.7rem 0;
               padding-left: 2rem;
  position :relative;
   color: #555;
    line-height: 1.8;
	
}

.service-list li::before {
  content: '✓';
      position: absolute;
   left: 0;
   color: #667eea;
	font-weight: bold;
    font-size: 1.1rem;


}

.service-duration {
  color: #667eea;
  font-weight: 600;
   margin-top: 1.5rem;
}

.service-packages {
   background  :   #f8f9fa;
    padding: 5rem 2rem;
}

.packages-only {
	  margin: 0 auto;
    max-width: 1200px;
   display: block;


}

.packages-only h2 {
    text-align    :     center;
  font-size: 2.5rem;
		 margin-bottom: 3rem;
    color: #2c3e50;
}

.packages-grid   {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.package-card {
  background: white;
	 padding     :     2.5rem;
   border-radius: 12px;
  border-left :       5px solid #ddd;
   transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.package-card.starter {
 border-left-color: #3498db;
}

.package-card.professional    {
  border-left-color :    #667eea;

  transform: scale(1.02);
}

.package-card.enterprise {
   border-left-color: #e74c3c;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.15); 
	
}

.package-card.professional:hover {
  transform: scale(1.05) translateY(-8px);
}

.package-card h3 {
   font-size: 1.5rem;
     margin-bottom: 1rem;
       color: #2c3e50;
}

.package-price {
   font-size: 1.3rem;
  font-weight: 600;
 color: #667eea;
   margin-bottom: 1.5rem;
}

.package-features  
  {
  list-style: none;
   margin-bottom: 1.5rem;
}

.package-features li {
   padding : 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
   color: #555;
   line-height :        1.7;
}

.package-features li::before {
     content: '✓';
   position: absolute;
    left: 0;
    color: #667eea;
      font-weight: bold;
	
     }

.package-duration {
 color :  #888;
    font-size: 0.9rem;
    font-style    :  italic;
}

.why-choose {
    padding: 5rem 2rem;
    background: white;
}

.why-choose .section-container {
      display: block;
    max-width: 1200px;
   margin: 0 auto;


}

.why-choose h2 {


  text-align: center;
 font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;

}

.why-grid {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	    gap: 2rem;
}

.why-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
      border-radius: 12px;
  border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
    border-color: #667eea;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.why-card h3 {
    font-size: 1.4rem;
	 color: #2c3e50;
  margin-bottom: 1rem;
}

.why-card p {
	 color: #666; 
   line-height: 1.8;
}

.service-cta {
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
  padding     :4rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
         margin: 0 auto;
}

.service-cta h2 {

	  font-size   :  2.5rem;
  margin-bottom: 1rem;
   color  :       white;}

.service-cta p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95;
}

.thankyou-section {
          padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  min-height: 60vh;
    display: flex;
    align-items: center;
  justify-content: center;
}

.thankyou-container {
   width: 100%;
	
}

.thankyou-content {
    max-width: 700px;
    margin     :     0 auto;
	 background: white;
      padding: 3rem;
    border-radius   :      15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-icon {
                    margin-bottom: 2rem;
  display: flex;
	justify-content: center;
}

.success-icon svg {
    color: #2ecc71;
    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: #2c3e50;
	 margin-bottom: 1rem;
}

.main-message {
  font-size: 1.2rem;
    color    :#667eea;
   font-weight: 600;
         margin-bottom: 2rem;
}

.thankyou-details {
   background: #f8f9fa;
  padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  text-align     : left;
}

.thankyou-details p {
    color: #555;
  margin: 0.8rem 0;
  line-height: 1.8;
}  

.contact-phone {
  text-align     :center;
  margin-top: 1rem;
	color: #667eea;
   font-size: 1.1rem;
}

.thankyou-actions {
    display: grid;
  grid-template-columns: 1fr 1fr;
	 gap: 1rem;
  margin: 2rem 0;
}

.action-button {
   display: inline-block;
      padding: 1rem 1.5rem;
      border-radius: 8px;
       font-weight: 600;
   	 transition: all 0.3s ease;
   	 text-align: center;
}

.action-button.primary
	{

	  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
     }

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.action-button.secondary {
   background: #f0f0f0;
    color: #2c3e50;
  border: 2px solid #667eea;
}

.action-button.secondary:hover {
    background: #667eea;
	 color  :        white;


}

.what-next {
    text-align: left;
    margin-top: 3rem;
}

.what-next h3 {

    font-size: 1.5rem;
    color: #2c3e50;
 margin-bottom: 1.5rem;
  text-align: center;

}

.next-steps {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 1rem;
}

.step {
   background: #f0f7ff;
   padding: 1.5rem;
  -webkit-border-radius: 10px;
       border-radius :    10px;
    border-left: 4px solid #667eea;
}

.step-number {
   display: flex;

	                    align-items: center;

		justify-content: center;

	       width: 40px;

	   height: 40px;

	    background: #667eea;

	    color: white;

	  border-radius  :    50%;

	    font-weight: bold;

	    margin-bottom: 1rem;

	   margin-left: auto;

	   margin-right: auto;
}

.step p {
    color: #555;
    font-size: 0.95rem;
	line-height  :      1.6;
   margin  :      0;
}

.services-reminder {
    padding: 4rem 2rem;
	background: white;
}

.services-reminder .section-container {


	 display: block;
  max-width: 1200px;
    margin: 0 auto;}

.services-reminder h2 {
    font-size: 2.5rem;
    color: #2c3e50;
	text-align: center;
          margin-bottom: 2.5rem;
}

.reminder-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.reminder-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 12px;
  border: 1px solid #e0e0e0;
     text-align: center;
 transition: all 0.3s ease;
}

.reminder-card:hover {
  transform: translateY(-5px);
   border-color: #667eea;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.reminder-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
  margin-bottom: 1rem;
}

.reminder-card p {
 color: #666;
    line-height :    1.7; 

}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        direction: ltr;
    }

    .service-detail-item.reverse > * {
        direction: ltr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.professional {
        transform: scale(1);
    }

    .package-card.professional:hover {
        transform: translateY(-8px);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    .reminder-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-detail-content h3 {
        font-size: 1.1rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .what-next h3 {
        font-size: 1.2rem;
    }

    .next-steps {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .step {
        padding: 1rem;
    }
}.policySection  
  {

	  padding: 80px 2rem;
    background    :      #f8f9fa;
}

.policyContainer   {
   margin: 0 auto;
  max-width: 800px;
       text-align: left;
}

.policyContainer h1  
  {
       font-size: 3rem;
   color: #2c3e50;
    margin-bottom   :    2rem;
    font-weight: 700;


}

.policyContainer h2 {
    font-size: 1.6rem;
      color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 2rem;
  font-weight    : 600;
               border-bottom: 2px solid #667eea;
  padding-bottom: 0.5rem;
}

.policyContainer p {
   color   :    #555;
                    margin-bottom: 1.5rem;
          line-height :  1.8;
    font-size: 1rem;
  text-align: justify;
}

.policyContainer p:first-of-type {

	   color: #666; 
    font-size    :    1.1rem;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: left;
    }
}