* {
  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: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
          padding: 1rem 0;
    position: sticky;
    top:   0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  max-width :    1200px;
  margin: 0 auto;
    display: flex;
  justify-content    :    space-between;
      align-items  :  center;
   padding:      0 2rem;
}

.nav-brand {
    flex-shrink     : 0; 

}

.logo-img {
  height   :  50px;
       width: auto;
}

.nav-links {
    display: flex;
   list-style: none;
    gap: 3rem;
}

.nav-links a		{
   text-decoration: none;
	 font-weight: 500;
   color: white;
   font-size: 1rem;
   transition: color 0.3s ease;
}


.nav-links a:hover {
  color:#64b5f6;
}

.burger-menu

{

   display    :   none;
   background: none;
   border: none;
  cursor: pointer;
    flex-direction: column;
   gap: 6px;

}

.burger-menu span {
	width: 25px;
    height: 3px;
  background-color: white;
      border-radius: 2px;
    transition: all 0.3s ease;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1e3c72;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}.hero-section {
     display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
	align-items: center;
    max-width: 1200px;
   margin: 4rem auto;
	padding: 0 2rem;


}

.hero-content h1 {
   font-size: 3rem;
   font-weight:700;
    margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
    background-clip: text;
}

.hero-content p
{
  color: #5a6c7d;
    margin-bottom   :  2rem;
         font-size: 1.1rem;
}


.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 1rem 2rem;
   border-radius  :50px;
   text-decoration    :       none;
    font-weight  :   600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);

}

.hero-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        margin: 2rem auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.intro-section {

	  background: white;

	   padding: 4rem 2rem;

	  margin :     3rem 0;


}

.intro-container {


   max-width: 1200px;
    margin: 0 auto;
}

