* {
    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-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                    position: sticky;
    top: 0;
   z-index: 1000;
               padding: 0 20px;
}

.nav_container {
	   max-width: 1200px;
  margin: 0 auto;
                    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;

}

.nav_logo_section {
  display: flex;
  align-items: center;
     }

.nav_logo    {
		height: 64px;
   width     :  auto;
}

.nav_menu {
    display: flex;
          list-style: none;
   gap    :   40px;
}

.nav_link {
	text-decoration :       none;
   color: #2c3e50;
  font-weight: 500;
   transition: color 0.3s ease;
                    font-size: 16px;
}

.nav_link:hover {
       color: #3498db;
	
	}

.nav_burger {
   display: none;
  flex-direction: column;
   background  :    none;
  border: none;
   cursor: pointer;
	gap: 6px;
}

.burger_line {
  width: 25px;
    height: 3px;
   background-color: #2c3e50;
   transition: all 0.3s ease;

}@media (max-width: 768px) {
    .nav_burger {
        display: flex;
    }

    .nav_burger.active .burger_line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .nav_burger.active .burger_line:nth-child(2) {
        opacity: 0;
    }

    .nav_burger.active .burger_line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav_menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav_menu.active {
        max-height: 300px;
    }

    .nav_menu li {
        border-bottom: 1px solid #ecf0f1;
    }

    .nav_link {
        display: block;
        padding: 16px 20px;
    }
}.hero {
   display   :      grid;
    grid-template-columns     :   1fr 1fr;
    gap: 40px;
   align-items: center;
    max-width: 1200px;
  margin: 0 auto;
   padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
}

.hero_content h1 {
       font-size: 48px;
  margin-bottom: 20px;
    line-height :    1.2;
     }

.hero_content p {
   font-size: 18px;
   margin-bottom: 30px;
  line-height: 1.6;
}

.hero_btn {
  display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 14px 40px;
   text-decoration: none;
   border-radius     :     50px;
    font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
}

.hero_btn:hover {
   background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero_visual img {


   width: 100%;
         height: auto;
      border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
     }
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .hero_content h1 {
        font-size: 32px;
    }

    .hero_content p {
        font-size: 16px;
    }
}.services_preview {
   max-width: 1200px;
   margin: 0 auto;
         padding: 80px 20px;
}

.services_preview h2 {
    text-align: center;
    font-size     :    40px;
  margin-bottom: 60px;
    color: #2c3e50;
}

.services_grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
      gap: 30px;
}
/* Layout styles */


	/* Typography */

/* Debug styles */



.service_card {
  background: #fff;
  border-radius: 10px;
	overflow   :      hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition   :     all 0.3s ease;


}

.service_card:hover  {


  transform: translateY(-10px);
	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}

.service_card img

{
   width: 100%;
   height: 220px;
  object-fit  :    cover;
}

.service_card h3 {
   font-size: 22px;
               padding: 20px 20px 10px;
 color: #2c3e50;
}

.service_card p 
 {
    padding: 0 20px 20px;

	  color: #555;

	    font-size: 14px;
}
@media (max-width: 768px) {
    .services_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services_preview h2 {
        font-size: 28px;
    }
}.methodology


{
	 display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 50px;
    align-items: center;
  max-width: 1200px;
	 margin: 0 auto;
                    padding: 80px 20px;
    background-color: #ecf0f1;
   border-radius: 10px;
}

.methodology_text h2 {
    font-size: 36px;

		margin-bottom: 20px;

	  color: #2c3e50;
}

.methodology_text p {
   font-size: 16px;
    margin-bottom :  25px;
  color: #555;
	line-height: 1.8;
}

.methodology_list {
    list-style: none;
}

.methodology_list li {
   padding: 12px 0;
	 padding-left: 30px;
  position: relative;
    font-size: 16px;
  color: #2c3e50;
}

.methodology_list li:before {
  content: "✓";
  position: absolute;
   left:0;
  color:        #3498db;
  font-weight: bold;
    font-size: 20px;
	
}

