* {
   margin:       0;
    padding: 0;
   box-sizing :     border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
    background-color: #f8f9fa;
    line-height: 1.6;
}

.mainNav {
 background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
    top: 0;
  z-index: 1000;
}

.navContainer {
    max-width    :1200px;

	    margin: 0 auto;

		padding   :  1rem 2rem;

	    display: flex;

	  justify-content: space-between;

	   align-items: center;
}

.navBrand img {
  height: 50px;
  width: auto;
}

.navLinks {
    display: flex;
  list-style: none;
	gap  :   2rem;
}

.navLinks a		{
       text-decoration: none;
	   color: #2c3e50;
	                    font-weight :500;
	    transition: color 0.3s ease;
	  position: relative;
	}

.navLinks a:hover {
             color: #3498db;
     }

.navLinks a::after {
  content: '';
    position:   absolute;
    bottom   :  -5px;
    left: 0;
  width: 0;
    height: 2px;
   background-color    :        #3498db;
   transition: width 0.3s ease;
}

.navLinks a:hover::after {
         width: 100%;
}

.burgerMenu {
    gap: 5px;
   flex-direction: column;
       cursor :pointer;
    display: none;
    border: none;
   background   :      none;
}

.burgerLine  
  {

	  width: 25px;
     height: 3px;
    background-color: #2c3e50;
  transition: all 0.3s ease;
    border-radius     :      2px;
     }

.burgerMenu.active .burgerLine:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burgerMenu.active .burgerLine:nth-child(2) {


      opacity: 0;
}

.burgerMenu.active .burgerLine:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.heroSection {
	max-width     : 1200px;
   margin:  0 auto;
  padding: 4rem 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
}

.heroContent h1 {
    font-size: 2.8rem;
  color: #1a252f;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.heroContent p {
	   font-size: 1.1rem;
    color :#555;
   margin-bottom: 2rem;}

.ctaButton {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  text-decoration: none;
  border-radius: 5px;
    transition: all 0.3s ease;
	 font-weight    :      600;
}  

.ctaButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
}

.heroImage img    {
  width: 100%;
  height: auto;
   border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.servicesOverview {
   max-width: 1200px;
    margin: 3rem auto;
  padding: 3rem 2rem;
   background: #fff;
  border-radius: 8px;

}

.servicesOverview h2 {
    font-size: 2.2rem;
    color: #1a252f;
    margin-bottom  :      2rem;
	text-align     :       center; 
	
}

.servicesGrid {
	  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	   gap: 2rem;


}

.serviceCard {
    background: #f8f9fa;
  border-radius: 8px;
    overflow    :   hidden;
                    transition: all 0.3s ease;
    border: 1px solid #e0e0e0; 

}

.serviceCard:hover
	{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.serviceCard img {
        width: 100%;
	height: 200px;
	object-fit: cover;
	}

.serviceCard h3
	{
	  font-size: 1.3rem;
    color: #2c3e50;
  padding: 1.5rem 1rem 0.5rem;
	
     }

.serviceCard p {


    color: #666;
    padding: 0 1rem 1.5rem;
  font-size: 0.95rem;


}

.ctaSection {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
        padding: 4rem 2rem;
	margin: 3rem 0;
   text-align: center; 

}

.ctaWrapper    {
  max-width     :       800px;
  margin: 0 auto;
}

.ctaSection h2 {
   font-size :      2.2rem;
   margin-bottom: 1rem;
}

.ctaSection p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
    opacity: 0.95;
}

.ctaButtonLarge {
  display :   inline-block;
               padding  :       1rem 2.5rem;
    background-color: white;
     color: #667eea;
					text-decoration: none;
   border-radius: 5px;
	font-weight: 700;
       transition: all 0.3s ease;
  font-size: 1.05rem;
}

.ctaButtonLarge:hover {

  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);


}

.contactSection {
   max-width: 1200px;
        margin: 3rem auto;
   padding: 3rem 2rem;
    background: white;
  border-radius: 8px;
}

