* {
  padding    :       0;
    margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #2c3e50;
   overflow-x: hidden;
}

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 1rem 0;
                    position: sticky;
  top: 0;
  z-index:        1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hdr-wrap

{
   	max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
  display: flex;
  justify-content: space-between;
   align-items: center;
	}

.logo-sec {
	      gap: 0.8rem;
  align-items: center;
    display: flex;
     }

.logo-img {
   height: 45px;
               width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu


{
                    display: none;
   background: none;
   border:     none;
	color: white;
  font-size   :        1.5rem;
  cursor: pointer;
    padding: 0.5rem;
}

.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(7px, -7px);
}

.burger-menu span    {
  display: block; 
	          width: 25px; 
	   height: 3px; 
	    background: white; 
	   margin: 5px 0; 
	  transition: all 0.3s ease;


}

nav {
	display     :flex;
        gap: 2rem;
}

nav a {
      color: white;
	text-decoration: none;
  font-weight: 500;
  transition     :      opacity 0.3s ease;
       font-size: 1.05rem;

}

nav a:hover {
	 opacity: 0.8;
}

.hero-sec {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color   :        white;
  padding: 6rem 2rem;
   text-align: center;
}

.hero-content {
  max-width     : 900px;

  margin: 0 auto;
}

.hero-content h1    {
    font-size  :     3.5rem;
	margin-bottom: 1.5rem;
   font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
} 

.hero-content p {
   font-size:1.3rem;
     margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-btn-main {
   display: inline-block;
   padding: 1rem 2.5rem;
     border: none;
   text-decoration: none;
   color: #667eea;
          transition: all 0.3s ease;
	background: white;
  font-size: 1.1rem;
   border-radius: 50px;
	font-weight: 600;
  cursor: pointer;


}

.cta-btn-main:hover  {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);


}

.intro-sec {
    max-width: 1200px;
   margin: 4rem auto;
  padding: 0 2rem;
}

.intro-sec h2 {
    font-size: 2.5rem;
	margin-bottom:        1.5rem;
  color    :      #2c3e50;
   text-align: center;
}

.intro-txt {
	 font-size: 1.1rem; 
	    line-height: 1.8; 
	    color: #555; 
	    text-align: justify; 
	  max-width: 900px; 
	  margin: 0 auto 2rem;
}

.services-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background: #f8f9fa;
   padding :        2rem;
   border-radius  :   12px;
		 border-left: 5px solid #667eea;
   transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-left-color: #764ba2;
}

.service-card h3{

	          color: #667eea;
  margin-bottom: 1rem;
    font-size: 1.4rem;

}

.service-card p
	{
   color  :       #666;
    line-height   :        1.7;
}

.gallery-sec {
    background: #f0f0f5;
   padding: 4rem 2rem;
   margin   :   3rem 0;
}

.gallery-sec h2 {
    margin-bottom: 2rem;
	text-align: center;
        font-size: 2.5rem;
  color: #2c3e50;
}

.gallery-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
	 max-width  :  1200px;
   margin: 0 auto;
}

.gallery-item {
   border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {


  transform: scale(1.05);

}

.gallery-item img {
    width: 100%;
          height: 300px;
    object-fit: cover;
  display: block;
}

.training-sec {
    max-width     :1200px;
    margin: 4rem auto;
	 padding: 0 2rem;
}

.training-sec h2 {


	font-size  :   2.5rem;
  margin-bottom: 2rem;
   text-align: center;
  color: #2c3e50;
	}

.training-options     {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
   margin  :  2rem 0;
}

.training-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 2rem;
  border-radius: 12px;
   text-align: center;
          transition: all 0.3s ease;
}

.training-box:hover {
	  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);


}

.training-box h3 {
    font-size  :      1.5rem;
    margin-bottom   :       1rem;
	
}

.training-box p {
     margin-bottom   :    1.5rem;
    opacity: 0.95;
}