.methodology_image img {
    width: 100%;
  height:        auto;
			border-radius  : 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .methodology {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .methodology_text h2 {
        font-size: 28px;
    }
}.training_programs {
               padding: 80px 20px;
    max-width: 1200px;
  margin: 0 auto;
}

.training_programs h2 {
   text-align: center;
    font-size: 40px;
   margin-bottom: 60px;
   color: #2c3e50;
}

.programs_container{
    display:        grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program_box  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :#fff;
    padding: 40px;
   border-radius: 10px;
   text-align: center;
                    transition: all 0.3s ease;
}

.program_box:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.program_box h3 {
       font-size: 24px; 
   margin-bottom: 15px;
	
	}

.program_box p
{
   font-size: 16px;
   line-height: 1.6;


}@media (max-width: 768px) {
    .programs_container {
        grid-template-columns: 1fr;
    }

    .training_programs h2 {
        font-size: 28px;
    }
}.success_stories {
    max-width: 1200px;
    margin: 0 auto;
  padding: 80px 20px;
}

.success_stories h2 {
    text-align: center;
    font-size: 40px;
  margin-bottom: 60px;
  color: #2c3e50;
}

.stories_grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 30px;
}

.story_item		{
    background: #fff;
  border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story_item img {
     width: 100%;
    height: 250px;
   object-fit: cover;
}

.story_item h3 {
   font-size: 22px;
 padding: 20px 20px 10px;
  color   :   #2c3e50;
}

.story_item p {
    padding: 0 20px 20px;
	 color: #555;
    font-size: 14px;
 line-height: 1.6;
}@media (max-width: 768px) {
    .stories_grid {
        grid-template-columns: 1fr;
    }

    .success_stories h2 {
        font-size: 28px;
    }
}.cta_section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
        text-align: center;
  padding: 80px 20px;
   margin: 40px 0;
}

.cta_section h2 {
  font-size: 40px;
                    margin-bottom: 15px;
}

.cta_section p {

	   font-size: 18px;
    margin-bottom: 30px;}

.cta_button {
   display: inline-block;
   background-color: #fff;
    color: #f5576c;
    padding: 14px 40px;
    text-decoration: none;
					border-radius   :  50px;
   font-weight   :     600;
   transition: all 0.3s ease;
   font-size    :16px;
}

.cta_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 
	
}

#contact     {
    max-width: 1200px;
   margin: 0 auto;
  padding: 80px 20px;
}

#contact h2 {
                    text-align: center;
   font-size :  40px;
  margin-bottom     :     60px;
   color: #2c3e50;
}

.contact_container {
      display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 50px;
}  

.contact_form {
 display :flex;

    flex-direction: column;

         gap: 20px; 

}

.contact_form input,
.contact_form select,
.contact_form textarea {
	  padding: 14px 16px;

	    border: 2px solid #ecf0f1;

	   border-radius: 6px;

	   font-size: 16px;

	    font-family: inherit;

	   transition: border-color 0.3s ease;

     }

.contact_form input:focus,
.contact_form select:focus,
.contact_form textarea:focus {
			outline: none;

   border-color: #3498db;

  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); 

}

.contact_form textarea {
    resize: vertical;
     min-height: 150px;
}

.submit_btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :     #fff;
   padding: 14px 40px;
	border: none;
   border-radius: 6px;
  font-size: 16px;
   font-weight: 600;
  cursor     :pointer;
   transition: all 0.3s ease;
}

.submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}



.contact_info {
  background-color: #f8f9fa; 
	 -moz-border-radius: 10px; 
   padding: 40px; 
  border-radius: 10px; 
    -webkit-border-radius: 10px;
}

.contact_info h3 {
  font-size: 18px;
	color: #2c3e50;
        margin-bottom   :       10px;
}

