* {
   margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
   color:      #333;
	}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.main-navigation  
  {
   position: fixed;
	 top: 0;
   width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
  transition: all 0.3s ease;
}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {


  max-width: 1200px;
	margin: 0 auto;
    padding: 0 20px;
 display: flex;
	justify-content: space-between;
       align-items: center;
   height: 70px;

}

.site-logo {
    height   :  45px;
   width: auto;
}

.nav-menu {

    display    :flex;
  gap: 30px;

}

.nav-link {
    text-decoration: none;

	    color: #333;

	   font-weight: 500;

	    transition: color 0.3s ease;

	    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5aa0;
}

.nav-link::after {
  content: '';
        position: absolute;
   bottom: -5px;
  left: 0;
   width: 0;
    height: 2px;
   background: #2c5aa0;
   transition  :  width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after     {
  width: 100%;
}

.burger-menu {
    display: none;
   flex-direction   :column;
  cursor :  pointer;
   gap: 4px;
}

.burger-menu span {
    width: 25px;
   height: 3px;
   background: #333;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-area {
   padding: 120px 0 80px;

  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
}

.hero-text h1 {

   font-size  :     3.2em;
       color: #1a365d;
      line-height  :     1.2;
          margin-bottom: 20px;
    font-weight: 700;}

.hero-subtitle		{
    font-size     :    1.2em;
	 color: #4a5568;
  margin-bottom     :30px;
     }

.hero-buttons {
   display  :flex;
  gap  :    20px;
}

.btn-primary, .btn-secondary   {
   transition: all 0.3s ease;
  padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
}

.btn-primary {
   background: #2c5aa0;
   color: white;
	}

.btn-primary:hover {
    background: #1e3a5f;
  transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
  border: 2px solid #2c5aa0;
}

.btn-secondary:hover {
    background    :        #2c5aa0;
      color: white;
}

.hero-image img {
    width: 100%; 
	  height     :auto; 
	    border-radius   :      15px; 
	  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-section


{
          padding: 80px 0; 
   background :   white;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #1a365d;
    margin-bottom: 60px; 
	
}

.services-grid {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
   background: #f8f9fa; 
	    border-radius: 15px; 
	   padding: 30px; 
	  text-align: center; 
	   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width    :  100%;
  height: 200px;
    object-fit: cover;
  border-radius: 10px;
  margin-bottom:   20px;
}

.service-card h3 {
    font-size: 1.5em;
   color: #1a365d;
    margin-bottom: 15px;
}

.service-card p {
  color: #4a5568;
    line-height:        1.6;
}

.about-preview {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.about-text h2 {
   font-size: 2.5em;
   color: #1a365d;
  margin-bottom: 30px;
}

.about-text p {
   font-size     :  1.1em;
	 color: #4a5568;
    margin-bottom :      20px;
}

.learn-more-btn {
   display: inline-block;
   background :   #2c5aa0;
  color: white;
   padding: 12px 25px;
	text-decoration: none;
  border-radius: 6px;
	font-weight: 600;
   margin-top: 20px;
   transition: background 0.3s ease;
}

.learn-more-btn:hover {
  background: #1e3a5f;
}

.about-visual img
{
  width     : 100%;
       border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}  

.cta-section {
                    padding: 80px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
     color: white;
    text-align: center;
}

.cta-content h2
{
	font-size   :    2.5em;
   margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2em;
	 margin-bottom: 30px;
   opacity: 0.9;
}

.cta-button {
    display     :      inline-block;
    background: white;
  color: #2c5aa0;
   padding: 18px 35px;
    text-decoration: none;
   border-radius :       8px;
       font-weight: 700;
    font-size :     1.1em;
   transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 80px 0;
  background    :      white;
}

.contact-section h2 {
	 text-align: center;
  font-size: 2.5em;
  color: #1a365d;
  margin-bottom: 60px;
}

.contact-layout {
  display   :        grid;
   grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h3 {

  color: #1a365d;
   margin-bottom: 30px;
  font-size: 1.5em;
}

.info-item {
   margin-bottom    :  25px;
}

.info-item strong {
  color: #2c5aa0;
    display: block;
  margin-bottom: 5px;
}



.contact-form {
   background: #f8f9fa;
    padding :  40px;
  border-radius: 15px;
}

.form-group {
     margin-bottom :        25px;
}

.form-group label {


  display:      block;
   margin-bottom: 8px;
  color: #1a365d;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea     {
   width: 100%;
	 padding: 12px 15px;
  border : 2px solid #e2e8f0;
   border-radius :   8px;
   font-size: 16px;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

   outline: none;
          border-color: #2c5aa0;


}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
}

.submit-btn {
  background: #2c5aa0;
  color: white;
  padding: 15px 30px;
	border: none;
  border-radius: 8px;
   font-size: 16px;
	 font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
    width: 100%;

}

.submit-btn:hover {
  background: #1e3a5f;
} 

.site-footer {
    background: #1a365d;
  color: white;
	padding: 60px 0 20px;
}

.footer-content {
   display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 40px;
	margin-bottom: 40px;
}

.footer-logo     {

	   height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 20px;

}

.footer-brand p {
  color: #cbd5e0;
  line-height: 1.6;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4     {
   margin-bottom: 20px;
    color: white;
}

.footer-links ul,
.footer-legal ul {
   list-style    :     none;
}

.footer-links ul li,
.footer-legal ul li {
	 margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
	color  :   #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover   {
               color: white;
}

.footer-contact p {
    color: #cbd5e0;
   margin-bottom: 10px;
}

.footer-bottom {
   border-top: 1px solid #2d3748;
    padding-top: 20px;
  text-align: center;
    color: #cbd5e0;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.mobile-active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2em;
    }
    
    .services-section h2,
    .about-text h2,
    .contact-section h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}.about-hero {
		padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 100%);
  color: white;
  text-align: center;


}

.about-hero h1 {
  font-size: 3em;
    font-weight: 700;
   margin-bottom: 20px;
	
}

.hero-description
{
    max-width: 800px;
   margin: 0 auto;
  font-size: 1.3em;
    opacity: 0.9;

}

.mission-section {
  padding: 80px 0;
    background: white;
}

.mission-content {
	display: grid;
   grid-template-columns    :  1fr 1fr;
  gap: 60px;
   align-items: center;
}

.mission-text h2 {
	    font-size: 2.5em; 
		color: #1a365d; 
	    margin-bottom  :30px;


}

.mission-text p {
      font-size: 1.1em;
    color: #4a5568;
       margin-bottom: 20px;
   line-height: 1.7;
}

.mission-visual img {
    width: 100%;
			border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-areas {
  padding: 80px 0;
    background  :  #f8f9fa;
}

.expertise-areas h2 {
    margin-bottom: 60px;
    color    :       #1a365d;
    font-size:     2.5em;
    text-align: center;
}

.expertise-grid {
   display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 30px;
}

.expertise-item {
   background: white;
  padding: 30px;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition :transform 0.3s ease;
}

.expertise-item:hover
	{
  transform: translateY(-5px);
} 

.expertise-item h3 {
	 color: #2c5aa0;
    font-size: 1.4em;
   margin-bottom: 15px;
}

.expertise-item p     {
   color  :  #4a5568;
  line-height: 1.6;
}

.team-section {
  padding     :     80px 0;
  background: white;
}

.team-section h2		{
  text-align: center;
    font-size: 2.5em;
    color: #1a365d;
  margin-bottom: 60px;
}

.approach-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: flex-start;
}

.approach-text h3

{
   font-size: 1.8em;
   color: #1a365d;
   margin-bottom: 20px;
}

.approach-text > p {
    font-size    :    1.1em;
    color: #4a5568;
    margin-bottom: 30px;
   line-height: 1.7;
	
} 

.methodology-steps {
    display: flex;
   flex-direction     :        column;
    gap: 25px;
}

.method-step {
    padding: 20px;
 background     :#f8f9fa;
  border-radius: 10px;
    border-left    :      4px solid #2c5aa0;
}

.method-step h4 {
	color     :    #1a365d;
    margin-bottom: 10px;
                    font-size: 1.2em;
}

.method-step p {
   color: #4a5568;
  line-height: 1.6;
}

.approach-visual img {
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.values-section h2 {
	text-align: center;
   font-size: 2.5em;
   color: #1a365d;
    margin-bottom: 60px;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   :   30px;
}

.value-card {
   background: white;
		padding: 35px 25px;
    border-radius: 15px;
 text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	 transition: all 0.3s ease;
	
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
   color: #2c5aa0;
  font-size     :      1.5em;
  margin-bottom :    20px;
}

.value-card p {
  color: #4a5568; 
	  line-height: 1.6;
     }

.results-section {
  padding:    80px 0;
  background: white;
}

.results-content {
    display: grid; 
	   grid-template-columns: 1fr 1fr; 
	    gap    : 60px; 
	   align-items   :     center;
}

.results-text h2 {
	               font-size: 2.5em;
  color: #1a365d;
    margin-bottom: 30px;
     }

.results-text p    {
	font-size: 1.1em;
   color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.7;
}

.stats-container {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap :  30px;
   margin-top  :    40px;
}

.stat-item  {
	  text-align: center;
  padding:      20px;
    background: #f8f9fa;
   border-radius: 10px;}

.stat-number {
	display: block;
   font-size: 2.5em;
   font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 8px;
}

.stat-label {
    color: #4a5568;

 font-weight: 600;
}

.results-visual img
{


   width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);


}

.about-cta {
    padding: 80px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
  text-align: center;
}

.about-cta h2 {
   font-size: 2.5em; 
   margin-bottom: 20px;
}

.about-cta p {
     font-size: 1.2em;
                    margin-bottom: 30px;
    opacity: 0.9;
    max-width     :      800px;
    margin-left: auto;
               margin-right: auto;

}

.thankyou-hero {
   padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
               text-align: center;
}

.thankyou-content h1 {

   font-size: 3em;
	color: #1a365d;
    margin-bottom: 20px;
   font-weight: 700; 
	}

.confirmation-text {
  font-size: 1.2em;

	  color   :       #4a5568;

	   max-width: 600px;

	    margin: 0 auto 60px;

	  line-height: 1.6;
}

.success-icon     {
  margin-bottom: 40px;

}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
       display: block;
   stroke-width: 3;
    stroke: #22c55e;
  stroke-miterlimit :        10;
    margin: 0 auto;
   position: relative;
  animation: checkmark-fill 0.4s ease-in-out 0.4s forwards, checkmark-scale 0.3s ease-in-out 0.9s both;
}  

.checkmark-circle {

  stroke-dasharray: 166;
    stroke-dashoffset: 166;
   stroke-width: 3;
	 stroke: #22c55e;
    fill: none;
  animation: checkmark-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    border-radius: 50%;
                    width:       80px;
   height: 80px;
         position: absolute;
	border: 3px solid #22c55e;
  box-sizing    : border-box;
	}

.checkmark-stem,
.checkmark-kick {
  height: 3px;
 border-radius: 2px;
    position: absolute;
  background: #22c55e; 

}

.checkmark-stem {
    width: 15px;
   top: 38px;
  left: 30px;
  transform: rotate(45deg);
   animation: checkmark-stem 0.3s ease-in-out 0.6s forwards;
   transform-origin: 0 0;
    opacity: 0;
}

.checkmark-kick {
    width: 25px;
    top:      45px;
    left: 24px;
  transform: rotate(-45deg);
  animation: checkmark-kick 0.3s ease-in-out 0.7s forwards;
  transform-origin   :     0 0;
  opacity: 0;
}
@keyframes checkmark-stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark-stem {
    100% {
        opacity: 1;
    }
}

@keyframes checkmark-kick {
    100% {
        opacity: 1;
    }
}

@keyframes checkmark-scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}.next-steps
{
    margin-top: 60px;
}