.training-btn {
   padding: 0.7rem 1.8rem;
  cursor: pointer;
    font-weight:      600;
    border: none;
   border-radius: 25px;
   background: white;
	font-size: 0.95rem;
    transition: all 0.3s ease;
    color :      #667eea;
	
}

.training-btn:hover 
 {
  transform: scale(1.05);
}

.benefits-sec {
         background: #f8f9fa;
	padding: 3rem 2rem;
  margin: 3rem 0;
}

.benefits-container {
    max-width: 1200px;
    margin:      0 auto;
}

.benefits-sec h2 {
  text-align: center;
   font-size: 2.5rem;
    margin-bottom: 2rem;
   color: #2c3e50;
}

.benefits-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;
	}

.benefit-item {
   background: white;
  padding: 1.5rem;
               border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   text-align    :center;
}

.benefit-item h4 {
   color: #667eea;
         margin-bottom: 0.8rem;
  font-size: 1.2rem;

}

.benefit-item p {
  color: #666;
    font-size: 0.95rem;
}

.cta-sec {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
 color     :  white;
   padding: 3rem 2rem;
                    text-align: center;
   margin: 3rem 0;
}

.cta-sec h2 {
	    margin-bottom: 1rem;
      font-size: 2.2rem;
}

.cta-sec p {
  font-size: 1.1rem; 
  margin-bottom: 2rem; 
  max-width: 700px; 
     margin-left: auto; 
   margin-right: auto;
}

.cta-sec a {

	  background: white;
 color   :  #f5576c;
   padding: 1rem 2.5rem;
          border-radius: 50px;
  text-decoration: none;
  font-weight    :       600;
  display: inline-block;
  transition: all 0.3s ease; 
	
     } 

.cta-sec a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#contact
	{
   max-width: 700px;
    margin :  4rem auto;
	padding     :        0 2rem;
}

#contact h2 {
  font-size: 2.2rem;
 margin-bottom     :  2rem;
    text-align: center;
   color: #2c3e50;
}

.form-wrap
{
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding  : 2.5rem;
    border-radius: 12px;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
    display   :        block;
	 margin-bottom: 0.5rem;
  color: #2c3e50;
    font-weight: 600;
   font-size: 0.95rem;}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
  border: 2px solid #e0e0e0;
  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;
    min-height: 120px;
}

.form-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
	 border: none;
	border-radius: 8px;
  font-size: 1.1rem;
                    font-weight: 600;
	 cursor: pointer;
    width: 100%;
               transition :       all 0.3s ease;
}

.form-submit:hover {

	  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);

}@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: #667eea;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        z-index: 999;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .intro-sec h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .training-options {
        grid-template-columns: 1fr;
    }
}.ftr {

  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: #ecf0f1;
   padding   :   3rem 2rem 1.5rem;
   margin-top: 4rem;

}

.ftr-cont {
    max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
                    margin-bottom: 2rem;
}

.ftr-col    {
   display: flex;

	   flex-direction  :        column;
}

.ftr-col h4 {

	   font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
    font-weight   :  600;
    text-transform: uppercase;
    letter-spacing: 0.5px; 



} 

.ftr-logo {
		height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.ftr-list {

	   list-style:      none;


}

.ftr-list li {
    margin-bottom: 0.8rem;
}

.ftr-list a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size     :    0.95rem;
  display: inline-block;
}

.ftr-list a:hover {
   color: #ecf0f1;
  padding-left: 5px;
}

.ftr-addr {
   color: #bdc3c7;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
       line-height: 1.6;
}

.ftr-phone {
	    color: #3498db;
  font-weight: 600;
    font-size    :   1rem;
}  