.contact_info p {
  color: #555;
  font-size: 16px;
    line-height: 1.8;
}@media (max-width: 768px) {
    .contact_container {
        grid-template-columns: 1fr;
    }

    #contact h2 {
        font-size: 28px;
    }
}.footer {
    background-color: #2c3e50;
  color: #ecf0f1;
     padding: 60px 20px 20px;
   margin-top: 60px;
}

.footer_content {


  max-width   :    1200px;
    margin :   0 auto;
    display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
	 margin-bottom: 40px;


}

.footer_logo_section {
    display: flex;
  align-items    :    flex-start;
}
/* Temporary fix */


/* Third-party styles */


/* Hack for old browsers */

.footer_logo {
   height: 86px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer_info h4,
.footer_links h4,
.footer_legal h4 {
    font-size: 18px;
   margin-bottom: 15px;
  color: #fff;
}

.footer_info p,
.footer_links a,
.footer_legal a    {
   font-size  : 14px;
   line-height: 1.8;
  color: #bdc3c7;
    text-decoration: none;
}

.footer_links ul,
.footer_legal ul {
   list-style: none;
}

.footer_links a:hover,
.footer_legal a:hover {
    color: #3498db;
	
}


.footer_bottom {


  text-align: center;
	padding-top: 20px;
   border-top: 1px solid #34495e;
  color: #95a5a6;
    font-size: 14px;
	}  
@media (max-width: 768px) {
    .footer_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer_logo {
        height: 70px;
    }
}@media (max-width: 480px) {
    .footer_content {
        grid-template-columns: 1fr;
    }
}.services_hero    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color:   #fff;
	 padding: 100px 20px;
  text-align: center;
	
}

.services_hero_content h1

{
    font-size    :48px;
    margin-bottom: 20px;
	 line-height: 1.2;
}

.services_hero_content p {
    font-size: 20px;
  line-height: 1.6;


}

