* {
	  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;
}

.navbar-main {
  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);
}

.nav-container {
   margin   : 0 auto;
   justify-content: space-between;
   display: flex;
  max-width   :    1200px;
  padding: 0 20px;
   align-items: center;
}

.nav-brand {
  display: flex;
	 align-items   :       center;
}

.logo-img {
	    height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-burger {
      cursor: pointer;
   background: none;
  border: none;
	 flex-direction: column;
    display: none;
	 padding: 0;
     }

.burger-line {
  width: 25px;
    height: 3px;
  background-color     :    white;
  margin :    5px 0;
   transition  :     all 0.3s ease;
        border-radius:2px;
}

.nav-burger.active .burger-line:nth-child(1)
{
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.nav-burger.active .burger-line:nth-child(3)    {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
   list-style: none;
    gap: 2rem;
}  

.nav-link    {
  color: white;
  text-decoration: none;
  font-weight: 500;
	padding   :   0.5rem 0;
    border-bottom     :2px solid transparent;
	 transition: all 0.3s ease;
}

.nav-link:hover {
  border-bottom-color :     white;
}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 1rem 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}.hero-section {
    max-width: 1200px;
  margin: 0 auto;
    padding: 80px 20px;
   display    :       grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items :    center;
}

.hero-content h1   {
   font-size: 3rem;
  margin-bottom: 1.5rem;
		color: #1a1a2e;
  line-height: 1.2;
}


.hero-subtitle {
   font-size: 1.1rem;
   color  :        #555;
  margin-bottom: 2rem;
	line-height    :     1.8;
     }

.cta-button {
                    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 15px 40px;
    border-radius  :       50px;
   text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border   :     none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.hero-image img {
  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;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.section-header {
	    margin-bottom  :4rem;
    text-align: center;}

.section-header h2 {
  font-size: 2.5rem;
    color: #1a1a2e;
   margin-bottom:1rem;
}

.section-header p {
	font-size: 1.1rem;
	 color: #666; 

}

.services-preview {
  max-width: 1200px;
   margin: 0 auto;
  padding: 80px 20px;
          background: white;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
               background: #f8f9fa;
    border-radius: 12px;
   overflow: hidden;
   transition: all 0.3s ease;
   border: 1px solid #e0e0e0;
}

.service-card:hover {
  transform: translateY(-10px);

	  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);

	   border-color: #667eea;
}

.service-image {


	 width: 100%;
    height: 200px;
  overflow: hidden;

}

.service-image img {
      width: 100%;
   height: 100%;
  object-fit: cover;
  transition  : transform 0.3s ease;
     }

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.3rem;
   color: #1a1a2e;
  padding: 20px 20px 10px;
}



.service-card p {
         color: #666;
  padding: 0 20px;
  font-size: 0.95rem;
   margin-bottom: 15px;
}

.service-tag {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 5px 15px;
  border-radius    :        20px;
    font-size: 0.8rem;
   margin: 0 20px 20px;
  font-weight: 500;
}

.benefits-section	{
    max-width   :      1200px;
   margin :     0 auto;
    padding: 80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 15px;
}

.benefits-content {
    display : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.benefit-item {
  position   :      relative;
}

.benefit-number {
               font-size: 3rem;
    font-weight: bold;
    color: #667eea;
   opacity: 0.2;
    margin-bottom: 10px;
}

.benefit-item h3 {
   font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
  line-height: 1.8;
}

.offer-section {
  max-width: 1200px;
   margin: 80px auto;
	 padding: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         border-radius: 15px;
   text-align: center;
  color: white;
}

.offer-wrapper h2 {
    font-size   :2.2rem;
  margin-bottom: 1.5rem;
}

.offer-wrapper p {
    font-size: 1.1rem;

	    margin-bottom: 2rem;

	    opacity: 0.95;
}

.cta-secondary {
   background: white;
   color: #667eea;
}


.cta-secondary:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 

}

.contact-section {
  max-width: 1200px;
   margin: 80px auto;
  padding: 60px 20px;
}

.contact-wrapper {
    display    :     grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size  :2rem;
  color: #1a1a2e;
    margin-bottom :    1.5rem;
}

.contact-info p {
    color: #666;
   margin-bottom: 2rem;
   line-height: 1.8; 

}

.contact-details {
	display: flex;
  flex-direction: column;
    gap  :    2rem;

} 

.detail-item {

    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
  border-left: 4px solid #667eea;


}

.detail-label {
    font-weight: 600;
  color: #667eea;
  display: block;
	margin-bottom  :     0.5rem;

}


.detail-item p {
   margin: 0;
	color :    #2c3e50;
}

.contact-form {
  display: flex;
  flex-direction: column;
   gap: 1.5rem;
}


.form-group  {
    display:     flex;
   flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
   border   :      1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
   font-size: 1rem;
	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-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
    padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
          font-size: 1rem;
   cursor   :    pointer;
	transition: all 0.3s ease;
   margin-top: 1rem;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}  @media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.footer-main {
   background: #1a1a2e;
  color: white;
     padding: 60px 20px 20px;
    margin-top: 80px;


}

.footer-content {


	 max-width: 1200px;
  margin: 0 auto;
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap :   40px;
    margin-bottom: 40px;
}



.footer-logo-section {
   display: flex;
    align-items: flex-start;
}

.footer-logo {
    height: 50px;
       width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
   font-size: 1.1rem;
    margin-bottom: 1.5rem;
  color: #667eea;
}  

.footer-section ul  {
	 list-style: none;
}

.footer-section ul li


{
      margin-bottom: 0.8rem;


}

.footer-section a {
	      color: #bbb;
    text-decoration: none;
   transition: color 0.3s ease;


}


.footer-section a:hover {
     color: #667eea;
	
	}

.footer-section p {
     color: #bbb;
   margin-bottom: 0.8rem;
   line-height: 1.6;
	
}

.footer-bottom {
      border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color   :#999;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.services-hero {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 100px 20px;
	 text-align: center;
	}

.services-hero-content h1    {
  font-size: 3rem;
   margin-bottom: 1rem;
   line-height: 1.2;
}

.services-hero-content p {
	font-size:    1.2rem;
   opacity: 0.95;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }
}.services-container {


    max-width: 1200px;
  margin: 0 auto;
          padding   :   80px 20px;
}

