* {
   margin: 0;
  padding: 0;
	box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
	}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	color: #2c3e50;
    background-color: #f8f9fa;
        line-height : 1.6;
  overflow-x: hidden;
}

a {
   text-decoration    :   none;
	color: inherit;
	 transition: all 0.3s ease;
}

img {
   max-width: 100%;
  height: auto;
   display :      block;
	
}

.section-container {
   max-width: 1200px;
 margin: 0 auto;
  padding  :     0 20px;
}

.nav-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 15px 0;
  position  :  sticky;
    top: 0;
   z-index: 1000;
  box-shadow: 0 2px 15px rgba(102, 126, 234, 0.15);
}



.nav-wrapper {
  max-width  :    1200px;
   margin: 0 auto;
                    padding: 0 20px;
  display: flex;
  justify-content: space-between;
    align-items: center;
}

.nav-logo img {
   height :        40px;
   width: auto;
  filter: brightness(0) invert(1);
   object-fit: contain;
}

.nav-list {
      display :  flex;
    list-style: none;
   gap: 30px;
     align-items: center;


	}

.nav-link
{
   font-weight: 500;
  color: white;
  font-size: 16px;
    position: relative; 

}

.nav-link::after	{

	  content: '';
    position: absolute;
 bottom: -5px;
   left: 0;
    width: 0;
  height: 2px;
  background: white;
        transition: width 0.3s ease;
     }

.nav-link:hover::after {
     width: 100%;
}

.burger-button {
    display: none;
  background: none;
  border     : none;
  cursor  :        pointer;
   padding: 5px;


}

.burger-icon {


  width: 28px;

	  height  :    28px;

	   stroke: white;

	  fill: none;

}@media (max-width: 768px) {
    .burger-button {
        display: flex;
        align-items: center;
    }

    .nav-list {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        display: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 10px;
        border-radius: 5px;
        transition: background 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}.hero-section {
   display: grid;
 grid-template-columns: 1fr 1fr;
    gap  :  40px;
    align-items: center;
  padding  : 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	margin-top: -20px;
}

.hero-content {
    padding: 20px;
}

.hero-title {
   font-size: 48px;
  font-weight: 800;
     line-height: 1.2;
   margin-bottom: 20px;
    color: #1a252f;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
   font-size :       18px;
    color    :        #555;
   margin-bottom: 30px;
   line-height: 1.7;
}

.cta-button {

    display   :    inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
    padding: 14px 32px;
   border-radius: 50px;
   font-weight: 600;
	font-size: 16px;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
    cursor :pointer;
  border: none;
  text-align: center;

}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.hero-image {
    display: flex;
    justify-content     :  center;
	 align-items: center;
  padding: 20px;
}

.hero-img {
               width: 100%;
   max-width: 500px;
   border-radius  :15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}.expertise-section
	{
	padding: 80px 20px;

    background: white;
}

.section-title {
    font-size   :42px; 
	  font-weight: 800; 
	   text-align: center; 
	  margin-bottom: 60px; 
	    color: #1a252f; 
	  position: relative; 
	  display: inline-block; 
	   width  :       100%;
}



.section-title::after {
  content: '';
    position: absolute;
  bottom: -15px;
	left: 50%;
  transform: translateX(-50%);
  width: 80px;
    height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  margin-top: 40px;
}

.expertise-card {
   background   :    white;
    border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  border-color  :#667eea;
}

.card-image  {
     width: 100%;
 height   :    220px;
    overflow: hidden;
  background: #f5f5f5;


}

.card-img {
    width: 100%;
   height: 100%;
    object-fit: cover;
  transition:        transform 0.3s ease;
}

.expertise-card:hover .card-img {
  transform: scale(1.05);
}

.card-title {
          font-size: 22px;
	font-weight: 700;
    padding: 20px 20px 10px;
	color: #2c3e50;
}

.card-description {
   font-size: 15px;
	color: #666;
    padding: 0 20px 20px;
	line-height: 1.6;
}@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }
}.services-offer {
   padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ebf0 100%); 
	
}

.offer-wrapper {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top:    50px;
}

.offer-item {
	background: white;
   padding: 30px;
    border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
   transition :     all 0.3s ease;
    border-top     :   3px solid #667eea;
}

.offer-item:hover {
	  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.12);}

.offer-icon-box {

    display:  flex;
    justify-content: center;
   margin-bottom: 20px;
    height: 60px;
	align-items: center;


}