.contactSection h2 {
  font-size: 2.2rem;
          color   :     #1a252f;
    margin-bottom: 2rem;
  text-align: center;
}

.contactWrapper {
      display: grid;
    grid-template-columns: 2fr 1fr;
   gap: 2rem;
}



.contactForm {
     background:       #f8f9fa;
	   padding: 2rem;
	       border-radius  :8px;
}

.formGroup {
   margin-bottom: 1.5rem;
}

.formGroup label{
  display     :    block;
    margin-bottom: 0.5rem;
 font-weight: 600;
    color: #2c3e50;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
  width: 100%;
               padding   :  0.8rem;
    border: 1px solid #ddd;
  -moz-border-radius: 5px;
  border-radius: 5px;
    -webkit-border-radius: 5px;
   font-family: inherit;
   -webkit-transition: border-color 0.3s ease;
    font-size: 1rem;
	transition: border-color 0.3s ease;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
   outline: none;
    border-color  :        #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submitBtn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
       color: white;
 border: none;
   border-radius: 5px;
   font-weight  :  700;
       font-size: 1rem;
   cursor: pointer;
  transition: all 0.3s ease;
}

.submitBtn:hover
	{
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
} 

.contactInfo {
    background: #f8f9fa;
    padding: 2rem;
     border-radius: 8px;
}