.next-steps h2 {
   font-size: 2.2em;
	color: #1a365d;
  margin-bottom: 40px;


}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
	 margin-top: 40px;
}

.step-item {
    background: white;
    padding: 30px;
   border-radius   : 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
   position: relative;
}

.step-number {
    display: inline-block;
	  width    :       50px;
	   height: 50px;
	    background: #2c5aa0;
	  color: white;
	    border-radius: 50%;
	  font-size: 1.5em;
	   font-weight: 700;
	  line-height: 50px;
	  margin-bottom: 20px;
}

.step-item h3 {
    color: #1a365d;
   font-size   :   1.3em;
   margin-bottom: 15px;
}

.step-item p {
    color: #4a5568;

	    line-height: 1.6;
}

.info-section 
 {
        padding: 80px 0;
      background: white;
}

.info-content {
    display: grid;
               grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-text h2 {
	 font-size  :   2.2em;
        color: #1a365d;
    margin-bottom: 20px;
}

.info-text > p {
  font-size: 1.1em;
   color: #4a5568;
   margin-bottom: 30px;
	line-height: 1.7;
}

.preparation-tips h3 {
  color: #2c5aa0;
    font-size: 1.4em;
   margin-bottom: 20px;
}

.preparation-tips ul {

	  list-style: none;
	padding: 0;
     }

.preparation-tips li {
	padding:  10px 0;
      padding-left: 25px;
  color: #4a5568;
    position:        relative;
	line-height: 1.6;
}

.preparation-tips li::before {
  content: "✓";
    position: absolute;
   left: 0;
   color: #22c55e;
   font-weight: bold;
}

.info-visual img {
   width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-section {
   padding: 80px 0;
    background    :       #f8f9fa; 
	
}

.contact-info-section h2 {
     text-align: center;
   font-size: 2.2em;
    color: #1a365d;
 margin-bottom: 50px;


}

.urgent-contact  {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap :    60px;
}

.contact-details h3,
.business-hours h3 {
  color: #2c5aa0;
   	 font-size: 1.5em;
      margin-bottom   :    20px;
}

.contact-details p,
.business-hours p {
  color: #4a5568;
  line-height: 1.7;
	 margin-bottom: 20px;
}

.contact-methods {
	margin-top   :30px;
  display: flex;
    gap: 40px;

}

.contact-method h4 {
   color: #1a365d;
  margin-bottom: 10px;
}

.contact-method p {
   color: #4a5568;
   font-weight :600;
}

.return-nav {
     padding   :     60px 0;
  background: white;
         text-align: center;
     }

.nav-buttons {
    justify-content: center;
  display :      flex;
  gap: 20px;
}

.nav-btn {
	   padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
    transition: all 0.3s ease;

}

.nav-btn.primary {
   background: #2c5aa0;
  color: white;
}

.nav-btn.primary:hover {
  background: #1e3a5f;
  transform: translateY(-2px);
}

.nav-btn.secondary {
  background: transparent;
  color:        #2c5aa0;
                    border :     2px solid #2c5aa0;

}

.nav-btn.secondary:hover {
                    background: #2c5aa0;
   color     :      white;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2em;
    }
    
    .hero-description {
        font-size: 1.1em;
    }
    
    .mission-content,
    .approach-content,
    .results-content,
    .info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .urgent-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.2em;
    }
    
    .mission-text h2,
    .team-section h2,
    .expertise-areas h2,
    .values-section h2,
    .results-text h2,
    .about-cta h2 {
        font-size: 2em;
    }
    
    .methodology-steps {
        gap: 20px;
    }
    
    .method-step {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 1.8em;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
        line-height: 40px;
    }
}.cookies-section,
.privacy-section {
   padding: 100px 0;
   background: #f8f9fa;
}



.cookies-section h1,
.privacy-section h1 {
       text-align  : center;
  margin-bottom: 40px;
  font-size: 2.5em;
   color: #1a365d;
     }

.policy-content {
    max-width :      800px;
	margin: 0 auto;
	line-height: 1.8;
	 color: #4a5568;
}

.policy-content h2 {
 font-size: 1.8em;
   color:    #1a365d;
    margin: 30px 0 15px;
}

.policy-content p {
		margin-bottom: 20px;

}

.policy-content ul {
   list-style: disc;
    margin: 20px 0;
  padding-left: 30px;
}

.policy-content ul li {
  margin-bottom: 10px;
}