.ftr-bottom {
  border-top: 1px solid rgba(236, 240, 241, 0.1);
         padding-top  :       1.5rem;
  text-align: center;
    color:        #95a5a6;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .ftr-cont {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .ftr-col h4 {
        font-size: 1rem;
    }

    .ftr-addr {
        font-size: 0.85rem;
    }

    .ftr-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .ftr {
        padding: 2rem 1rem 1rem;
    }

    .ftr-cont {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ftr-col {
        text-align: center;
    }

    .ftr-col h4 {
        font-size: 0.95rem;
    }

    .ftr-list a:hover {
        padding-left: 0;
    }
}.pricing-table{
    width: 100%;
					border-collapse: collapse;
  margin :    2rem 0;
	background: white;
   border-radius  :      12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.pricing-table th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
  padding: 1.2rem;
    text-align: left;
   font-weight  :  600;
   text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table td
{
    padding: 1.2rem;
    border-bottom: 1px solid #e0e0e0;
       color: #555;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  transition: background 0.3s ease; 
	    background: #f8f9fa;
}

.price-badge {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 0.6rem 1.2rem;
	border-radius: 25px;
   font-weight: 700;
    display: inline-block;
   font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
	}

.service-detail-card {
     background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
       padding: 2.5rem;
   border-radius: 12px;
   margin-bottom: 2rem;
  border-left: 5px solid #667eea;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     }

.service-detail-card:hover  
  {


  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  border-left-color: #764ba2;
}

.service-detail-card h3		{
  color: #667eea;
  font-size: 1.8rem;
          margin-bottom: 1rem;
  font-weight: 700;
}

.service-detail-card p {
    color: #555;
  line-height: 1.8;
    margin-bottom   :       1rem;
  font-size: 1rem;


}

.service-benefits {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap     :1rem;
   margin-top: 1.5rem;
}

.benefit-tag {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
               transition: all 0.3s ease;
}

.benefit-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.25);
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:        2rem;
   margin     :      2rem 0;
}

.step-box {

	    background: white;
	padding: 2rem;
    border-radius: 12px;
    text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
   position: relative;
  border-top: 3px solid transparent; 
	
}

.step-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
   border-top-color: #667eea;
}

.step-number{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
   width  :     60px;
  height: 60px;
   border-radius: 50%;
    display: flex;
 align-items: center;
	justify-content: center;
   font-size: 2rem;
    font-weight: 700;
    margin  :  0 auto 1rem;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.step-box h4 {
               color: #2c3e50;
   margin-bottom: 1rem;
    font-size: 1.2rem;
  font-weight   :        600;
}

.step-box p


{
	 color: #666;
   line-height: 1.7;
  font-size: 0.95rem;
}

.cta-section	{
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
         color    :white;
   padding: 3.5rem 2rem;
   border-radius     :    12px;
   text-align: center;
    margin: 4rem 0;
  box-shadow: 0 15px 40px rgba(245, 87, 108, 0.3);
}

.cta-section h2 {

 font-size: 2.2rem;
        margin-bottom: 1rem;
  font-weight: 700;
}

.cta-section p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
    max-width: 600px;
   margin-left:  auto;
	margin-right  :      auto;
   opacity: 0.95;
}

.cta-section a {
   background: white;
    color: #f5576c;
  padding: 1rem 2.5rem;
  border-radius: 50px;
   text-decoration: none;
  font-weight: 600;
   display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1); 

}


.cta-section a:hover {


  transform: translateY(-3px); 
	  box-shadow: 0 12px 28px rgba(0,0,0,0.2);

} 

.section-title {
  color: #2c3e50;
	font-weight: 700;
	padding-bottom: 1.5rem;
    position: relative;
  text-align: center;
  margin-bottom  :   2rem;
   font-size  :2.5rem;
}  