.service-detail {
    margin-bottom: 100px;
  grid-template-columns: 1fr 1fr;
	 display: grid;
      gap: 60px;
                    align-items: center;
}

.service-detail-reverse {
   grid-template-columns   :      1fr 1fr;
}

.service-detail-reverse .service-detail-image {


   order: 2;
     }

.service-detail-reverse .service-detail-content
	{
	order: 1;
}

.service-detail-image {
    width  :    100%;
}

.service-detail-image img {

    width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

}  

.service-detail-content h2 {
    margin-bottom :  1.5rem;
	    color: #1a1a2e;
		 font-size: 2rem;
}

.service-intro {
   font-size: 1.1rem;
  color: #555;
 margin-bottom: 2rem;
          line-height: 1.8;
               font-style: italic;
}

.service-detail-content h3 {
   font-size    :      1.3rem;
  color: #667eea;
  margin: 2rem 0 1rem 0;

}

.service-list {
  list-style: none;
  margin  :       1rem 0 2rem 0;
}

.service-list li {
   padding: 0.8rem 0 0.8rem 30px; 
	    position     :        relative; 
	   color: #555; 
	  line-height     :     1.6;
}

.service-list li:before  {
  content: "✓";
  position     :        absolute;
    left: 0;
  color: #667eea;
	font-weight: bold;
  font-size  :     1.2rem;
}

.service-detail-content p	{
    color: #666;
    line-height :        1.8;
	margin-bottom: 1rem;
}

.service-details-box     {
    background: #f8f9fa;
	 border-left: 4px solid #667eea;
    padding:    20px;
  border-radius: 8px;
   margin-top: 2rem;
}

.detail-badge {


   display    :        inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 6px 15px;
  border-radius: 20px;
          font-size: 0.85rem;
   font-weight: 600;
   margin-bottom: 1rem;
     }

.service-details-box p {
      margin: 0.5rem 0;
    font-size: 0.95rem;
}@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-detail-reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-reverse .service-detail-image,
    .service-detail-reverse .service-detail-content {
        order: 0;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-list li {
        padding-left: 25px;
    }
}.pricing-preview {
   background: white;
  padding: 80px 20px;
  margin    :60px 0;
}

.pricing-container {
	 max-width: 1200px;
   margin: 0 auto;
}

.pricing-preview h2 {
	text-align: center;
  margin-bottom: 1rem;
          font-size  :2.5rem;
	color: #1a1a2e;
}

.pricing-subtitle {
      text-align: center;
   color: #666;
    font-size: 1.1rem;
    margin-bottom   :     3rem;
     }