.services_detailed {

  padding: 80px 20px;
    background-color: #f8f9fa;}

.services_max_width {
   max-width: 1200px;
    margin: 0 auto;
}

.service_detailed_block {
    display: grid;
  grid-template-columns     : 1fr 1fr;
   gap: 50px;
    align-items: center;
          margin-bottom: 80px;
   background-color: #fff;
     padding    :   40px;
  border-radius   :10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service_detailed_block.reverse {
    grid-template-columns    :1fr 1fr;
    direction: rtl;
}

.service_detailed_block.reverse .service_detail_content {
   direction     :        ltr;
}

.service_detail_image img{
    width: 100%;
   height: auto;
   border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service_detail_content h2 {
	 font-size :     32px;
  color  :  #2c3e50;
               margin-bottom     :      15px;
}

.service_detail_content > p:first-of-type {
	   font-size: 16px;
   color: #555;
    margin-bottom: 20px;
   line-height: 1.8;
	}

.service_detail_content h3 {
  font-size: 20px;
  color: #2c3e50;
   margin-bottom: 15px;
    margin-top: 20px;
}

.service_list {
	  list-style: none;
  margin-bottom: 20px;


}

.service_list li {
   position: relative;
  line-height: 1.6;
                    font-size   : 15px;
   padding: 10px 0;
   color: #555;
   padding-left: 28px;
}

.service_list li:before {
  content: "▸";
	 position: absolute;
    left: 0;
  color: #3498db;
  font-weight: bold;
  font-size   :    18px;
}

.service_duration {
  font-size: 15px;
    color   :     #2c3e50;
    margin-top: 20px;
   padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}@media (max-width: 768px) {
    .service_detailed_block,
    .service_detailed_block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
        margin-bottom: 40px;
        padding: 30px 20px;
    }

    .service_detailed_block.reverse .service_detail_content {
        direction: ltr;
    }

    .service_detail_content h2 {
        font-size: 24px;
    }

    .services_hero_content h1 {
        font-size: 32px;
    }
}.services_packages {
       max-width: 1200px;

	  margin: 0 auto;

	   padding: 80px 20px;
     }

.services_packages h2 {
    text-align: center;

		 font-size: 40px;

	       margin-bottom: 60px;

	   color: #2c3e50;
}

.packages_grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package_card {
    background    :#fff;
  border: 2px solid #ecf0f1;
   border-radius: 10px;
   padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
      position: relative;
}

.package_card:hover    {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color     : #3498db; 
	
}

.package_card.featured  {
  border-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  transform: scale(1.05);
}

.featured_badge {
   position: absolute;
    top: -15px;
    left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  :    #fff;
	padding: 8px 20px;
   border-radius: 50px;
                    font-size:        12px;
    font-weight:     600;
  text-transform: uppercase; 

}

.package_card h3 {
    font-size: 24px;
   color: #2c3e50;
    margin-bottom     :       10px;
}

.package_price


{
  font-size: 28px;
    color: #3498db;
  font-weight: bold;
   margin-bottom: 30px;
}

.package_list {
   list-style :        none;
   text-align   :     left;
  margin-bottom: 30px;
}

.package_list li {
          padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #555;
    font-size: 15px;


} 

.package_list li:last-child {
  border-bottom: none;
}

.package_note {
	 color   :   #95a5a6;
       font-size: 13px;
    font-style:     italic;
}@media (max-width: 768px) {
    .packages_grid {
        grid-template-columns: 1fr;
    }

    .package_card.featured {
        transform: scale(1);
    }

    .services_packages h2 {
        font-size: 28px;
    }
}.webinars_section
{


    margin: 0 auto;
   max-width: 1200px;
 padding: 80px 20px;

}

.webinars_section h2 {
    text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  color: #2c3e50;
}

.webinars_max_width    {

    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}

.webinar_item {
                    background: #fff;
       padding   : 40px;
       border-radius :      10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
}

.webinar_item:hover {

	  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.webinar_item h3 {
    font-size: 24px;
	color: #2c3e50;
			margin-bottom: 15px;
}

.webinar_item p  {
  margin-bottom : 25px;
  color: #555;
   font-size   :     15px;
	line-height: 1.8;
}

.webinar_features {
    display   :        flex;
   flex-direction: column;
  gap: 15px;
}

.feature {
                    background-color: #f8f9fa;
   padding: 15px;
   border-radius: 6px;
   font-size: 14px;
  color: #2c3e50;
  border-left: 4px solid #3498db;
}@media (max-width: 768px) {
    .webinars_max_width {
        grid-template-columns: 1fr;
    }

    .webinars_section h2 {
        font-size: 28px;
    }
}.why_choose
{
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: #fff;
   padding: 80px 20px;
}



.why_choose h2 {
    text-align: center;
       font-size:  40px;
    margin-bottom: 60px;
}

.why_grid {
   max-width: 1200px;
    margin  :      0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why_item {

	  background: rgba(255, 255, 255, 0.1);
   padding: 30px;
   border-radius   :       10px;
    text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;

}

.why_item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.why_item h3 {
   font-size: 22px;
               margin-bottom: 15px;
}

.why_item p {
    line-height: 1.6;
	    font-size: 15px;
}@media (max-width: 768px) {
    .why_grid {
        grid-template-columns: 1fr;
    }

    .why_choose h2 {
        font-size: 28px;
    }
}.services_cta {
  background-color: #2c3e50;
    color  :       #fff;
  text-align: center;
   padding: 60px 20px;
}

.services_cta h2	{
	font-size: 40px; 
	margin-bottom: 15px;
}

.services_cta p {
      font-size: 18px;
   margin-bottom     : 30px;
    line-height    :1.6;
	
}

.services_cta_btn  
  {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding:    14px 40px;
  text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
  transition    :all 0.3s ease;
    font-size: 16px;
}

.services_cta_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.thankyou_container {
   max-width: 800px;
  margin: 0 auto;
   padding    :     100px 20px;
}

.thankyou_content {
                    text-align  :     center;
  background   :#fff;
    padding: 60px 40px;
   border-radius:    15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success_icon {
    font-size: 80px;
  color: #2ecc71;
	margin-bottom: 20px;
   animation: bounceIcon 0.6s ease;
}@keyframes bounceIcon {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}.thankyou_content h1

{
       font-size: 40px;
   color: #2c3e50;
         margin-bottom     :       10px;

}

.thankyou_subtitle {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 30px;
}

.thankyou_message  
  {
   text-align: left;
   		background-color: #ecf0f1;
      padding: 30px;
       border-radius   :      10px;
       margin-bottom: 40px;
}

.thankyou_message p {
	  color: #2c3e50;
  font-size: 16px;
  line-height: 1.8;
	margin-bottom: 15px;}

.thankyou_message p:last-child {
    margin-bottom: 0;
}

.thankyou_info {
  text-align: left;
    margin-bottom: 40px;
   padding: 30px;
    background-color     :    #f8f9fa;
    border-radius: 10px;
}

.thankyou_info h2

{

  font-size: 24px;
    color: #2c3e50;
               margin-bottom: 20px;
                    text-align: center;
     }

.next_steps {

	  list-style: none;}

.next_steps li {
   padding: 15px 0;
	padding-left: 50px;
    position   :relative;
   color  :        #2c3e50;
	font-size: 15px;
	line-height: 1.6;
}

.step_number {
          position: absolute;
  left: 0;
      width    :    35px;
    height: 35px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
	border-radius:50%;
   display: flex;
    align-items     :       center;
    justify-content: center;
  font-weight:bold;
    font-size: 16px;
}

.thankyou_timeline

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color  :        #fff;
  padding: 20px;
    border-radius: 10px;
 margin-bottom: 40px;
   font-size: 16px;
}

.action_buttons  
  {


   display: flex;
  gap: 20px;
    justify-content: center;
  margin-bottom: 40px;

}

.btn_primary,
.btn_secondary 
 {
    padding: 14px 35px;
					text-decoration: none;
  border-radius: 6px;
	font-weight: 600;
  transition: all 0.3s ease;
   font-size: 16px;
}

.btn_primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  color: #fff;
}

.btn_primary:hover {

  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);}

.btn_secondary {
    background-color: #ecf0f1;
  color: #2c3e50;
  border: 2px solid #2c3e50;
}

.btn_secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

.contact_fallback {
    background-color: #fff3cd;
    border-left   :     4px solid #f39c12;
  padding: 20px;
    border-radius: 6px;
   color     : #2c3e50;
}

.contact_fallback p {

	   font-size: 15px;
  margin-bottom: 10px;
}

.contact_fallback p:last-child     {
    margin-bottom: 0;
}@media (max-width: 768px) {
    .thankyou_content {
        padding: 40px 20px;
    }

    .thankyou_content h1 {
        font-size: 28px;
    }

    .action_buttons {
        flex-direction: column;
    }

    .btn_primary,
    .btn_secondary {
        width: 100%;
    }

    .services_cta h2 {
        font-size: 28px;
    }
}.policySection {
  padding  :80px 2rem;
         background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {

    max-width: 900px;
  margin: 0 auto;
  text-align: left;
    background: #fff;
      padding: 60px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	}

.policyContainer h1


{
  margin-bottom   :   40px;
  padding-bottom: 20px;
  font-weight  :      700;
    font-size: 3rem;
    border-bottom  :       3px solid #667eea;
   color :        #2c3e50;}

.policyContainer h2 {
   	font-size: 1.8rem;
        color: #2c3e50;
  margin-top    :        40px;
  margin-bottom: 15px;
    font-weight    :  600;
}

.policyContainer p {
		 text-align: justify;
   line-height: 1.8;
  color:#555;
    margin-bottom: 20px;
   font-size: 1rem;
}

.policyContainer h2:first-of-type


{
  margin-top :   20px;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 40px;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 30px;
        margin-bottom: 12px;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 20px;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}