* {
  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 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   padding: 1rem 0;
    position: sticky;
  top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container


{


    max-width: 1200px;
  margin: 0 auto;
	padding: 0 2rem;
    display: flex;
               justify-content: space-between;
    align-items: center;


}

.nav-logo {
    display: flex;
                    align-items: center;
}

.logo-image  
  {
    height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
    display     : flex;
   list-style: none;
   gap: 2rem;
}

.nav-link {
	   color: #fff;
    text-decoration: none;
   font-weight: 500;
   transition: color 0.3s ease;
    position: relative;
     }

.nav-link:hover   {
		 color: #00d4ff;
}

.nav-link::after {
  content: '';
     position: absolute;
     bottom     :      -5px;
      left     :0;
      width: 0;
     height:        2px;
      background: #00d4ff;
   	transition: width 0.3s ease;
}

.nav-link:hover::after {
   width    :       100%;
}

.burger-menu {
	display: none;
  background: none;
  border: none;
   cursor: pointer;
    padding: 0.5rem;
}

.burger-menu img {
   width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);


}

.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;
    color: #1a1a2e;
         line-height:       1.2;
	
}

.hero-subtitle {


        font-size:    1.2rem;
	   color    :   #555;
	  margin-bottom: 2rem;
     }

.cta-button {
  display: inline-block;
	padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:      white;
   text-decoration: none;
				 border-radius: 50px;
   font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {

	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.hero-image img

{
  width: 100%;
     height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-preview {
    max-width :      1200px;
    margin: 5rem auto;
                    padding: 0 2rem; 

}

.services-preview h2 {
   font-size: 2.5rem;
  text-align: center;
    margin-bottom: 3rem;
  color: #1a1a2e;
}  

.services-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
 background: white;
     border-radius: 12px;
       overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transition :   all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
   height  :  220px;
  object-fit: cover;
}

.service-card h3 {
   padding:     1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #1a1a2e;

}

.service-card p {

   padding:        0 1.5rem 1.5rem;
   color :        #666;
  font-size: 0.95rem;

     }

.features-section {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
   padding: 4rem 2rem;
               margin: 3rem 0;
}



.features-section h2 {
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 3rem;
  font-size  : 2.5rem;
}

.features-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin  : 0 auto;
}

.feature-item {
  background    :   white;
    padding: 2rem;
  border-radius: 10px;
    border-left: 4px solid #667eea;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
   margin-bottom  :   0.8rem;
}

.feature-item p {
	 color: #666;
  font-size: 0.95rem;
}

.cta-section {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color     :        white;
	padding: 4rem 2rem;
         text-align: center;
   margin: 3rem 0;


}

.cta-section h2 {
   font-size: 2rem;
   margin-bottom:    1rem;
}

.cta-section p {
          font-size: 1.1rem;
  margin-bottom: 2rem;
	opacity: 0.95;
}

.cta-button-secondary {
   display: inline-block;
  padding: 1rem 2.5rem;
    background: white;
   color: #667eea;
  text-decoration: none;
  border-radius :    50px;
   font-weight: 600;
               transition :      all 0.3s ease;
}

.cta-button-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-section {
	max-width: 600px;
   margin: 4rem auto;
   padding  :      0 2rem;

}  

.contact-section h2 {
   font-size:      2rem;
   text-align  :       center;
  margin-bottom: 2rem;
   color: #1a1a2e;
}

.contact-form {
  background: white;
	 padding :        2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {

	    margin-bottom  : 1.5rem;
}  

.form-group label {
  display: block;
    color: #1a1a2e;
   margin-bottom: 0.5rem;
   font-weight:      600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   border: 2px solid #e0e0e0;
	 border-radius: 8px;
     font-family: inherit;
	transition     :   border-color 0.3s ease;
    padding: 0.75rem;
  font-size: 1rem;


}

.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);
}

.submit-btn {
     width: 100%;
   padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
	border-radius: 8px;
    font-size:   1rem;
    font-weight    :      600;
  cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover {

  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);

}

.footer {
   background: #1a1a2e;
  color: #fff;
   padding: 3rem 2rem;
   margin-top: 4rem;

}