.pricing-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap   :      30px;
}

.pricing-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
  border-radius: 12px;
	padding: 40px 30px;
   text-align: center;
   transition: all 0.3s ease;
     position: relative;
}

.pricing-card:hover   {
	border-color  :   #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.pricing-card-featured  
  {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border: none;
  transform: scale(1.05);}

.pricing-card-featured:hover {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.pricing-badge {
  position: absolute;
    top: -12px;
   right: 20px;
  background: #f39c12;
  color  :    white;
    padding: 5px 15px;
    border-radius: 20px;
	 font-size    :       0.8rem;
        font-weight: 600;
}

.pricing-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
    color: #1a1a2e;
}

.pricing-card-featured h3 {
	         color: white;

}

.pricing-price {

	    font-size: 2rem;
	font-weight: bold;
	color: #667eea;
   margin-bottom: 0.5rem;}

.pricing-card-featured .pricing-price 
 {
    color: white;
}

.pricing-description {
    color: #666;
    font-size: 0.95rem;
   margin-bottom: 2rem;
}

.pricing-card-featured .pricing-description {

	  color: rgba(255, 255, 255, 0.9);}

.pricing-features    {
  list-style   :none;
    text-align: left;
  margin-top: 2rem;
}

.pricing-features li {
   padding: 0.8rem 0;
   color: #555;
	border-bottom: 1px solid #e0e0e0;

}

.pricing-card-featured .pricing-features li


{
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}.faq-section {
  background: #f8f9fa;
    padding:     80px 20px;
}

.faq-container  
  {
  max-width: 1200px;
  margin: 0 auto;


}

.faq-section h2 {
    font-size: 2.5rem;
  text-align: center;
       color: #1a1a2e;
  margin-bottom: 4rem;
}

.faq-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.faq-item 
 {
	background: white;
   padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   border-left: 4px solid #667eea;
}

.faq-question {
   font-size: 1.1rem;
   color: #667eea;
     margin-bottom: 1rem;
   font-weight: 600;
}

.faq-item p	{
   color: #666;
    line-height: 1.8;
   font-size: 0.95rem;
}@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}.cta-final {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color  :white;
  padding: 60px 20px;
	 text-align: center;
    margin     :   60px 0;
     }

.cta-final h2 {

  font-size: 2.2rem;
     margin-bottom  :       1rem;
     }

.cta-final p {
    font-size: 1.1rem;
   margin-bottom: 2rem;
  opacity: 0.95;
}

.thankyou-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 80px 20px;
  min-height: calc(100vh - 400px);
}

.thankyou-container {
   margin   :      0 auto;
   max-width    :     700px;
}

.thankyou-content	{


  background: white;
  border-radius: 15px;
    padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
   text-align: center;
     }

.success-icon		{
    -webkit-animation:       scaleIn 0.5s ease-out;
          width: 80px;
  height: 80px;
  -moz-animation: scaleIn 0.5s ease-out;
  margin: 0 auto 2rem;
   animation :    scaleIn 0.5s ease-out;
}

.success-icon svg {
 width: 100%;
    height: 100%;
     }@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
   font-size  :   2.5rem;
   color: #1a1a2e;
	margin-bottom: 0.5rem;
}

.thankyou-subtitle {
    font-size: 1.3rem;
       color  :     #667eea;
    margin-bottom   :2rem;
  font-weight: 600;
}

.thankyou-message {
	 background: #f8f9fa;
  padding: 30px;
	 border-radius     :     10px;
	 margin: 2rem 0;
   text-align: left;
	border-left: 4px solid #667eea;
}

.thankyou-message p {
    color:   #555;
    line-height: 1.8;
  margin-bottom: 1rem; 
	
}

.thankyou-message p:last-child {
    margin-bottom  :        0;
}

.thankyou-next-steps {
  margin: 3rem 0; 
	    text-align: center;
}

.thankyou-next-steps h2 {
   font-size: 1.5rem;
  color: #1a1a2e;
	margin-bottom: 2rem;


}

