* {
    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: #333;
    background-color: #fafafa;
}

.navbar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	padding: 1rem 0;
  position: sticky;
      top: 0;
   z-index     : 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}


.nav-container {
    padding: 0 20px;
    display: flex;
    max-width: 1200px;
				 justify-content: space-between;
  margin: 0 auto;
    align-items: center;
}

.logo-section {
  flex-shrink   :  0;
}

.logo-img {
    height: 45px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
               display: flex;
    list-style: none;
   gap: 2.5rem;
}

.nav-links a {
	color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition     :       color 0.3s ease;
   position: relative;
}

.nav-links a:hover {
   color: #00d4ff;
}

.nav-links a::after {

	  content: '';
   position: absolute;
    width: 0;
 height: 2px;
  bottom: -5px;
	 left: 0;
   background-color: #00d4ff;
  transition: width 0.3s ease; 
	}

.nav-links a:hover::after {
   width: 100%;
}

.burger-menu {
               display: none;
    flex-direction: column;
   background     :      none;
    border: none;
  cursor: pointer;
  padding: 0.5rem;
	 gap: 5px;
}

.burger-line {
                    -webkit-border-radius: 2px;
  width: 25px;
  height: 3px;
    background-color: #fff;
   border-radius: 2px;
   transition: all 0.3s ease;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #0f3460;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 300px;
    }
    
    .nav-links li {
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }
    
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
        padding: 5rem 2rem;
  display: grid;
   grid-template-columns   :    1fr 1fr;
  gap: 3rem;
  align-items: center;
   max-width     :  1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
   line-height: 1.1;
          font-weight: 700;
}

.hero-content p {
      font-size  :1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
    line-height: 1.8;}

.cta-button {
    display: inline-block;
   background-color: #f5576c;
        color: #fff;
  padding: 1rem 2.5rem;
  border-radius   :8px;
  text-decoration: none;
  font-weight: 600;
  font-size:       1.1rem;
   transition  :     all 0.3s ease;
   border :     2px solid transparent;
}

.cta-button:hover  
  {
      background-color: transparent;
   border-color: #fff;
  transform: translateY(-2px);
}

.hero-visual img {
    width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}.intro-section {
    background-color: #fff; 
    padding: 4rem 2rem; 
    text-align: center;
}  

.intro-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-section p {
    font-size: 1.1rem;
   margin-bottom: 1.5rem;
        line-height: 1.8;
   color: #555;
}

.services-preview
{
  background: linear-gradient(180deg, #f8f9ff 0%, #f0f0ff 100%);
   padding: 4rem 2rem;
   max-width: 1200px;
	margin :  0 auto;
}

.services-preview h2 {
    text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
               color    :#1a1a2e;
}

.services-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;

}

.service-card    {
	background: #fff;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
    transition :   all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}



.service-card img {
    width: 100%;

    height: 200px;

    object-fit: cover;
}

.service-card h3 {
         color: #667eea;
  padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem; 
	
}

.service-card p
{
   padding: 0.5rem 1.5rem 1.5rem;
    color: #666;
  line-height:        1.6;
}

.benefits {
  background-color: #fff;
  padding: 4rem 2rem;
}

.benefits-container{
         max-width: 1200px;
   margin: 0 auto; 
	
}

.benefits h2		{
    text-align: center;
   font-size: 2.5rem;
	 margin-bottom:  3rem;
    color: #1a1a2e;
}

