* {
   margin: 0;
	padding: 0;
    box-sizing: border-box;
	
}

html {
	     scroll-behavior: smooth;


     }

body
	{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
  color: #2c3e50;
   background-color: #fafbfc;
}

.navbar-main {
     background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
          padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
  top     :    0;
  z-index: 1000;
     }

.nav-container {
    max-width  :  1200px;
   margin: 0 auto;
    padding: 0 2rem;
	 display: flex;
   justify-content: space-between;
  align-items: center;
}

.nav-logo-image {
    width: auto;
   height: 50px;
     display: block;


}

.nav-menu {
     display  :     flex;
   gap: 2rem;
    align-items: center;
}

.nav-item {
	 text-decoration: none;
        color: #2c3e50;
    font-weight: 500;
	padding: 0.5rem 1rem;
   border-radius: 6px;
   transition: all 0.3s ease;
  cursor :        pointer;
}

.nav-item:hover {
	  background: rgba(52, 152, 219, 0.1);
                    color: #3498db;


}

.nav-burger {

    display   :     none;
   flex-direction   :   column;
  background: none;
         border: none;
	cursor: pointer;
  padding: 0.5rem;
     }

.nav-burger span {
     width: 25px;
   -moz-border-radius: 2px;
                    -moz-transition: all 0.3s ease;
    -o-transition     :      all 0.3s ease;
          height:     3px;
   background: #2c3e50;
   margin    :    4px 0;
	-webkit-border-radius: 2px;
  border-radius     :    2px;
  -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
     }

.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}


.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero-banner {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	padding: 120px 2rem;
  text-align: center;
   min-height: 500px;
  display: flex;
	 align-items     :      center;
	justify-content: center;
	}

.hero-content h1 {
    font-size:      3.5rem;
  margin-bottom: 1.5rem;
   font-weight: 700;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.3rem;
 margin-bottom: 2.5rem;
    opacity: 0.95;
   max-width: 700px;
 margin-left    :        auto;
       margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding:     15px 40px;
	border-radius: 50px;
    text-decoration: none;
   font-weight: 600;
	 font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 cursor: pointer;
}

.cta-button:hover 
 {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.services-overview {
	 max-width: 1200px;
    padding  :   0 2rem;
    margin: 80px auto;
}

.section-header {
   text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
   font-size: 2.5rem;
    color: #2c3e50;
     margin-bottom: 1rem;
   font-weight: 700;
}

.section-header p {
   font-size: 1.1rem;
  color: #7f8c8d;
    max-width   :        600px;
    margin: 0 auto;
}

.services-grid  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
   border-radius: 12px;
  overflow  :    hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition   :     all 0.3s ease;
   display   :flex;
	flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
      height: 250px;
  object-fit: cover;}

.service-card h3 {
	 font-size: 1.5rem;
   margin: 1.5rem 1.5rem 0.5rem;
   color  :   #2c3e50;
	font-weight    :      600;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
    color  : #555;
   font-size: 0.95rem;
  line-height: 1.5;
	flex-grow: 1;
}

.features-section {

	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 80px 2rem;
   margin: 60px 0; 
}

.features-container

{
       max-width:1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap   : 2rem;
     }