.footer-container {
   max-width     : 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns :1fr 3fr;
   gap: 2rem;
          margin-bottom   :   2rem;
     }

.footer-logo-img {
  height: 60px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-section h4 {

	   margin-bottom: 1rem;
		font-size: 1.1rem;


}

.footer-section ul {
  list-style: none;
	
}

.footer-section ul li {
   margin-bottom: 0.8rem;
} 

.footer-section a
{

   color  :     #ccc;
    text-decoration: none;
   transition: color 0.3s ease;
	
}

.footer-section a:hover {
    color: #00d4ff;
}

.footer-address {
    margin-bottom: 0.5rem;
}


.footer-phone {
    margin-bottom  :       0.5rem;
}

.footer-bottom {
  font-size: 0.9rem; 
	  text-align: center; 
	  padding-top: 2rem; 
	   border-top: 1px solid #333; 
	    color  :    #999;


}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        margin: 2rem auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #16213e;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .burger-menu {
        display: block;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-content {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .services-preview h2,
    .features-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card img {
        height: 180px;
    }

    .nav-container {
        padding: 0 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 4rem 2rem;
    text-align: center;
}

.services-hero h1 {
   font-size: 2.8rem;
    margin-bottom:     1rem;
   font-weight: 700; 

}

.services-hero p {
   font-size: 1.2rem;
                    opacity     :   0.95;
   max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
   max-width: 1200px;
  margin: 4rem auto;
    padding: 0 2rem;
} 

.service-detailed-item {
       display: grid;
         grid-template-columns: 1fr 1fr;
	gap: 3rem;
    align-items: center;
   margin-bottom: 5rem;
}

.service-detailed-item.reversed  {
	grid-template-columns: 1fr 1fr;
}

.service-detailed-item.reversed .service-detail-image {
   order: 2;
}

.service-detailed-item.reversed .service-detail-content {
    order: 1;
}


.service-detail-image img {
       width: 100%;
         height: auto;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-detail-content h2 {

	     font-size: 2rem;
    margin-bottom: 1rem;
   color: #1a1a2e;

}



.service-intro {

	  font-size: 1.05rem; 
	    color: #555; 
	   margin-bottom: 1.5rem; 
	     line-height  :  1.7;
     }

.service-detail-content h3 {

	  font-size: 1.3rem; 
	   color: #1a1a2e; 
	  margin: 1.5rem 0 1rem;
     }

.service-features {
   list-style  :     none;
  margin: 1rem 0 1.5rem;
}

.service-features li {
     padding: 0.7rem 0;
    padding-left: 1.5rem;
	position: relative;
  color: #555;
}

.service-features li:before  
  {
  content: '✓';
      left: 0;
      font-weight: bold;
     color: #667eea;
     position: absolute;
       font-size: 1.2rem;
}

.service-info {
  border-radius: 8px;
    padding: 1rem;
   margin :     1.5rem 0;
    font-size: 0.95rem;
   background: #f0f2f5;
  color  :    #666;
}

.service-cta {
 display: inline-block;
   padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
    text-decoration    :        none;
	 border-radius: 25px;
   font-weight: 600;
    transition  : all 0.3s ease;
   margin-top: 1rem;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}


.comparison-section {
   background: #f8f9fa;
    padding: 3rem 2rem;
   margin: 4rem 0;
}

.comparison-section h2 {
  text-align: center;
       margin-bottom: 2rem;
   color: #1a1a2e;
  font-size :       2rem;
}

.comparison-table-wrapper    {
   max-width: 1200px;
   margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {

    width: 100%;
   border-collapse: collapse;
  background :   white;
   border-radius   :   10px;
    overflow    :     hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     }

.comparison-table thead {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;

}

.comparison-table th
{
   padding: 1.2rem;
	   text-align: left;
	  font-weight  :  600;
} 

.comparison-table td {
	 padding: 1rem 1.2rem;
  border-bottom :1px solid #e0e0e0;
}

.comparison-table tbody tr:last-child td {
         border-bottom   :  none;
}

.comparison-table tbody tr:hover {
  background: #f8f9fa;
}

.process-section {


  max-width   :    1200px;
         margin :      4rem auto;
    padding: 0 2rem;
}

.process-section h2 {
      text-align: center;
          font-size: 2rem;
    margin-bottom: 3rem;
   color: #1a1a2e;
}

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   gap: 2rem;
}

.process-step {
    text-align   :    center;
   padding: 2rem 1.5rem;
  background: white;
    border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.step-number {

        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-size: 1.5rem;
   font-weight     :   bold;
    margin: 0 auto 1rem;
	}

.process-step h3 {
   color: #1a1a2e; 
  font-size: 1.1rem; 
	 margin-bottom: 0.8rem;
}

.process-step p {
    color: #666; 
  font-size: 0.9rem;
}


.faq-section {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
   padding: 4rem 2rem;
  margin  :      4rem 0;
}

.faq-section h2
	{
  font-size : 2rem;
   color: #1a1a2e;
      margin-bottom: 3rem;
    text-align: center;
}



.faq-container {
   max-width: 800px;
   margin: 0 auto;
}

.faq-item  {
  background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
  border-radius: 8px;
	 border-left: 4px solid #667eea;
} 

.faq-question {

	  font-size: 1.1rem;
    color: #1a1a2e;
  margin: 0;
   cursor: pointer;
    font-weight: 600;}

.faq-answer {
  color: #666;
    margin: 1rem 0 0;
   display: block;
   line-height: 1.7;
}

.thank-you-section {
	max-width: 900px;
    margin: 4rem auto;
	padding:     0 2rem;
}

.thank-you-container
{
   background    :   white;
    padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon img {
   width: 80px;
  height: 80px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.thank-you-section h1 {

  font-size: 2.5rem;
  color: #1a1a2e;
        margin-bottom: 1rem;

}

.thank-you-main {
  font-size: 1.1rem;
   color: #555;
  line-height:  1.7;
    margin-bottom  :2rem;
} 

.thank-you-info {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
   padding: 2rem;
   border-radius: 10px;
  margin     :   2rem 0;
}

.thank-you-info h2 {
	 font-size: 1.5rem;
  color: #1a1a2e;
   margin-bottom: 1.5rem;
}

.info-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1.5rem;
}

.info-step {

	  text-align   :  center;
	}

.step-icon {
	   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-size: 1.5rem;
    font-weight: bold;
               margin: 0 auto 1rem;}

.info-step h3 {
    font-size: 1rem;
   color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.info-step p {
	font-size: 0.9rem;
   color: #666;
}

.thank-you-alternatives {
   margin: 2rem 0;
  padding: 2rem;
    background: white;
    border: 2px solid #e0e0e0;
  border-radius: 10px;
}

.thank-you-alternatives h3 {
	    font-size: 1.2rem;
   color: #1a1a2e;
   margin-bottom: 1rem;
}

.thank-you-alternatives p {
    color: #666;
               margin: 0.5rem 0;
}

.contact-number {
	font-size  :     1.5rem;
    font-weight: bold;
          color: #667eea;
   margin     : 1rem 0;
}

.contact-hours {
  font-size: 0.9rem;
  color: #999;
}

.thank-you-cta {
   display: flex;
	gap: 1rem;
   justify-content: center;
	margin    :      2rem 0;
   flex-wrap: wrap;
}

.back-button,
.services-button

{
   transition: all 0.3s ease;
   font-weight: 600;
	padding: 1rem 2rem;
    border-radius:   25px;
   text-decoration: none;
}

.back-button   {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.services-button {

	   background: white;
  color: #667eea;
  border: 2px solid #667eea;

}

.services-button:hover {
  background: #f0f2f5;
}

.thank-you-message {

	   margin-top    :2rem;
  font-size: 1.2rem;
    color: #667eea;
   font-weight: 600; 


}

.next-steps-section {
   max-width: 1200px;
  padding: 0 2rem;
    margin: 4rem auto;
}

.next-steps-section h2
{
    text-align: center;
    font-size: 2rem;
  margin-bottom: 3rem;
   color: #1a1a2e;
}

.next-steps-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.next-step-card {
   background: white;
	padding: 2rem;
   border-radius   :   10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   transition    :  all 0.3s ease;
}

.next-step-card:hover     {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.next-step-card h3 {
    font-size: 1.2rem;
    color     :   #1a1a2e;
    margin-bottom: 1rem; 

}

.next-step-card p {
         line-height: 1.6;
    margin-bottom     :   1rem;
   color: #666;
}

.link-arrow {
      color: #667eea;
    font-weight: 600;
   transition: all 0.3s ease;
   text-decoration: none;}

.link-arrow:hover {
    color: #764ba2;
}@media (max-width: 768px) {
    .service-detailed-item,
    .service-detailed-item.reversed {
        grid-template-columns: 1fr;
    }

    .service-detailed-item.reversed .service-detail-image,
    .service-detailed-item.reversed .service-detail-content {
        order: initial;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .thank-you-container {
        padding: 2rem;
    }

    .thank-you-section h1 {
        font-size: 1.8rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .thank-you-cta {
        flex-direction: column;
    }

    .back-button,
    .services-button {
        width: 100%;
    }

    .info-steps {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .services-hero h1 {
        font-size: 1.5rem;
    }

    .thank-you-container {
        padding: 1.5rem;
    }

    .thank-you-section h1 {
        font-size: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
   padding: 80px 2rem;
    background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
        max-width: 900px;
	 margin: 0 auto;
	text-align: left;
   background: white;
    padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.policyContainer h1 {
	 font-size  : 2.8rem;
    color: #1a1a2e;
   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: 1rem;
	font-weight: 600;
    position    :      relative;
          padding-left: 1.5rem;
}  

.policyContainer h2:before {
  content: '';
  position: absolute;
   left: 0;
	top     :        0;
    bottom: 0;
   width     :      4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.policyContainer p {
   color: #555;
    margin-bottom:    1.5rem;
    line-height: 1.8;
    font-size    :  1.05rem;
   text-align: justify;
}

.policyContainer p:last-child {


   margin-bottom    :    0;
	}

.policyContainer h3 {
  font-size: 1.3rem;
   color: #2c3e50;
  margin-top: 1.5rem;
    margin-bottom: 0.8rem;
   font-weight: 600;
}

.policyContainer ul {
   margin: 1.5rem 0;
  padding-left: 2rem;
    list-style: none;
}

.policyContainer li {

	  margin-bottom   : 0.8rem;
	padding-left: 1.5rem;
    position: relative;
  color: #555;
    line-height: 1.7;
	
     }

.policyContainer li:before

{
  content: '•';
        position   : absolute;
    left: 0;
  color: #667eea;
	 font-weight    :    bold;
    font-size: 1.5rem;
}

.policyContainer strong {

	  color: #1a1a2e; 
	   font-weight:   600;

}

.policyContainer em 
 {
          color: #764ba2;
	font-style: italic;
	
}

.policyContainer section  
  {
	background: #f8f9fa;
    margin-bottom:   2rem;
                    border-left: 4px solid #667eea;
	 border-radius: 8px;
  padding: 1.5rem;
}

.policyContainer a
{
    color: #667eea; 
   text-decoration: none; 
         transition: color 0.3s ease; 
  font-weight: 500;
}

.policyContainer a:hover {
    color: #764ba2;
  text-decoration   :   underline;
}

.policyContainer blockquote {
    margin: 2rem 0;
	padding: 1.5rem;
    border-left: 4px solid #667eea;
   background: #f0f2f5;
   font-style     :    italic;
  color: #555;
}

.policyContainer code {
   background  :      #e8eaf6;
  padding: 0.2rem 0.5rem;
 border-radius: 3px;
    color    :     #764ba2;
  font-family: 'Courier New', monospace;
  font-size     :  0.9rem; 

}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.7;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
    }

    .policyContainer ul,
    .policyContainer ol {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

    .policyContainer li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.75rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 6px;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .policyContainer h3 {
        font-size: 1rem;
    }

    .policyContainer blockquote {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .policyContainer code {
        font-size: 0.85rem;
        padding: 0.15rem 0.4rem;
    }

    .policyContainer ul,
    .policyContainer ol {
        padding-left: 1.2rem;
    }

    .policyContainer li {
        font-size: 0.9rem;
    }
}

@media print {
    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h1,
    .policyContainer h2,
    .policyContainer h3 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}