.benefits-list {
  display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item
{
	padding: 2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
   border-left: 4px solid #667eea;
  border-radius: 8px;
   transition: all 0.3s ease;
}

.benefit-item:hover {
         border-left-color: #f5576c;
  background: linear-gradient(135deg, #f5576c15 0%, #764ba215 100%);
}

.benefit-item h3	{
	 color: #1a1a2e; 
  font-size  :1.3rem; 
  margin-bottom: 0.8rem;
}

.benefit-item p {
   color: #666;
	line-height :1.7;
}

.cta-section {

	  background: linear-gradient(135deg, #f5576c 0%, #e74c3c 100%);
   padding    :   4rem 2rem;
  text-align: center;
  color :#fff;

}

.cta-wrapper {

  max-width: 800px;
   margin: 0 auto;}

.cta-wrapper h2 {
  font-size :2.5rem;
   margin-bottom: 1rem;
}

.cta-wrapper p {
       font-size :        1.2rem;
	  margin-bottom: 2rem;
	    opacity     :       0.95;
	   line-height   :   1.8;
	}

.cta-button-large {
  display: inline-block;
  background-color: #fff;
    color: #f5576c;
   padding: 1.2rem 3rem;
   border-radius   :  8px;
    text-decoration: none;
  font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}


.cta-button-large:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}

.contact


{

	  background-color :    #fff;
  padding: 4rem 2rem;


	}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
	margin-bottom: 1rem;
  color: #1a1a2e;

}

.contact-intro{
   text-align: center;
    margin-bottom: 2rem;
  color: #666;
    line-height: 1.8;
   font-size: 1.05rem;
}

.contact-form {
	  background: linear-gradient(135deg, #f8f9ff 0%, #f0f0ff 100%);
       padding: 2.5rem;
   border-radius    :      12px;}

.form-group {
    margin-bottom: 1.5rem;

}

.form-group label {
   display: block;
  margin-bottom: 0.5rem;
         font-weight: 600;
   color: #1a1a2e;
    font-size: 1rem;}

.form-group input,
.form-group select,
.form-group textarea {
           width: 100%;
    padding: 0.9rem;
          border  :   2px solid #e0e0ff;
   border-radius: 6px;
	 font-size: 1rem;
    font-family  :       inherit;
  transition: all 0.3s ease;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
   resize :  vertical;
}

.submit-button {
         width: 100%;
    padding :     1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: #fff;
  border: none;
  border-radius: 6px;
   font-size: 1.1rem;
                    font-weight: 600;
    cursor: pointer;
	transition: all 0.3s ease;
	}

.submit-button:hover  
  {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   color: #fff;
    padding: 3rem 2rem 1.5rem;
}

.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.2rem;
   margin-bottom: 1rem;
  color: #00d4ff;
}

.footer-logo-img {
  height: 50px;
	width: auto;
  filter: brightness(0) invert(1);


}

.footer-links {
       list-style: none;
     }

.footer-links li
{
      margin-bottom: 0.8rem;
}

.footer-links a    {
   color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00d4ff;


}

.footer-section p {
   color  : #bbb;
   line-height     : 1.8;
   font-size: 0.95rem;
}

.footer-working-hours {
   font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

.footer-bottom {
   text-align  :      center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   color: #999;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}.services-header   {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color   :#fff;
    padding: 4rem 2rem;
  text-align: center;
}

.services-header-content h1 {
	  font-size: 3rem;
   margin-bottom: 1rem;
 font-weight: 700;


}

.services-header-content p {
  font-size :     1.3rem;
    opacity: 0.95;
}

.services-detailed {
  padding: 4rem 2rem;
          background-color     :      #fafafa;
}

.services-container {
   max-width: 1100px;
   margin: 0 auto;
}



.service-item {


      display:       grid;
  grid-template-columns: 1fr 1fr;
	gap: 3rem;
    align-items: center;
   margin-bottom     :4rem;
    background-color    :    #fff;
     padding: 2.5rem;
	border-radius :        12px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.08);}

.service-item.alternate {
    grid-template-columns: 1fr 1fr;

}

.service-item.alternate .service-item-image {

   order: 2;
	}

.service-item.alternate .service-item-content {
      order: 1;
}

.service-item-image {
    flex-shrink: 0;

}

.service-item-image img {
    width: 100%; 
	   height: auto; 
	  border-radius: 10px; 
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);}

.service-item-content h2 {
	 font-size  :    2.2rem;
   color: #667eea;
   margin-bottom: 1rem;
}



.service-intro{
  font-size: 1.1rem;
  color: #555;
   margin-bottom: 1.5rem;
   line-height: 1.8;
}

.service-item-content h3    {
   font-size:     1.3rem;
   color: #1a1a2e;
	margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.service-list li {
   padding-left: 1.8rem;
   margin-bottom: 0.7rem;
    position: relative;
   color: #666;
    line-height: 1.6;
}  

.service-list li:before {
  content: '✓';
    position: absolute;
    left: 0;
  color: #2ecc71;
  font-weight    :bold;
  font-size: 1.1rem;
}

.service-item-content p {
    color: #666;
    line-height: 1.7;
}@media (max-width: 968px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item.alternate .service-item-image {
        order: 1;
    }
    
    .service-item.alternate .service-item-content {
        order: 2;
    }
    
    .service-item-content h2 {
        font-size: 1.8rem;
    }
}.service-packages {
    background-color: #fff;
	 padding    :      4rem 2rem;
   text-align: center;


}

.service-packages h2 {
  font-size: 2.5rem;
    margin-bottom: 3rem;
  color:  #1a1a2e;
}

.packages-grid {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	    gap: 2rem;
	    max-width: 1100px;
	   margin: 0 auto;
}

.package-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f0ff 100%);
    padding:2.5rem;
   border-radius: 12px;
	border: 2px solid transparent;
   transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
   border-color: #667eea;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.package-card.featured {
     border-color: #667eea;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  transform: scale(1.05);
	}