.offer-icon {
  width: 50px;
   height: 50px;
   stroke :       #667eea;
  fill: none;
    stroke-width: 1.5;
}

.offer-item h3   {
   margin-bottom  :       15px;
  font-weight: 700;
	 color: #2c3e50;
   font-size   :20px;
}

.offer-item p {
		 font-size: 15px;
        color  :      #666;
 line-height: 1.6;}

.advantages-section {

	      padding: 80px 20px;
                    background: white;

}

.advantages-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
   margin-top: 50px;
}

.advantage-item {
    padding: 30px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
  border-radius: 12px;
   border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.advantage-number {
    display: inline-block;
  font-size: 32px;
   font-weight: 800;
   color: #764ba2;
  margin-bottom: 10px;
}

.advantage-item h3 {
   font-size: 20px;
    font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}



.advantage-item p {


   font-size: 15px;
   color     :   #666;
   line-height: 1.6;
     }

.cta-section {
         padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
   color: white;
}  

.cta-wrapper {
    max-width: 800px;
    margin  :       0 auto;
} 

.cta-wrapper h2 {
            font-weight     :800;
  margin-bottom: 20px;
   line-height: 1.2;
  font-size: 40px;

}

.cta-wrapper p  
  {
   font-size: 18px;
   margin-bottom: 30px;
  opacity: 0.95;
    line-height: 1.6; 
	
}

.cta-large {
  background: white;
  color: #667eea;
	padding  :      16px 40px;
   font-size: 17px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-large:hover {
        background: #f5f5f5;
}

.contact-section {
    padding: 80px 20px;
               background: white;
}

.contact-form {


   max-width: 600px;
    margin: 50px auto 0;
	display  :       flex;
    flex-direction: column;
    gap: 20px;}

.form-group		{
    display: flex;
         flex-direction: column;
}

.form-input  {
	padding: 14px 16px;
    border: 2px solid #e0e0e0;
	border-radius: 8px;
   -o-transition: all 0.3s ease;
   font-size: 15px;
   font-family: inherit;
   transition: all 0.3s ease;
  background: white;
 color: #2c3e50;
}

.form-input:focus {
  outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder
{
  color: #999;
}

.form-textarea {
  resize: vertical;
   min-height    : 130px;

}

.submit-button {
     padding    :   14px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
      border: none;
        border-radius: 8px;
  font-size: 16px;
    font-weight: 700;
	cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
   margin-top   :       10px;


}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.submit-button:active {

	  transform: translateY(-1px);}

.footer-section {
  background  :      #1a252f;
   color :        white;
    padding: 60px 20px 20px;

}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
   margin-bottom: 40px;
}

.footer-logo-block {
      display: flex;
    align-items :     flex-start;
	}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
    object-fit    :       contain;
}

.footer-contact h3,
.footer-links h3,
.footer-legal h3     {
  font-size: 16px;
  font-weight: 700;
    margin-bottom: 15px;
  color: #667eea;
}

.footer-contact p {
    color: #bbb;
  line-height: 1.8;
   font-size: 14px;
}

.footer-links ul,
.footer-legal ul {
        list-style: none;
}

.footer-links a,
.footer-legal a {
    display: block;
  padding: 8px 0;
  color: #bbb;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
   color    : #667eea;
	padding-left     : 5px;
}

.footer-bottom {
               text-align: center;
   padding-top   :       30px;
    border-top: 1px solid #333;
  font-size: 14px;
  color: #888;
}@media (max-width: 768px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 28px;
    }

    .offer-wrapper {
        gap: 20px;
    }

    .advantages-list {
        gap: 20px;
    }
}.services-hero {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding   :80px 20px;
    text-align: center;
  color: white; 
	


}

.services-hero-content {
    max-width: 900px;
   margin: 0 auto;
}

.services-hero-title {
  font-size: 48px;
   font-weight: 800;
  line-height   :   1.2;
    margin-bottom: 20px;
}

.services-hero-subtitle {
  font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.services-detailed {
	 padding: 80px 20px;

	  background :     white;
}

.services-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
    margin-top: 60px;
	}

.service-detail-card


{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
	align-items: stretch;
  background: white;
	 border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
   border: 1px solid #f0f0f0;
  transition     :   all 0.3s ease;
}

.service-detail-card:hover {

  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
   border-color: #667eea;
  transform: translateY(-5px);

}