.intro-container h2 {

         text-align :   center;
   font-size: 2.5rem;
  margin-bottom:3rem;
  color: #1e3c72;}

.intro-grid
{
    display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.intro-card {


   padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 10px;
   transition     :       transform 0.3s ease, box-shadow 0.3s ease;


}

.intro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.intro-card h3 {
  font-size: 1.5rem;
   margin-bottom :   1rem;
    color: #2a5298;
}

.intro-card p {
	   color: #5a6c7d;
	 line-height   :   1.8;
	}

.services-preview {
	          padding  :0 2rem;
    margin  :        4rem auto;
               max-width    :   1200px;


     } 

.services-header {
  text-align: center;
       margin-bottom: 3rem;
}

.services-header h2 {
    font-size     :    2.5rem;
	color: #1e3c72;
    margin-bottom: 1rem; 

}

.services-header p {
    color  :      #5a6c7d;
  font-size: 1.1rem;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
  background: white;
  padding   :   2.5rem;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition    :     all 0.3s ease;
}

.service-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-number {
    opacity: 0.2;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 3rem;
  color: #667eea; 
	
}

.service-item h3 {
   font-size :1.3rem;
   margin-bottom: 1rem;
   color :       #2a5298;
} 

.service-item p {
   color: #5a6c7d;
          line-height: 1.7;


}

.portfolio-section {

	      padding: 4rem 2rem;
    background: #f8f9fa;
	}

.portfolio-section h2 {
   text-align    :     center;
	     font-size: 2.5rem;
	   margin-bottom: 3rem;
	    color   :       #1e3c72;
}

.portfolio-container {
   max-width: 1200px;
    margin: 0 auto;
  display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
}

.portfolio-item {
    border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
         cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 2;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-img {
    width: 100%;
  height: 250px;
   object-fit: cover;
   display  :        block;
}

.portfolio-item.large .portfolio-img {
   height: 300px;
}@media (max-width: 768px) {
    .portfolio-item.large {
        grid-column: span 1;
    }

    .portfolio-img {
        height: 200px;
    }
}.cta-section {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding:       4rem 2rem;
    text-align   :     center;
      color: white;
	}

.cta-container   {
                    max-width: 800px;
  margin    :    0 auto;

}

.cta-container h2    {
    font-size   :      2.5rem;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.cta-container p {
   font-size:       1.1rem;
    margin-bottom:   2rem;
    opacity: 0.9;
}

.cta-button-large {
   display: inline-block;
  background: white;
  color: #667eea;
			padding: 1.2rem 2.5rem;
   border-radius :        50px;
   text-decoration: none;
   font-weight: 700;
   font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-section {
    max-width  : 800px;
    margin: 4rem auto;
    padding  :       0 2rem;
}

.contact-container h2 {

	    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
        margin-bottom: 2rem;
}

.contact-form {
   background: white;

	   padding  :3rem;

	  border-radius: 15px;

	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 1rem;
	border: 2px solid #e0e6ed;
   border-radius: 8px;
  font-size: 1rem;
         font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline    :  none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); 

}

.form-group textarea {
    resize:      vertical;
}

.submit-btn	{
       width: 100%;
   padding: 1.2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border: none;
   border-radius: 8px;
        font-size: 1.1rem;
   font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
     }

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.footer  {
  background: #1e3c72;

	  color: #ecf0f1;

	   padding: 4rem 2rem 2rem;

	   margin-top: 4rem;
}

.footer-content {
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
          margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.3rem; 
   margin-bottom: 1rem; 
         color: #64b5f6;
}

.footer-logo {
  width    :     auto;
   margin-bottom: 1rem;
   height: 60px;
}

.footer-section ul {
   list-style    :  none;
} 

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #ecf0f1;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
   color: #64b5f6;

     }

.footer-section p {
      color   : #bdc3c7;
  line-height: 1.8;
}

.footer-bottom {
   text-align: center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	 color: #95a5a6;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 4rem 2rem;
    text-align: center;
                    min-height: 300px;
    display: flex;
    align-items: center;
               justify-content:     center;
	
}

.services-hero-content h1 {
    font-size  :        2.8rem;
	margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero-content p {
       font-size  :       1.3rem; 
	  opacity    :        0.9;
     }

.services-main {
    max-width: 1200px;
     padding: 0 2rem;
	margin: 4rem auto;
}

.services-container {
    display: grid;
  gap: 3rem;
}

.service-card {
  background: white;

	   border-radius: 15px;

	    overflow: hidden;

	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

	    transition: transform 0.3s ease, box-shadow 0.3s ease; 

}

.service-card:hover {
  transform: translateY(-5px);
	  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-card-header {


  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

	     color: white;

	   padding: 2rem;
}

.service-card-header h2 {
  font-size: 1.8rem;
               margin: 0;
}

.service-card-alt .service-card-header {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); 
	
}

.service-card-body {

	   display  :  grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
     }

.service-card-full .service-card-body {
    grid-template-columns     :    1fr 1fr;
}

.service-details {
    padding-right  :     1rem;
}

.service-details p {


   font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
 line-height:   1.8;
	}

.service-details h3 {

	    color: #2a5298;
  margin: 1.5rem 0 1rem 0;
    font-size  :     1.2rem;
	}

.benefits-list {
         list-style     :   none;
    padding: 0;
}

.benefits-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
   position: relative;
	color  : #5a6c7d;
  line-height: 1.6;
	
}

.benefits-list li:before {
  content: "▸";
 position: absolute;
  color: #667eea;
    left :      0;
   font-weight: bold;


}

.service-image-side {

  display: flex;
   align-items: center;
}

.service-img {
               width: 100%;
  height: 300px;
  object-fit:       cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-price {
    display: flex;

  flex-direction: column;

   align-items: center;

    justify-content: center;

                    padding: 2rem;

   background: #f8f9fa;

  border-top: 1px solid #e0e6ed;

	 text-align: center;
}

.price-label {
    font-size: 0.9rem;
   color  :  #95a5a6;
    text-transform:    uppercase;
    letter-spacing: 1px;
   margin-bottom: 0.5rem;

}

.price-amount {
     font-size: 2.5rem;
   font-weight: 700;
    color: #667eea;
	margin-bottom: 0.5rem;

}

.price-period {
  font-size:   0.95rem;
   color: #7f8c8d;

}

.webinar-topics {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
   margin-top: 1rem;
}

.topic-item {
  background :   #f8f9fa;
	padding: 1.5rem;
     border-radius: 10px;
    border-left: 4px solid #667eea;
}

.topic-item h4 {
	 color: #2a5298;
  margin-bottom: 0.5rem;

}

.topic-item p {

	          font-size: 0.95rem;
  color: #5a6c7d;
	}

.pricing-comparison {
    max-width: 1200px;
   margin: 4rem auto;
  padding: 0 2rem;
}

.pricing-comparison h2 {
  text-align: center;
   font-size: 2.2rem;
  color :       #1e3c72;
	margin-bottom: 2rem;
}

.comparison-table {
                    overflow-x   :    auto; 
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 
   border-radius: 10px;
}

table {
    width: 100%;
      border-collapse: collapse;
      background: white;
}



table thead {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;


}

table th {
          padding: 1.5rem;
    text-align: left;
	font-weight: 600;
}  

table td {
   color: #5a6c7d;
         border-bottom: 1px solid #e0e6ed;
  padding     :   1.2rem 1.5rem;
}  

table tbody tr:hover  
  {
	    background-color  :   #f8f9fa;

}

table tbody tr:last-child td {
  border-bottom:        none;
}

table tbody td:not(:first-child) {
    text-align: center;
   font-weight: 600;
    color: #667eea;
}

.faq-section {
  margin: 4rem auto;
    padding  : 0 2rem;
    max-width: 900px;
}

.faq-section h2 {

	               text-align: center;
       font-size   :  2.2rem;
     color: #1e3c72;
      margin-bottom: 2rem; 
}



.faq-container {
  display: grid; 
	    gap :1rem;
}


.faq-item {
      background   :  white;
   border-radius: 10px;
	overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
	background: #f8f9fa;
   border: none;
    text-align: left;
  font-size: 1.1rem;
    font-weight: 600;
  color: #2a5298;
  cursor: pointer;
	transition: background 0.3s ease;
  display :   flex;
   justify-content: space-between;
    align-items: center;
} 

.faq-question:hover {

    background: #e8ecf1;
	}

.faq-question::after {
  content: "▼";
    font-size: 0.8rem;
  color: #667eea;
   transition    :   transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
       -o-transition: max-height 0.3s ease;
   max-height: 0;
		-moz-transition: max-height 0.3s ease;
   overflow: hidden;
    transition:     max-height 0.3s ease;
  -webkit-transition: max-height 0.3s ease;
	}

.faq-answer.active {
   max-height: 500px;
}

.faq-answer p {


  padding: 1.5rem;
   color: #5a6c7d;
 line-height     :1.8;
}

.cta-services {
	  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   padding: 3rem 2rem;
  text-align: center;
  color     : white;

}

.cta-services-content {
	max-width: 700px;
  margin: 0 auto;
}

.cta-services-content h2 {
		font-size: 2.3rem;
                    margin-bottom:1rem;

}

.cta-services-content p 
 {
       font-size: 1.1rem;
 margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-services-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 1.2rem 2.5rem;
  border-radius: 50px;
    text-decoration: none;
  font-weight: 700;
  font-size     :      1.05rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-services-btn:hover {
  transform: translateY(-3px);
	  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.thankyou-section {
          min-height   :      70vh;
   display: flex;
  align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
}

.thankyou-container {
    background: white;
    border-radius: 20px;
   padding: 3rem;
    max-width: 700px;
    width :      100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.thankyou-icon {
  margin-bottom: 2rem;
  display: flex;
   justify-content: center;
}

.thankyou-icon svg {

   -webkit-animation: checkmark 0.8s ease-out;
    animation: checkmark 0.8s ease-out;


}@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {

		font-size: 2.2rem;
    color:  #1e3c72;
  margin-bottom: 0.5rem;

}

.thankyou-subtitle {
  font-size: 1.1rem;
  color: #5a6c7d;
   margin-bottom:    2rem;
} 

.thankyou-message		{
  background :       #f0f4ff;
   padding   :     1.5rem;
   border-radius: 10px;
    margin-bottom: 2rem;
  border-left: 4px solid #667eea;

}

.thankyou-message p {
      color: #2a5298;
  margin   :        0;


}


.thankyou-next-steps {
    margin-top   : 3rem;
   text-align: left; 

}

.thankyou-next-steps h2 {
  color: #1e3c72;
   margin-bottom  :      1.5rem;
   font-size: 1.5rem;
}

.steps-container {
    display: grid;
    gap: 1.5rem;


}

.step {
    display: flex;
   gap: 1.5rem;
	padding: 1.5rem;
    background: #f8f9fa;
        border-radius: 10px;
                    border-left: 4px solid #667eea;
}

.step-number		{
  min-width: 50px;
	   width: 50px;
	    height: 50px;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	   color: white;
	  border-radius: 50%;
	    display: flex;
	        align-items: center;
	   justify-content    :   center;
		font-weight : 700;
	   font-size: 1.3rem;
	  flex-shrink: 0;
}

.step h3 {
       color: #2a5298; 
	  margin: 0 0 0.5rem 0;


}

.step p {
  color: #5a6c7d;
   margin: 0;
          font-size: 0.95rem;
}

.thankyou-resources	{
  margin-top: 2rem;
    padding-top: 2rem;
	border-top: 1px solid #e0e6ed;
}

.thankyou-resources h2 {
  color: #1e3c72;
   margin-bottom: 1rem;
  font-size: 1.4rem;
}

.thankyou-resources p {

	    color :  #5a6c7d;
    margin-bottom: 1rem;}

.resources-grid {
    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

		gap    :1rem;

	               margin-top: 1rem;


}

.resource-link {
   display: block;
   padding: 1.5rem;
  background: #f8f9fa;
	border-radius: 10px;
  text-decoration: none;
   transition: all 0.3s ease;
	border   :      2px solid transparent;
}

.resource-link:hover {


    border-color: #667eea;
  background :    #f0f4ff;
  transform: translateY(-3px); 

	}

.resource-link h3 {

    color: #2a5298;
    margin: 0 0 0.5rem 0;
     }

.resource-link p {
	    color: #5a6c7d;
    font-size: 0.9rem;
   margin: 0;
	}

.thankyou-contact-info {
    margin-top: 2rem;
	 padding-top: 2rem;
   border-top: 1px solid #e0e6ed;
	color  :     #5a6c7d;
}


.thankyou-contact-info p {
   margin:    0.5rem 0;
   color: #5a6c7d;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-card-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-details {
        padding-right: 0;
    }

    .service-img {
        height: 250px;
    }

    .webinar-topics {
        grid-template-columns: 1fr;
    }

    table th, table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    table th {
        font-size: 0.85rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .steps-container {
        gap: 1rem;
    }

    .step {
        padding: 1rem;
        gap: 1rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .pricing-comparison {
        overflow-x: auto;
    }
}.policySection {
    padding: 80px 2rem;
 background  :   #f8f9fa;
    min-height: 70vh;
}

.policyContainer {
   max-width: 800px;
  margin   :       0 auto;
    text-align: left;
    background: white;
    padding: 3rem;
          border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
   font-size: 2.8rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-weight: 700;
}

.policyContainer h2 {

	    font-size: 1.8rem;
   color: #2a5298;
   margin-top: 2rem;
     margin-bottom: 1rem;
   font-weight: 600;
    border-bottom: 3px solid #667eea;
   padding-bottom: 0.5rem;
}

.policyContainer h2:first-of-type {
   margin-top     :  0;
}


.policyContainer p {
  color: #5a6c7d;
                    margin-bottom: 1.5rem;
         line-height: 1.8;
   font-size:     1rem;
   text-align: justify;
}



.policyContainer p:last-child {
   margin-bottom: 0;
}

.policyContainer ul {
  margin: 1.5rem 0;
    padding-left: 2rem;
}

.policyContainer ul li {
	margin-bottom: 0.8rem;
	color: #5a6c7d;
  line-height:1.7;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.3rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .policyContainer ul {
        padding-left: 1.5rem;
    }

    .policyContainer ul li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h1,
    .policyContainer h2,
    .policyContainer p {
        color: #000;
    }
}