.steps-grid   {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.step-item {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
   padding: 30px 20px;
   border-radius: 10px;
}

.step-number {
    font-size   :    2rem;
  font-weight     :bold;
  margin-bottom   : 0.5rem;
   opacity: 0.9;
}

.step-item h3 {
	  font-size:1rem;
   margin-bottom: 0.5rem;
    color  :   white;
}

.step-item p {
    font-size :0.85rem;

   opacity: 0.9;
}

.thankyou-suggestions {
    text-align: center;
   margin:  3rem 0 0;
}

.thankyou-suggestions h2 {

   font-size   :1.5rem;
	color: #1a1a2e;
  margin-bottom: 1rem;}

.thankyou-suggestions p {
   color: #666;
	   margin-bottom: 2rem;
}

.thankyou-buttons {
  display: flex;
  gap: 20px;
   justify-content: center;
    flex-wrap: wrap;
}

.button-link {
   padding: 12px 30px;
      font-size: 0.95rem;
  text-decoration: none;
	transition: all 0.3s ease;
        border-radius: 8px;
    font-weight: 600;
  display :  inline-block; 
	
}

.button-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.button-secondary {
   background: #f8f9fa;
               color: #667eea;
  border: 2px solid #667eea;
}

.button-secondary:hover {
   background: #667eea;
	 color: white;
}

.features-reminder {

	   padding: 80px 20px;
    background: white;
     }

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-reminder h2  
  {
    font-size:       2.2rem;
    text-align: center;
   color: #1a1a2e;
   margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px; 
	
}

.feature-box {
   transition: all 0.3s ease;
	text-align  :        center;
    padding   :40px 30px;
      border-radius: 10px;
      border: 2px solid transparent;
    background: #f8f9fa;
}

.feature-box:hover		{
	border-color  :        #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
       color: #667eea;
   margin-bottom: 1rem;
  font-weight: bold;
}


.feature-box h3 {
          font-size: 1.2rem;
         color: #1a1a2e;
	margin-bottom: 0.8rem;
}

.feature-box p {
   color: #666;
  line-height    : 1.6;
}@media (max-width: 768px) {
    .thankyou-content {
        padding: 40px 20px;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .button-link {
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}.policySection	{
	padding: 80px 2rem;
   background   :     #f8f9fa;
  min-height: calc(100vh - 400px);
}

.policyContainer {
  max-width: 900px;
    margin: 0 auto;
  text-align: left;
    background   :     white;
    padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
  font-size: 3rem;

	   color: #1a1a2e;

	   margin-bottom: 2rem;

	    font-weight: 700;

	   border-bottom :     3px solid #667eea;

	   padding-bottom: 1rem;
}

.policyContainer h2 {
    font-size: 1.8rem;
  color: #667eea;
   margin-bottom: 1.2rem;
  margin-top: 2rem;
    font-weight: 600;

}

.policyContainer p


{
   color: #555;
  margin-bottom: 1.5rem;
   line-height: 1.8;
   font-size: 1.05rem;
   text-align: justify;
}

.policyContainer p:first-of-type {
    font-size: 1.1rem;
   color: #666;
	 font-style: italic;
   margin-bottom: 2rem;
}

.policyContainer h1 + p {
  font-size: 1.1rem;
 color   :        #667eea;
					font-weight: 500;
               margin-bottom: 3rem;
}

.policyContainer ul {
   list-style: none;
    margin: 1.5rem 0;
    padding-left: 20px;
}

.policyContainer ul li {
   		 margin-bottom: 0.8rem;
    padding-left: 25px;
  position: relative;
   color: #555;
	 line-height    :    1.7;
	}

.policyContainer ul li:before {
  content: "▸";
    font-weight: bold;
  position: absolute;
  color  :     #667eea;
   left: 0;
}

.policyContainer strong {
  color: #1a1a2e;
   font-weight: 600;
}

.policyContainer h2:first-of-type     {
   margin-top: 0;
}

.policyContainer h2:last-of-type {
   margin-bottom: 1.2rem;
}

.policyContainer p:last-of-type {
       margin-bottom     :        0;
     }@media (max-width: 1024px) {
    .policyContainer {
        padding: 50px 40px;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 40px 25px;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .policyContainer ul li {
        padding-left: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 0.75rem;
    }

    .policyContainer {
        padding: 30px 15px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .policyContainer ul li {
        padding-left: 18px;
        font-size: 0.95rem;
    }
}

@media (prefers-color-scheme: dark) {
    .policyContainer {
        background: #1a1a2e;
    }

    .policyContainer h1,
    .policyContainer h2 {
        color: #667eea;
    }

    .policyContainer p,
    .policyContainer ul li {
        color: #ccc;
    }

    .policyContainer strong {
        color: #e0e0e0;
    }

    .policyContainer ul li:before {
        color: #667eea;
    }
}