.service-card-image {
  width: 100%;
   height: 280px;
    overflow: hidden;
  background   :#f5f5f5;
}

.service-detail-img {
  width: 100%;
   height: 100%;
  object-fit: cover;
   transition:       transform 0.3s ease;
}

.service-detail-card:hover .service-detail-img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 30px;
   display: flex;
   flex-direction: column;
         justify-content: flex-start;

}

.service-detail-title {
    font-size:24px;
    font-weight     :  700;
    color: #1a252f;
    margin-bottom: 15px;
	
}

.service-description {
                    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
   font-size    :  15px;
}

.service-subheading {
    font-size: 14px;
   font-weight: 700;
   color: #2c3e50;
   text-transform:        uppercase;
	letter-spacing: 0.5px;
   margin-bottom: 12px;
   margin-top: 15px;
}

.service-list
	{
         list-style    :       none;
    margin-bottom: 20px;

}

.service-list li {
    line-height: 1.6;
  padding-left: 20px;
   position: relative;
  padding: 8px 0;
    color: #555;
    font-size: 14px;
}

.service-list li::before {
  content: '→';
    position: absolute;
   left: 0;
    color :     #667eea;
  font-weight: bold;
	
}

.service-badge	{


   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding     :       6px 14px;
   border-radius: 50px;
    font-size: 12px;
  font-weight: 700;
    text-transform :       uppercase;
   letter-spacing: 0.3px;
                    margin-top    :auto;
    width :        fit-content;
}@media (max-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-image {
        height: 220px;
    }

    .services-hero-title {
        font-size: 32px;
    }

    .services-hero-subtitle {
        font-size: 16px;
    }
}.service-comparison {
    padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ebf0 100%);
}

.comparison-table-wrapper {
     margin-top :       50px;
   overflow-x: auto;
   border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);

}

.comparison-table {
   width: 100%;
  border-collapse:       collapse;
   background   :        white;
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;


}

.comparison-table th {
    padding: 20px;
  text-align: left;
	font-weight: 700;
   font-size  :    15px;
}

.comparison-table td {
   padding: 18px 20px;
	border-bottom   :        1px solid #e8e8e8;
               font-size: 14px;
  color: #555;
}

.comparison-table tbody tr:hover {
    background :       #f9f9f9;
}

.table-yes {
  color: #2ecc71;
   font-weight: 700;
}@media (max-width: 768px) {
    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 13px;
    }
}.faq-services {
   padding: 80px 20px;
       background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
    margin-top: 50px;
}

.faq-item	{
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
  padding: 30px;
   border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.faq-question {
   font-weight: 700;
  margin-bottom: 12px;
    color: #1a252f;
  font-size: 18px;
}

.faq-answer {
    font-size: 15px;
	  color: #666;
	  line-height: 1.7;
}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
	text-align: center;
  color   :   white;
}

.services-cta-wrapper
{
   max-width: 800px;
    margin: 0 auto;
}

.services-cta-wrapper h2 {
 font-size: 40px;
    font-weight: 800;
   margin-bottom   : 20px;
  line-height: 1.2;
}

.services-cta-wrapper p {
  font-size: 18px;
  margin-bottom: 30px;
    opacity: 0.95;
   line-height: 1.6;
}

.cta-services {
    background: white;
    color: #667eea;
    padding: 16px 40px;
                    font-size: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

}

.cta-services:hover {
    background: #f5f5f5;
}



.thank-you-section


{
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ebf0 100%);
 min-height: 600px;
   display: flex;
   align-items: center;
  justify-content: center;
}

.thank-you-wrapper {
          max-width: 700px;
	background:white;
   padding: 60px 40px;
    border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.thank-you-icon {


    justify-content: center;
   align-items: center;
          margin-bottom:        30px;
	height:    80px;
     display: flex;
     } 

.success-icon {
   width: 80px;
	    height :80px;
	    stroke: #2ecc71;
	   fill: none;
	         stroke-width    :       1.5;
	  animation: successPulse 0.6s ease-out;
}@keyframes successPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-title {

    font-size    :   42px;
	font-weight     : 800;
  color     :    #1a252f;
  margin-bottom: 15px;
  line-height   :    1.2;
	}

.thank-you-subtitle
	{
  font-size: 18px;
        color: #666;
  margin-bottom: 40px;
    line-height: 1.7;
}



.thank-you-info {
  display: grid; 
                    grid-template-columns: 1fr 1fr; 
  gap: 30px; 
   text-align: left; 
      margin-bottom: 40px;
}

.info-block {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%); 
	    padding     :20px; 
	  border-radius: 12px; 
	    border-left     :      4px solid #667eea;
}