.package-card h3
{
          font-size    :1.8rem;
    color   :    #667eea;
    margin-bottom: 1rem;
	}

.package-price {


  font-size: 1rem;
    color :#999;
  margin-bottom: 1.5rem;}

.package-features {
  list-style: none;
	    padding     :0;
		 margin-bottom: 1.5rem;
	  text-align     :     left; 
	
}

.package-features li {
    padding: 0.6rem 0;
  color: #555;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    padding-left: 1.5rem;
    position:        relative;


}

.package-features li:last-child 
 {
    border-bottom: none;
}

.package-features li:before  
  {
  content: '→';
   position: absolute;
  left: 0;
   color: #667eea;
                    font-weight: bold;


}

.package-note {
  font-size: 0.9rem;
  color: #999;
               font-style: italic;
}

.additional-offerings {
  background: linear-gradient(180deg, #f8f9ff 0%, #f0f0ff 100%);
    padding     :        4rem 2rem;
}

.additional-offerings h2 {
    text-align: center;
  font-size: 2.5rem;
      margin-bottom: 3rem;
  color: #1a1a2e;
}

.offerings-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    max-width: 1100px;
   margin: 0 auto;



}

.offering-card {
	    background: #fff;
       padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition     :     all 0.3s ease;
}

.offering-card:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}


.offering-card h3 {
          font-size: 1.3rem;
  color: #667eea;
    margin-bottom: 0.8rem;

}

.offering-card p {

  color: #666;

		line-height   :    1.7;
     }

.why-choose-us {
	    background-color: #fff;
      padding:   4rem 2rem;
	}

.why-choose-container {
                    max-width   :    1100px;
    margin: 0 auto;
}

.why-choose-us h2 {
    text-align: center;
                    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.why-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; 
	
}

.why-item {
    padding: 2rem;
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
  border-left: 4px solid #667eea;
    border-radius: 8px;
	transition: all 0.3s ease;
	}

.why-item:hover {
      border-left-color   : #f5576c;
  transform: translateX(8px);
     }