.section-title::after {
  content: '';
      position  :   absolute;
   	bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
      height: 4px;
     background: linear-gradient(90deg, #667eea, #764ba2);
     border-radius: 2px;
     box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thank-you-content {
    animation: slideUp 0.6s ease;
}

.success-icon {
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.info-box {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
   padding: 1.5rem;
	border-radius: 8px;
	 margin: 1.5rem 0;
   border-left: 4px solid #667eea;
	transition: all 0.3s ease;
}

.info-box:hover {
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.1);
}

.info-box h3     {
       color: #667eea;
  margin-bottom: 0.8rem;
    font-size: 1.1rem;
	font-weight: 600;

}

.info-box p {
    margin-bottom     :      0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.info-box p:last-child 
 {
   margin-bottom: 0;
	}

.action-buttons

{
  display: flex;
   gap: 1rem;
   margin-top: 2rem;
	flex-wrap: wrap;
  justify-content     :       center;
}

.btn {
  padding     :  1rem 2rem;
         border-radius: 8px;
  text-decoration: none;
  font-weight     :    600;
  border: none;
    cursor   :      pointer;
   transition: all 0.3s ease;
   display: inline-block;
		font-size: 1rem;
}

.btn-primary		{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: white;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.35);
}

.btn-secondary {
   background: white;
    color: #667eea;
  border: 2px solid #667eea;
     transition: all 0.3s ease;
}  

.btn-secondary:hover {
    background: #f0f0f5;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.15);
}

.next-steps {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 2rem;
  border-radius: 8px;
    margin: 2rem 0;
  text-align: left;
}

.next-steps h3 {
       color: #667eea;
	 margin-bottom: 1rem;
    font-size: 1.2rem;
   font-weight: 600;

}

.next-steps ol  
  {
          color: #555;
    margin-left: 1.5rem;
	line-height: 2;
}

.next-steps li {

	margin-bottom: 0.5rem;
   font-size: 0.95rem;
}@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
    }

    .service-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        padding-bottom: 1rem;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-detail-card h3 {
        font-size: 1.4rem;
    }

    .service-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .benefit-tag {
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
    }

    .pricing-table {
        font-size: 0.85rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem;
    }

    .price-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .step-box {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .next-steps {
        text-align: center;
    }

    .next-steps ol {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .service-detail-card h3 {
        font-size: 1.2rem;
    }

    .service-benefits {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 0.75rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}.policySection {
     padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      min-height: 70vh;
}

.policyContainer {
    max-width    :       850px;
    margin: 0 auto;
  text-align: left;
    background    :white;
        padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.08);
}

/* Debug styles */

.policyContainer h2 {
   font-size: 2.8rem;
   	color: #2c3e50;
       margin-bottom: 2rem;
       font-weight: 700;
       padding-bottom: 1rem;
     border-bottom: 3px solid linear-gradient(90deg, #667eea, #764ba2);
     background: linear-gradient(90deg, #667eea, #764ba2);
      background-clip: text;
}

.policyContainer h3 {
   font-size:   1.4rem;
    color: #2c3e50;
    margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  padding-left: 1rem;
      border-left: 4px solid #667eea;
}

/* Typography */

.policyContainer h3:first-of-type {
   margin-top: 0;
}

.policyContainer p {

	   color: #555;
    margin-bottom: 1.5rem;
   line-height: 1.8;
    font-size: 1.05rem;
  text-align: justify;


}

.policyContainer p strong {
    color: #667eea;
    font-weight: 600;
}

.policyContainer p:last-child {
    margin-bottom: 0;
}

.policyContainer p[style*="margin-top: 2rem"] {
   text-align: center;
     font-size: 1rem;
   	 margin-top: 3rem;
      padding-top: 2rem;
     border-top: 2px solid #e0e0e0;
}
@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 2.4rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.05);
    }

    .policyContainer h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        padding-left: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        text-align: left;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 0.8rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        border-radius: 6px;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
        padding-left: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}html {
  scroll-behavior: smooth;
}

.policyContainer {
    animation: fadeInUp 0.6s ease;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.policyContainer a {
               color     :     #667eea;
   text-decoration: none;
  font-weight: 500;
   transition  :   all 0.3s ease;
}

.policyContainer a:hover {
   color: #764ba2;
   text-decoration: underline;
	
}@media print {
    header {
        display: none;
    }

    footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        padding: 0;
        box-shadow: none;
        max-width: 100%;
    }

    .policyContainer p {
        font-size: 12px;
        margin-bottom: 1rem;
    }

    .policyContainer h3 {
        page-break-after: avoid;
    }
}