.info-block h3 {
          font-size  :   16px;
   font-weight: 700;
   color :#1a252f;
   margin-bottom: 10px;
}

.info-block p {
 font-size: 14px;
	color: #666;
   line-height: 1.6; 
	
}

.thank-you-actions {
	    margin-bottom: 30px;
  gap: 15px;
	 display: grid;
	 grid-template-columns: 1fr 1fr;
     }

.action-link {
	   display   :inline-block;
    padding    :       14px 30px;
    border-radius:  8px;
   font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
    text-align: center;}

.action-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	   color: white;

	  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.action-link:hover {

  transform: translateY(-3px);

  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
	}

.action-link.secondary {

   background: white;
   color: #667eea;
   border: 2px solid #667eea;
	 box-shadow: none;


}

.action-link.secondary:hover {
  background :     #f9f9f9;
	
}@media (max-width: 768px) {
    .thank-you-wrapper {
        padding: 40px 20px;
    }

    .thank-you-title {
        font-size: 32px;
    }

    .thank-you-subtitle {
        font-size: 16px;
    }

    .thank-you-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .thank-you-actions {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}.next-steps {
    padding     : 80px 20px;
    background: white;
}


.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap   :     30px;
    margin-top: 50px;
}

.resource-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
	 padding: 30px;
   border-radius: 12px;
    text-align    :  center;
  transition: all 0.3s ease;
   border: 1px solid #e8e8e8;
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
   border-color     :   #667eea;
}



.resource-icon {
  display: flex;
    justify-content: center;
	margin-bottom: 20px;
    height: 60px;
    align-items: center;
}

.resource-icon-img {
	width: 50px;
         height: 50px;
   stroke: #667eea;
    fill: none;
   stroke-width: 1.5;
}

.resource-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a252f;
   margin-bottom    :  12px;
}

.resource-item p {
    font-size: 14px;
   line-height: 1.6;
   color: #666;
	
}@media (max-width: 768px) {
    .thank-you-section {
        min-height: 500px;
        padding: 60px 20px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}.policySection     {
  padding: 80px 20px;
   background: white;
	
}

.policyContainer
{
  max-width: 900px;
  margin    :0 auto;
    text-align: left;
}

.policy-main-title {
  font-size: 48px;
   font-weight: 800;
    color: #1a252f;
	margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: block;
}

.policy-main-title::after {
  content: '';
  position: absolute;
    bottom: -20px;
   left: 50%;
  transform: translateX(-50%);
   width: 80px;
	height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius     :        2px;
}

.policyContainer h2 {
   font-size: 28px;

	    font-weight: 700;

	   color: #2c3e50;

	                    margin-top: 50px;

	    margin-bottom: 20px;

		line-height:      1.3;

	       position: relative;

	   padding-left: 20px;
}

.policyContainer h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
      width: 4px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.policyContainer p {


	color: #555;
   margin-bottom: 20px;
	 line-height: 1.8;
  font-size    :        16px;
  text-align: justify;


}

.policyContainer p:last-of-type {
     margin-bottom: 0;
	}

.policyContainer strong {
  color  : #1a252f;
   font-weight: 700;
	}


.policyContainer a {
  color: #667eea;
    text-decoration: underline;
                    transition: color 0.3s ease;
}

.policyContainer a:hover     {
   color: #764ba2; 
	
}

.policyContainer ul,
.policyContainer ol {
    margin-left: 20px;
   margin-bottom:     20px;
}  

.policyContainer li {
    margin-bottom:   12px;

	  line-height :      1.8;

	    color     :       #555;
}@media (max-width: 1024px) {
    .policyContainer {
        max-width: 95%;
    }

    .policy-main-title {
        font-size: 40px;
    }

    .policyContainer h2 {
        font-size: 24px;
    }
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 20px;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policy-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .policy-main-title::after {
        bottom: -15px;
        width: 60px;
    }

    .policyContainer h2 {
        font-size: 20px;
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 15px;
    }

    .policy-main-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 18px;
        margin-top: 30px;
    }

    .policyContainer p {
        font-size: 14px;
        text-align: left;
    }
}

@media print {
    .policySection {
        background: white;
        padding: 0;
    }

    .policy-main-title {
        page-break-after: avoid;
    }

    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}