.contactInfo h3 {
   color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.contactInfo p     {
  color: #555; 
      margin-bottom    : 1.5rem; 
   line-height: 1.8;
}  

.pageFooter {
   background-color: #1a252f;
    color: #ecf0f1;
   padding   :      3rem 2rem 1rem;
   margin-top: 3rem;
}

.footerContent  {
   max-width: 1200px;
                    margin: 0 auto;
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
  margin-bottom     : 2rem;
}

.footerBrand img {
 height: 60px;
 width     :    auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footerSection h4 {
    color: white;
   margin-bottom   :        1rem;
    font-size: 1.1rem;
}

.footerSection ul {
   list-style    :    none;
}

.footerSection ul li {

    margin-bottom: 0.5rem;
}

.footerSection a {
    color: #ecf0f1;
        text-decoration   : none;
   transition: color 0.3s ease;
}

.footerSection a:hover {
    color: #3498db;
}

.footerSection p
	{
   color: #ecf0f1;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footerBottom


{
  text-align: center;

  padding-top :    2rem;

  border-top: 1px solid rgba(236, 240, 241, 0.2);

          color: #bdc3c7;
}
@media (max-width: 768px) {
    .navLinks {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .navLinks.active {
        display: flex;
    }

    .navLinks li {
        padding: 0.5rem 0;
    }

    .burgerMenu {
        display: flex;
    }

    .heroSection {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .heroContent h1 {
        font-size: 1.8rem;
    }

    .heroContent p {
        font-size: 1rem;
    }

    .servicesGrid {
        grid-template-columns: 1fr;
    }

    .contactWrapper {
        grid-template-columns: 1fr;
    }

    .servicesOverview h2,
    .ctaSection h2,
    .contactSection h2 {
        font-size: 1.8rem;
    }

    .ctaSection {
        padding: 2rem 1rem;
    }

    .footerContent {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navContainer {
        padding: 0.8rem 1rem;
    }

    .heroContent h1 {
        font-size: 1.5rem;
    }

    .serviceCard h3 {
        font-size: 1.1rem;
    }

    .ctaButton,
    .ctaButtonLarge {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .contactForm,
    .contactInfo {
        padding: 1.5rem 1rem;
    }
}.servicesHero {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
  padding: 3.5rem 2rem;
   text-align: center;
    margin-top: 70px;
     }

.servicesHeroContent h1   {
      font-size: 2.5rem;
   margin-bottom: 1rem;
   line-height: 1.2;
	}

.servicesHeroContent p     {
       font-size: 1.1rem;
  opacity: 0.95;
   max-width: 700px;
  margin :       0 auto;


}

.servicesDetailed {
  max-width: 1200px;
    margin  :       3rem auto;
  padding:0 2rem;
}

.servicesContainer {


  gap: 3rem;
      display: flex;
  flex-direction: column;}



.serviceDetailCard {


   background: white;
  border-radius: 8px;
 overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   border    :       1px solid #e0e0e0;
  transition: all 0.3s ease;
   display: grid;
               grid-template-columns: 1fr 1fr;
  gap: 0;


}

.serviceDetailCard:hover {

	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      border-color: #3498db;
	}

.serviceImageWrapper {
  overflow: hidden;
    height: 100%;
    min-height     :  400px;
}

.serviceImageWrapper img {
	 width: 100%;
  height: 100%;
  object-fit  : cover;
               transition: transform 0.3s ease;
}

.serviceDetailCard:hover .serviceImageWrapper img {
  transform: scale(1.05);
}

.serviceDetailContent {
   padding: 2rem;
   display: flex;
                    flex-direction: column;
    justify-content: flex-start; 
	
}

.serviceDetailContent h2 {


	font-size: 1.8rem;
  color: #1a252f;
   margin-bottom: 1rem;
     }

.serviceDescription {


   color: #555;
   font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
     }

.serviceFeatures {

	   margin-bottom: 1.5rem;}

.serviceFeatures h3    {
   font-size: 1.1rem;
   color:     #2c3e50;
    margin-bottom: 0.8rem;
   font-weight: 600;
}

.featuresList {
	 list-style: none; 
   padding: 0;
}

.featuresList li  {

  padding: 0.4rem 0 0.4rem 1.5rem;
   color: #666;
	position: relative;
     font-size :      0.95rem;
     }

.featuresList li:before {
  content: "✓";

	    position: absolute;

	  left: 0;

	  color: #27ae60;

	    font-weight: bold;
}

.servicePrice {
   background :#f8f9fa;
     padding: 1rem;
  border-radius: 5px;
   margin-top: auto;
			border-left: 4px solid #3498db;
}



.servicePrice p {
	 color: #2c3e50;
    margin: 0.4rem 0;
   font-size:       0.95rem;
}

.packagesSection {

	max-width: 1200px;
    margin    : 4rem auto;
  padding :       0 2rem;

}

.packagesSection h2		{

	  font-size: 2.2rem;
  color: #1a252f;
  text-align: center;
	margin-bottom: 2rem;
	}  

.packagesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.packageCard 
 {
  background: white;
    border: 2px solid #e0e0e0;
   border-radius: 8px;
  padding: 2rem;
   text-align: center;
	 transition: all 0.3s ease;
  position: relative;
}

.packageCard:hover {
    border-color     :       #3498db;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
  transform: translateY(-5px);
}

.packageCard h3 {
                    font-size: 1.5rem;
	 color: #1a252f;
  margin-bottom    :      1rem;
}

.packagePrice {
    font-size: 2rem;

   color: #3498db;

    font-weight:  700;

  margin-bottom: 1.5rem; 
	
}

.packageFeatures {
    list-style :     none;
    padding: 0;
	 margin-bottom: 2rem;
  text-align: left; 
	
}

.packageFeatures li {
    padding     :   0.6rem 0 0.6rem 1.5rem; 
	   position: relative; 
	   font-size: 0.95rem; 
	  color: #666; 
	
}

.packageFeatures li:before {
     left    :    0;
  font-weight: bold;
  color: #3498db;
   position   :       absolute;
  content: "•";
}

.packageBtn {
   display: inline-block;
   padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
        text-decoration: none;
    border-radius: 5px;
   font-weight  :        600;
   transition: all 0.3s ease;
   width    :  100%;
    text-align: center;
}

.packageBtn:hover     {
  transform: translateY(-2px);

	  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
}

.testimonialsSection {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem 2rem;
   margin: 3rem 0;
}

.testimonialsSection h2 {

		font-size :2.2rem;
  color: #1a252f;
  text-align    :        center;
  margin-bottom: 2rem;

}

.testimonialsGrid {
   max-width     :     1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
					gap: 2rem;
}

.testimonialCard {
       background: white;
  padding:      2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}


.testimonialCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.testimonialText {
	color: #2c3e50;
     font-size  :   1rem;
            margin-bottom   :        1rem;
      line-height: 1.8;
       font-style    :   italic;
}

.testimonialAuthor {
  color: #667eea;

    font-weight: 600;

   font-size    :   0.95rem;
}

.faqSection   {


  max-width: 900px;
    margin: 3rem auto;
    padding    :      0 2rem;
     }

.faqSection h2 {
  font-size: 2.2rem;
    text-align: center;
   color: #1a252f;
   margin-bottom: 2rem;
}

.faqContainer {

   display: flex;
    flex-direction:        column;
   gap: 1rem;


}

.faqItem {
	background :    white;

	    border: 1px solid #e0e0e0;

	  border-radius: 8px;

	    overflow: hidden;
}

.faqQuestion
{
                    padding: 1.5rem;
	 display: flex;
  justify-content  :       space-between;
	 align-items: center;
	cursor: pointer;
   transition: all 0.3s ease;
  background: #f8f9fa;
}

.faqQuestion:hover {
				 background:        #f0f1f5;
}

.faqQuestion h3 {


    margin: 0;
    font-size: 1.1rem;
	color: #1a252f;
	flex: 1;

}

.faqToggle {
    font-size: 1.5rem;
  color: #3498db;
       -o-transition   :    transform 0.3s ease;
				 font-weight :       700;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease; 

}

.faqItem.active .faqToggle {
  transform: rotate(45deg);
} 

.faqAnswer {
  display     :   none;
   padding: 1.5rem;
	color     :     #555;
   line-height: 1.8;
    background: white;
}

.faqItem.active .faqAnswer {
       display: block;
}

.thankYouSection {
  max-width     :  700px;
    margin   :       5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thankYouContainer {

               background   :      white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);}

.successIcon {
  margin-bottom: 2rem;
    color :  #27ae60;
}

.successIcon svg {
	display: inline-block;
}

.thankYouSection h1		{
   font-size: 2.5rem;

	  color: #27ae60;

	    margin-bottom: 0.5rem;
}

.mainMessage {
   font-size: 1.3rem;
	 color  :      #555;
  margin-bottom :       2rem;
}

.thankYouDetails {
   background: #f8f9fa;
        padding: 2rem;
          border-radius: 8px;
	margin-bottom: 2rem;
    text-align: left;
}

.thankYouDetails p {
  line-height: 1.8;
    color: #555;
          margin-bottom     : 1rem;
}

.nextStepsBox {
    list-style  :  none;
    padding: 0;
         margin-top: 1rem;
}

.nextStepsBox li {
      padding: 0.6rem 0 0.6rem 1.5rem;
  color: #555;
  position: relative;
}  

.nextStepsBox li:before {
	  content: "→";
  color: #3498db;
	left: 0;
  position: absolute;
  font-weight: bold;
}

.actionButtons {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap     :  1rem;
    margin-bottom: 2rem;


}

.btnPrimary,
.btnSecondary {
    padding: 0.9rem 1.5rem;
      text-decoration: none;
  border-radius :        5px;
   font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
          text-align: center;
     }

.btnPrimary  {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	  color: white;
}

.btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3); 

}

.btnSecondary {
  background: white;
	color: #3498db;
    border  :     2px solid #3498db;
}  

.btnSecondary:hover {
  background: #3498db;
  color: white;
}

.contactInfoBox {
  text-align: left;
    background: #e3f2fd;
    padding    :   2rem;
    margin-top: 2rem;
                    border-radius: 8px; 

}

.contactInfoBox h3 {
    color: #1a252f;
    margin-bottom: 1rem;
}

.contactInfoBox p {
   color: #2c3e50;
	 margin    :        0.5rem 0;
}

.whyChooseSection {
  max-width: 1200px;
    margin: 3rem auto;
  padding: 3rem 2rem;
}

.whyChooseSection h2
	{
   font-size: 2.2rem;
	color: #1a252f;
   text-align: center;
  margin-bottom: 2rem;
	
}

.whyChooseGrid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
}

.chooseCard {
	text-align: center;
    padding: 2rem;
      background: white;
    border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.chooseCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.chooseIcon {
   margin-bottom: 1.5rem;
   color: #3498db;
}

.chooseCard h3    {

			font-size:  1.3rem;
    color    :     #1a252f;
    margin-bottom: 0.8rem;


}

.chooseCard p {
    color :#666;
        font-size: 0.95rem;
   line-height     :  1.6;

}  

.nextWebinarSection {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

                    color: white;

 padding     :        3rem 2rem;

  margin: 3rem 0;
}

.nextWebinarSection h2 {
  font-size: 2.2rem; 
   text-align: center; 
	 margin-bottom: 2rem;
}

.webinarBox {
  max-width: 700px;
               margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
   padding: 2.5rem;
   border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);


}

.webinarContent h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
	
}

.webinarContent > p {


    font-size: 1rem;
   opacity: 0.9;
   margin-bottom: 1.5rem;


}

.webinarDetails {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
    border-radius: 5px;
    margin-bottom    :1.5rem;
	 text-align     :       left;
}

.webinarDetails p

{
  margin :  0.5rem 0;
   font-size: 0.95rem;
}

.webinarBox .btnPrimary {
  width: 100%;
  background: white;
    color: #667eea;


}

.webinarBox .btnPrimary:hover {
  background: #f0f0f0;
}@media (max-width: 768px) {
    .servicesHero {
        margin-top: 60px;
    }

    .servicesHeroContent h1 {
        font-size: 1.8rem;
    }

    .serviceDetailCard {
        grid-template-columns: 1fr;
    }

    .serviceImageWrapper {
        min-height: 250px;
    }

    .serviceDetailContent {
        padding: 1.5rem;
    }

    .actionButtons {
        grid-template-columns: 1fr;
    }

    .packageCard {
        padding: 1.5rem;
    }

    .thankYouContainer {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .servicesHeroContent h1 {
        font-size: 1.5rem;
    }

    .serviceDetailContent h2 {
        font-size: 1.3rem;
    }

    .faqQuestion h3 {
        font-size: 0.95rem;
    }

    .thankYouSection h1 {
        font-size: 1.8rem;
    }

    .mainMessage {
        font-size: 1.1rem;
    }

    .nextStepsBox li,
    .packageFeatures li,
    .featuresList li {
        font-size: 0.9rem;
    }
}.policySection {
    padding: 80px 2rem;
      background: #f8f9fa;
   	 margin-top: 70px;
}

.policyContainer {
    max-width: 800px;

                    margin    :    0 auto;

   text-align: left;
}

.policyContainer h1 {


  font-size: 2.8rem;
  color: #1a252f;
    margin-bottom: 2rem;
   font-weight: 700;
        line-height: 1.2;



}

.policyContainer h2 {
   font-size: 1.6rem;
   color   : #2c3e50;
  margin-top    :       2rem;
   margin-bottom: 1rem;
  font-weight: 700;
   border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.policyContainer h2:first-of-type  {
    margin-top     : 0;
}

.policyContainer p {
         color: #555;
	 margin-bottom: 1.5rem;
    line-height: 1.8;
	font-size   : 1rem;
                    text-align: justify;
}

.policyContainer p + h2 {
    margin-top: 2.5rem;
}

.policyContainer p:first-of-type {
     font-size: 1.05rem;
    color: #666;
    font-style: italic;


}

.policyContainer
	{
    animation: fadeInUp 0.5s ease-out;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.policyContainer a	{
    color  :#3498db;
   text-decoration: none;
  transition: color 0.3s ease;
   font-weight: 500;
}

.policyContainer a:hover {

    color: #2980b9;
  text-decoration: underline;


}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
        margin-top: 60px;
    }

    .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;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        margin-top: 50px;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.15rem;
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: left;
    }
}

@media print {
    .policySection {
        background: white;
        padding: 0;
    }

    .policyContainer h1,
    .policyContainer h2 {
        color: #000;
        page-break-after: avoid;
    }

    .policyContainer p {
        color: #000;
        page-break-inside: avoid;
    }
}