.feature-block {
       background: white;
   padding     :    2.5rem;
				 border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-block h3 {


    font-size     :     1.3rem;
	margin-bottom: 1rem;
    color: #2c3e50;
  font-weight   :      600; 
	}

.feature-block p {
   color: #666;
    line-height: 1.7;
    font-size:     0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 80px 2rem;
         text-align: center;
   color: white;
}

.cta-wrapper h2 {
    font-size :       2.5rem;
    margin-bottom: 1rem;
   font-weight: 700;
}

.cta-wrapper p {
   font-size: 1.1rem;
  margin-bottom: 2rem;
    opacity: 0.95;
} 

.cta-button-large 
 {
  display: inline-block;
	 background   :white;
         color: #2980b9;
  padding: 18px 50px;
	 border-radius: 50px;
    text-decoration     :  none;
    font-weight: 600;
	font-size: 1.1rem;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
               cursor: pointer;
}

.cta-button-large:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-section {
  max-width: 900px;
    margin: 80px auto;
    padding: 0 2rem;

}

.contact-container h2     {
    font-size: 2.2rem;
   text-align   :       center;
    margin-bottom: 0.5rem;
    color: #2c3e50;
	font-weight   :      700; 

}

.contact-subtitle {
         text-align: center;

     color:        #7f8c8d;

    margin-bottom: 2.5rem;

    font-size  :  1rem;
}

.contact-form {
   background: white;
    padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	
}

.form-group {
    margin-bottom: 1.8rem;

}

.form-group label
{
   color: #2c3e50;
	  margin-bottom: 0.6rem;
	               font-weight     :        600;
	   display: block;
	    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea	{
		 width: 100%;
	padding  :        12px 15px;
    border: 2px solid #ecf0f1;
	 border-radius   :     6px;
    font-size: 0.95rem;
  font-family:  inherit;
  transition: all 0.3s ease;
   color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
               border-color    :  #3498db;
   background: #f0f8ff;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input::placeholder
{
    color: #bdc3c7;
}

.submit-button {
  width: 100%;
               padding  :     14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
  cursor   :   pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-button:hover	{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.footer-main {
  background: linear-gradient(135deg, #1a252f 0%, #1f3a52 100%);
  color: white;
				 padding: 60px 2rem 20px;
  margin-top  :        80px;
}

.footer-content {
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		 gap: 3rem;
   margin-bottom: 3rem;
}

.footer-section h4 {
	font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-logo-wrapper {
    margin-bottom: 1rem; 
	
}

.footer-logo

{
    height: 60px;
  width: auto;
    display: block;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
	 margin-bottom: 0.8rem;
}

.footer-links a {
   color: #bdc3c7;
  -moz-transition     :      color 0.3s ease;
   text-decoration: none;
    -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
         -webkit-transition: color 0.3s ease;
   font-size: 0.95rem;
}

.footer-links a:hover {
    color    :      #3498db;
}

.footer-address {
    color: #bdc3c7;

    line-height: 1.8;

   font-size: 0.95rem;

   margin-bottom: 1rem;
}

.footer-phone {
  color: #bdc3c7;
     font-size   :   0.95rem;


}

.footer-section p {
    color: #bdc3c7;
	line-height: 1.7;
    font-size:       0.9rem;
}

.footer-bottom		{
    text-align: center;
   padding-top   : 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #95a5a6;
   font-size: 0.85rem;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-burger {
        display: flex;
    }

    .nav-item {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .hero-banner {
        padding: 60px 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .services-overview,
    .contact-section {
        margin: 40px auto;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color   :      white;
   padding  :    100px 2rem;
  text-align  :        center;
  min-height: 350px;
          display     :        flex;
   align-items: center;
   justify-content: center;


}

.services-hero-content h1 {
		 font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-hero-content p {
               opacity    :     0.95;
  max-width   :   600px;
  margin: 0 auto;
   font-size: 1.2rem;


}

.services-detailed {
    max-width    :       1200px;
      margin: 80px auto;
  padding: 0 2rem;
}

.services-container {
   display: flex;
   flex-direction: column;
 gap: 6rem;
}

.service-detailed-item {
          display    : grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
                    align-items: start;
}

.service-detailed-item.alternate
	{
  grid-template-columns: 1fr 1fr;
   direction: rtl;
}

.service-detailed-item.alternate > * {
  direction: ltr;
}

.service-detailed-image {
    border-radius :12px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} 

.service-detailed-image img {
    width: 100%;
   height: auto;
   display: block;
    border-radius: 12px;
}

.service-detailed-content h2 {
   font-size: 2rem;
   color: #2c3e50;
    margin-bottom: 1rem;
   font-weight   :   700;
}

.service-intro {

	   font-size: 1.1rem;
   color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
     }

.service-details {
	 margin-top: 2rem;
}

.service-details h3
{
  font-size: 1.2rem;
   color: #2c3e50;
   margin-bottom: 1rem;
    font-weight: 600;
}

.service-features

{
	                    list-style: none;
 margin-bottom: 1.5rem;
	}

.service-features li
{

  padding-left: 1.8rem;
	margin-bottom  :  0.8rem;
   position: relative;
  color: #555;
          line-height: 1.6;


}

.service-features li:before {
  content: "✓";
    position: absolute;
	left   :       0;
				 color: #2ecc71;
  font-weight     :bold;
  font-size: 1.1rem;
}

.service-description {
   line-height    :        1.8;
    margin-top: 1rem;
			color: #666;
}

.pricing-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding  :       80px 2rem;
   margin: 60px 0;
}

.pricing-container    {
   max-width: 1200px;
    margin  :   0 auto;
}

.pricing-container h2 {
   font-size: 2.5rem;
       text-align  :  center;
   color: #2c3e50;
  margin-bottom: 0.5rem;
   font-weight: 700;
}  

.pricing-intro {
    text-align: center;
	 color: #7f8c8d;
	    margin-bottom: 3rem;
	  font-size: 1rem;
}

.pricing-grid   {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
   margin-bottom     :       3rem;
}

.pricing-card {
  background    :        white;
  border-radius: 12px;
	 padding: 2.5rem;
       text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	 transition: all 0.3s ease;
    position   :   relative;
    display    :        flex;
 flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #3498db;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.05);
	
}

.pricing-badge {
  position: absolute;
	top: -12px;
  left :50%;
  transform: translateX(-50%);
   background :  #3498db;
  color: white;
   padding: 0.5rem 1rem;
  border-radius: 20px;
   font-size: 0.8rem;
               font-weight: 600;
} 

.pricing-card h3 {
                    font-size: 1.3rem;
  color: #2c3e50;
	margin-bottom    :       1rem;
  font-weight: 600;
	
}

.price{

         font-size: 2.5rem;
    color    :    #3498db;
                    font-weight: 700;
  margin-bottom: 0.2rem;
     }

.price-desc {
  color: #95a5a6;
        font-size: 0.9rem;
    margin-bottom    :   1.5rem;
}

.pricing-features    {
     margin-bottom: 2rem;
  flex-grow: 1;
         list-style: none;
  text-align: left;
     }

.pricing-features li {
   padding: 0.6rem 0;
  color: #555;
    font-size: 0.9rem;
    padding-left: 1.5rem;
  position: relative;
}

.pricing-features li:before {
  content: "•";
  position: absolute;
   left: 0;
  color: #3498db;
  font-weight: bold;


}

.pricing-button {
    display: inline-block;
               padding: 12px 30px;
    border-radius   :  6px;
   text-decoration: none;
    font-weight: 600;
   transition: all 0.3s ease;
  border: 2px solid #3498db;
   color: #3498db;
          font-size: 0.9rem;
       cursor: pointer;
}

.pricing-button:hover {
   background: #3498db;
    color  :        white;
}

.pricing-button.primary {
    background: #3498db;
   color: white;
}

.pricing-button.primary:hover {
   background: #2980b9;
  border-color: #2980b9;
}

.pricing-note {
	    text-align: center;
  background: white;
    padding: 2rem;
    border-radius: 10px;
    color: #555;
    font-size: 0.95rem;
        line-height: 1.6;}

.faq-section {
  max-width: 1200px;
    margin: 80px auto;
   padding: 0 2rem;


}

.faq-container h2 {
   font-size: 2.5rem;
	    text-align: center;
	    color: #2c3e50;
	        margin-bottom: 3rem;
	       font-weight: 700;
}

.faq-grid{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :2rem;
}

.faq-item {


   background: white;
  padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {


   font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
	 font-weight     :600;
     }

.faq-answer {
    color: #666;
  line-height: 1.7;
    font-size: 0.95rem;
}

.thankyou-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
     align-items: center;
               justify-content: center;
   padding   :  2rem;
	
}  

.thankyou-container


{
    width: 100%;
       max-width: 600px;
}

.thankyou-card {
					background :        white;
   border-radius   :        16px;
    padding: 3rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
 text-align  :center;
}

.thankyou-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.thankyou-card h1 {
	font-size: 2.5rem;
   color: #2c3e50;
	margin-bottom: 0.5rem;
   font-weight: 700;
}

.thankyou-main     {


   font-size: 1.2rem;
  color: #3498db;
   margin-bottom: 2rem;
   font-weight:      600;
	}

.thankyou-message {
  background   : #f0f8ff;
  padding: 1.5rem;
   border-radius: 8px;
   margin-bottom: 2rem;
   text-align: left;
}

.thankyou-message p {
    color: #555;
	line-height: 1.8;
      margin-bottom: 0.8rem;
}

.thankyou-message p:last-child {

		margin-bottom: 0;}

.thankyou-next-steps {
         margin-bottom: 2.5rem;
}

.thankyou-next-steps h2 {
  font-size :    1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
          font-weight: 600;
	
}

.steps-list


{
  display: grid;
  gap: 1rem;
}

.step {
   display :     grid;
        grid-template-columns: 50px 1fr;
  gap: 1.5rem;
    align-items: start;
   text-align: left;
}

.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-weight: 700;
	font-size: 1.2rem;
  flex-shrink: 0;}

.step-content h3 {
  font-size: 1rem; 
                    color: #2c3e50; 
    margin-bottom: 0.3rem; 
    font-weight: 600;
	
}

.step-content p {
	color   :      #666;
  font-size: 0.9rem;
       line-height: 1.5;


}

.thankyou-contact {
	-webkit-border-radius: 8px;
  -moz-border-radius :       8px;
    background: #f5f7fa;
  padding  :     1.5rem;
    border-radius: 8px;
   margin-bottom: 2rem;
}

.thankyou-contact h3 {
	 font-size: 1.1rem;
      color: #2c3e50;
                       margin-bottom: 0.8rem;
                       font-weight: 600;}

.thankyou-contact p {
   color: #666;
	font-size: 0.9rem;
   line-height: 1.6;
	margin-bottom: 0.8rem;
}



.contact-phone	{
	 font-weight: 600;
}

.thankyou-actions {

   display: grid;
   grid-template-columns    :    1fr 1fr;
  gap: 1rem;

}

.action-button {
    display: inline-block;
    padding: 12px 20px;
  border-radius: 6px;
    text-decoration: none;
   font-weight: 600;
  font-size: 0.9rem;
   transition: all 0.3s ease;
}

.action-button.primary{
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	}

.action-button.primary:hover {


  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); 

}

.action-button.secondary {
    border: 2px solid #667eea;
  color     :       #667eea;
    background  :    white;
}

.action-button.secondary:hover {

     background: #667eea;
	color:   white;
     }

.faq-thank-section   {
       max-width: 1200px;
	 margin  :        80px auto;
   padding: 0 2rem;
}

.faq-thank-container h2 {
  font-size: 2rem;
    text-align: center;
   color: #2c3e50;
   margin-bottom: 3rem;
  font-weight: 700;
}

.faq-thank-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  margin-bottom   :3rem;
}  

.faq-thank-item {
  background   :       white;
   padding:       2rem;
   border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-thank-item h3 {
   font-size: 1.1rem;
    color: #2c3e50;
	margin-bottom: 1rem;
  font-weight: 600;
}

.faq-thank-item p {
  color: #666;
   line-height: 1.6;
    font-size  :   0.9rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detailed-item.alternate {
        direction: ltr;
    }

    .service-detailed-item.alternate > * {
        direction: ltr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px) scale(1);
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .step {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detailed-content h2 {
        font-size: 1.3rem;
    }

    .pricing-container h2 {
        font-size: 1.8rem;
    }

    .thankyou-card {
        padding: 1.5rem;
    }

    .thankyou-card h1 {
        font-size: 1.8rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-thank-grid {
        grid-template-columns: 1fr;
    }
}.policy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 80px 2rem;
  text-align: center;
               min-height  :  250px;
   display: flex;
    align-items: center;
         justify-content: center;
}

.policy-hero h1 {
    font-size   :      2.8rem;
   margin: 0;
  font-weight: 700;
    letter-spacing    : -0.5px;
	

}

.policy-section {
	 background: #fafbfc;
  padding: 80px 2rem;
}

.policy-container {
	max-width: 800px;
    margin: 0 auto;
   text-align: left;
}  

.policy-container h2 {
	font-size: 1.8rem;
  color     :    #2c3e50;
    margin: 2.5rem 0 1rem;
    font-weight  :        700;
   line-height :     1.3;
}

.policy-container h2:first-child  
  {
   margin-top: 0;
}

.policy-container h3 {
   font-size: 1.3rem;
  color: #34495e;
   margin: 2rem 0 0.8rem;
   font-weight:    600;
}


.policy-container p {
   color    :#555;
	margin-bottom     :    1.5rem;
	 line-height: 1.8;
    font-size: 0.95rem;
}

.policy-container p:last-child     {
   margin-bottom: 0;

}

.policy-container ul {
   margin: 1.5rem 0;
    padding-left     :        2rem;
}

.policy-container li {
  color: #555;
         margin-bottom:    0.8rem;
    line-height: 1.7;
   font-size: 0.95rem;
}@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 1.5rem;
    }

    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 60px 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
        margin: 2rem 0 0.8rem;
    }

    .policy-container h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 40px 1rem;
        min-height: 200px;
    }

    .policy-hero h1 {
        font-size: 1.5rem;
    }

    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin: 1.8rem 0 0.8rem;
    }

    .policy-container h3 {
        font-size: 1rem;
        margin: 1.2rem 0 0.6rem;
    }

    .policy-container p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .policy-container ul {
        padding-left: 1.5rem;
    }

    .policy-container li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}