.why-item h3 {
  font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.why-item p {
	 color : #666;
  line-height: 1.7;
}

.testimonials {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem 2rem;
   color: #fff;
}

.testimonials h2 {
    text-align: center;
  font-size: 2.5rem;
	margin-bottom: 3rem;}

.testimonials-grid {
    display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
                    padding: 2rem;
    border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-size: 1.05rem;
   margin-bottom: 1rem;
  line-height    :        1.8;
 font-style: italic;
}

.testimonial-author {
   color: #ddd;
   font-size: 0.95rem;


}

.services-cta {
  background: linear-gradient(135deg, #f5576c 0%, #e74c3c 100%);
  padding: 3.5rem 2rem;
    text-align: center;
   color: #fff;
}



.services-cta-content h2 {
   font-size: 2.2rem;
   margin-bottom: 1rem;
}

.services-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
   opacity: 0.95;
}  

.cta-button-services {


  display: inline-block;
      background-color: #fff;
      color: #f5576c;
   	padding: 1rem 2.5rem;
   	 border-radius  :        8px;
   	 text-decoration: none;
     font-weight     :        600;
     font-size: 1rem;
     transition: all 0.3s ease;
	}

.cta-button-services:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.thankyou-section {


  background: linear-gradient(135deg, #f8f9ff 0%, #f0f0ff 100%);

	  min-height: calc(100vh - 300px);

	  display: flex;

	   align-items: center;

	        justify-content: center;

	    padding: 4rem 2rem;
	}

.thankyou-container {
	max-width: 700px;
    background: #fff;
  padding: 3.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
  text-align: center;
}

.thankyou-icon {


  margin-bottom: 2rem;
  display: flex;
   justify-content: center;}

.thankyou-icon svg {
    animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1    {
    font-size: 2.8rem;
    color: #2ecc71;
   margin-bottom: 0.5rem;
}

.thankyou-title {
    color: #667eea;
  font-size: 1.5rem;
  margin-bottom    :   1.5rem;
    font-weight: 600;
}

.thankyou-message {
  font-size :      1.05rem;
   color: #666;
    margin-bottom   :      1rem;
               line-height: 1.8;
}

.thankyou-info {
    font-size:1rem;
        color: #777;
  margin-bottom     :    2rem;
	line-height   :  1.8;
}

.next-steps {
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
  padding:   2rem;
   border-radius: 12px;
			margin  :     2rem 0;
   text-align: left;
}

.next-steps h2 {
  text-align: center;
               font-size: 1.6rem;
       color   :  #1a1a2e;
   margin-bottom: 1.5rem;
}

.steps-list {
	display     :   grid;
    gap     :1.5rem;
}

.step {
   display: grid;

	  grid-template-columns: 60px 1fr;

	  gap: 1.5rem;

	   align-items: flex-start;
}

.step-number {
  width: 60px;
    height :   60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: #fff;
  border-radius: 50%;
               display: flex;
	align-items: center;
     justify-content: center;
   font-size :        1.5rem;
  font-weight    :       700;
 flex-shrink:     0;
}

.step-content h3 {
    font-size :1.1rem;
   color: #1a1a2e;
	margin-bottom: 0.4rem;
}

.step-content p {

	    color: #666;
    font-size: 0.95rem;
  line-height: 1.6;
     }

.contact-info-box {

  background: #fff; 
  border: 2px solid #667eea; 
    padding: 2rem; 
  border-radius: 10px; 
    margin  :        2rem 0;
     }

.contact-info-box h3    {
      margin-bottom: 0.8rem;
      color: #667eea;
      font-size: 1.2rem;


}

.contact-info-box p {
       color: #666;
    margin: 0.5rem 0;
}

.contact-phone,
.contact-address {
       font-size    :      1rem;
   color:    #1a1a2e;

}

.thankyou-actions {
  display: grid;
        grid-template-columns  :       1fr 1fr;
   gap: 1rem;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 1.5rem;
   border-radius: 8px;
    text-decoration     :none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
    display: block;
}

.btn-primary {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
     }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
      background: #f0f0ff;
   color: #667eea;
    border: 2px solid #667eea;

     }

.btn-secondary:hover   {

	    background: #667eea;
  color: #fff;


	}


.faq-section {
      background-color :      #fff;
  padding   :   4rem 2rem;

}

.faq-section h2 {
          text-align: center;
	  font-size: 2.2rem;
	  color: #1a1a2e;
	   margin-bottom: 3rem;
}

.faq-container {
  max-width   :  800px;
                    margin: 0 auto;

}

.faq-item {
    padding   :       1.5rem;
  margin-bottom :      1rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f0ff 100%);
    border-left: 4px solid #667eea;
    border-radius: 8px;
}

.faq-item h3 {
   color:  #667eea;
	font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.faq-item p {
     color: #666;
	  line-height:     1.7;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem;
    }
    
    .thankyou-section h1 {
        font-size: 2rem;
    }
    
    .step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .thankyou-actions {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
}.policySection {
	      padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f0ff 100%);
  min-height: calc(100vh - 200px);
}

.policyContainer {

   max-width: 850px;
  margin   :0 auto;
    text-align: left;
    background-color: #fff;
    padding     :      3rem;
			border-radius: 12px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.08);}

.policyContainer h1 {
               font-size: 2.8rem;
	color: #667eea;
	margin-bottom: 2rem;
   font-weight: 700;
  border-bottom   :   3px solid #667eea;
                    padding-bottom: 1rem;
}

.policyContainer h2 {


   font-size: 1.8rem;
  color: #1a1a2e;
   margin-top: 2rem;
   margin-bottom: 1.2rem;
    font-weight: 600;

}

.policyContainer p {
    color: #555;
     margin-bottom:  1.2rem;
    line-height:      1.9;
  font-size: 1rem;
    text-align :        justify;
}

.policyContainer strong {
    color: #667eea;
	font-weight: 600;
}@media (max-width: 768px) {
    .policyContainer {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .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;
        margin-bottom: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer {
        padding: 1.5rem 1rem;
    }

    .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: 0.8rem;
    }

    .policySection {
        padding: 40px 0.5rem;
    }
}