* {
    margin     :    0;
  padding: 0px;
  box-sizing: border-box;
}

body
{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
    color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
    padding   :  0 20px;
}

.top-navigation {
  position: fixed;
    top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
    transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.top-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}  

.nav-wrapper     {
    max-width: 1200px;
  margin:0 auto;
  display: flex;
    justify-content: space-between;
  align-items:center;
  padding: 15px 20px;
}

.brand-logo {
    height: 45px;
  width: auto;
}

.nav-links {
   display: flex;
   list-style: none;
   gap: 30px;
}

.nav-links a {
	text-decoration: none;
   color: #333;
    font-weight : 500;
   transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position   :      absolute;
   bottom: -5px;
   left: 0;
   width: 0;
    height: 2px;
    background: #2c5aa0;
   transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #2c5aa0;
}

.burger-menu {

   display: none;
   flex-direction: column;
   cursor: pointer;
  padding: 5px;
     }

.burger-menu span {
   width: 25px;
          height   :    3px;
  background: #333;
   margin: 3px 0;
    transition: all 0.3s ease;
}

.burger-menu.burger-active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.burger-active span:nth-child(2) {
		 opacity    : 0;
}

.burger-menu.burger-active span:nth-child(3) {
     transform: rotate(45deg) translate(-5px, -6px);
     }

.hero-area {
   padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   min-height: 80vh;
    display :   flex;
  align-items: center; 
	
}

.hero-content {
	max-width: 1200px;
   margin: 0 auto;
   display: grid;
               grid-template-columns: 1fr 1fr;
   gap: 60px;
         align-items  :  center;
   padding: 0 20px;
}

.hero-text h1 {

	   font-size: 3.2rem;
	 font-weight: 700;
          margin-bottom: 20px;
    line-height: 1.2;
     }

.hero-text p {
	  font-size   :    1.3rem;

               margin-bottom: 30px;

    opacity: 0.9;

   line-height: 1.5;}

.hero-buttons

{
    display: flex;
   gap: 20px;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
       padding: 15px 30px;
    border-radius: 8px;
   text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
  border: 2px solid transparent;
    display: inline-block;
}

.primary-btn {
	background: #ff6b6b;
   color: white;
}

.primary-btn:hover {
	background: #ff5252;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
    color: white;
      border-color     : white;
}

.secondary-btn:hover {
  background: white;
  color: #667eea;
}

.hero-image img

{
   width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.features-grid {

	  padding: 100px 0;
   background:  white;
     }

.features-grid h2 {
  text-align: center;
  font-size: 2.8rem;
   margin-bottom: 60px;
  color: #2c3e50;


}

.features-row {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-card {
   background: #f8f9fa;
    border-radius: 15px;
  padding: 30px;
   text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.feature-card img {
   width: 100%;
    height:      200px;
	object-fit: cover;
          border-radius: 10px;
    margin-bottom: 25px;
}

.feature-card h3     {
   font-size: 1.5rem;
   margin-bottom: 15px;
  color: #2c3e50;
}

.feature-card p {
   	 color: #666;
    line-height: 1.6;
	}

.cta-section {
  background: linear-gradient(45deg, #2c5aa0, #1e3c72);
   color: white;
    padding: 80px 0;
      text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;

	  margin-bottom: 20px;
	
}

.cta-content p {
    font-size: 1.2rem;
   margin-bottom: 40px;
    opacity: 0.9;
   max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-stats {
	    flex-wrap: wrap;
  gap  :   60px;
  display: flex;
	 justify-content  :center;
    margin-bottom: 40px;}

.stat-item {
  text-align: center;
}

.stat-number {
    display :  block;
	font-size: 3rem;
  font-weight: bold;
   color: #ff6b6b;
}  

.stat-label {

	  font-size: 1.1rem;
    opacity: 0.8;
	}

.cta-button {
    background: #ff6b6b;
    color:       white;
  padding: 18px 40px;
         border-radius  :        8px;
  text-decoration: none;
    font-weight: 600;
    font-size   :      1.1rem;
    transition: all 0.3s ease;
               display: inline-block; 

}

.cta-button:hover {
	background: #ff5252;
  transform: translateY(-3px);
}

.training-section {
      padding: 100px 0;
    background: #f8f9fa;
}

.training-content	{

    display: grid;
   grid-template-columns: 1fr 1fr;
               gap: 60px;
    align-items: center;


}

.training-text h2 {
   font-size: 2.5rem;
  margin-bottom: 25px;
         color: #2c3e50;
}

.training-text p {
    font-size: 1.1rem;
  margin-bottom: 30px;
   color: #666;
   line-height     :1.7;
}

.training-benefits {

	    list-style: none;
   margin-top: 25px;
}

.training-benefits li {
       padding: 10px 0;
  position     :relative;
  padding-left: 25px;
  color: #555; 

}

.training-benefits li::before {
  content: '✓';
     position: absolute;
    left: 0;
   color: #28a745;
  font-weight: bold;
}

.training-image img {
   width: 100%;
               border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-section {
   padding: 100px 0;
  background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items     :    start;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
  color   :    #2c3e50;
}

.contact-info p {
    font-size: 1.1rem;
  margin-bottom: 30px;
    color: #666;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
   margin-bottom: 15px;
   font-size: 1rem;
   color: #555;
}

.contact-item strong {
    color: #2c5aa0;
}

.contact-form {
    background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {

	  margin-bottom: 25px;
     }

.form-group input,
.form-group select,
.form-group textarea {


  width: 100%;
   padding: 15px;
      border: 2px solid #e1e1e1;
   border-radius: 8px;
        font-size :        1rem;
    transition: border-color 0.3s ease;
	background: white;
	} 

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
     outline: none;
   border-color: #2c5aa0;
}

.form-group textarea {
   resize    :       vertical; 
		 min-height: 120px;
}

.submit-btn
	{
  width: 100%;
    background: #2c5aa0;
  color: white;
  padding: 18px;
   border: none;
    border-radius: 8px;
   font-size: 1.1rem;
  font-weight: 600;
   cursor: pointer;
  transition :      background 0.3s ease;
}

.submit-btn:hover {
		 background: #1e3c72;
}

.site-footer {
   background: #2c3e50;
          color: white;
  padding: 60px 0 20px;
}

.footer-content {
	display :        grid;
	grid-template-columns: 1fr 2fr;
    gap  :        60px;
    margin-bottom: 40px;
}

.footer-brand img {
   height: 50px;
    margin-bottom: 20px;
}

.footer-info {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 30px;
}

.footer-section h4
	{
    margin-bottom: 15px;
               color: #ecf0f1;
	font-size: 1.1rem;
}

.footer-section p {
    color: #bdc3c7; 
	  line-height: 1.6; 
	   margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
   margin-bottom: 8px;
}


.footer-section a {
     color: #bdc3c7;
   text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
   color: white;
}

.footer-bottom {
  border-top: 1px solid #34495e;
   	padding-top: 20px;
      text-align: center;
       color: #95a5a6;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.nav-active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        gap: 40px;
    }
    
    .training-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .features-grid h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
}.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 140px 0 80px;
  text-align: center;
}  

.header-content h1 {
  font-size: 3rem;
  font-weight: 700;
   margin-bottom: 15px;
}


.header-subtitle {
   font-size    :      1.3rem;
   opacity    :     0.9;
    max-width: 600px;
        margin: 0 auto;
}

.nav-links a.active

{
    color: #2c5aa0;
}

.nav-links a.active::after {
   width: 100%;
}

.company-story {
   padding: 100px 0;
	  background: white;
}

.story-grid {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap:     60px;
    align-items: center;
}


.story-content h2 {
   font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-content p {
   font-size: 1.1rem;
   line-height: 1.7;
    margin-bottom    :        25px;
  color: #555;
}

.story-image img {

	   width: 100%; 
	    border-radius: 15px; 
	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section {
      padding: 100px 0;
        background:    #f8f9fa;
	}

.section-title {
  text-align: center;
    font-size: 2.8rem;
   margin-bottom:       60px;
                    color: #2c3e50;
}

.values-grid


{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
   background: white;
  padding: 40px 30px;
   border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {


   margin-bottom: 25px; 



}

.icon-circle {
	width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius     :  50%;
	display :        flex;
                    align-items: center;
  justify-content: center;
    color    :   white;
    font-size:      1.5rem;
  font-weight: bold;
  margin: 0 auto;
}

.value-card h3 {
  font-size: 1.4rem;
   margin-bottom: 15px;
   color: #2c3e50;
}  

.value-card p 
 {
  color: #666;
  line-height: 1.6;
}

.methodology-section {
  padding    :      100px 0;
   background: white;
}

.methodology-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
                    gap: 60px;
  align-items: start; 

}

.methodology-text h2  
  {
  font-size: 2.5rem;
  margin-bottom: 25px;
   color   :     #2c3e50;
}

.methodology-text p {
     font-size: 1.1rem; 
    margin-bottom: 40px; 
	color: #555; 
  line-height: 1.7;
}

.methodology-steps


{
   space-y: 25px;
}

.method-step {
  display: flex;
    align-items: flex-start;
          gap: 20px;
  margin-bottom     :  30px;
	padding: 20px;
   background: #f8f9fa;
  border-radius :      10px;
                    border-left: 4px solid #2c5aa0;
}

.step-letter {
	    width: 50px;
        height: 50px;
    background: #2c5aa0;
  color: white;
    border-radius: 50%;
  display: flex;
    align-items: center;
		justify-content: center;
  font-size: 1.3rem;
   font-weight  :   bold;
    flex-shrink: 0;
}

.step-content h4 {
   color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.2rem; 
	
}

.step-content p {
  color   :  #666;
    margin: 0;
}

.methodology-image img {

    width: 100%;
	border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.experience-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c5aa0, #1e3c72);
	color: white;
   text-align     :     center;
}

.experience-section .section-title {
   color: white;
    margin-bottom: 60px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.experience-item {
  background: rgba(255,255,255,0.1);
   padding: 40px 20px;
    border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.experience-number {
   font-size: 3.5rem;
               font-weight :     bold;
   color: #ff6b6b;
   margin-bottom: 15px;
}

.experience-item h3 {
     font-size: 1.3rem;
   margin-bottom: 10px;
	} 

.experience-item p {
   opacity: 0.9;
    line-height: 1.5;
}

.approach-section {
    padding: 100px 0;
  background: #f8f9fa;
}

.approach-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.approach-text h2 {
                    font-size: 2.5rem;
   margin-bottom: 30px;
  color: #2c3e50;
}

.approach-reasons {
          margin-top: 30px;
}

.reason-item {
  margin-bottom: 30px;
   padding: 25px;
	 background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.reason-item h4 {
    font-size: 1.3rem;
   margin-bottom: 12px;
    color: #2c5aa0;


}

.reason-item p {
  color: #666;
    line-height: 1.6;
  margin     :        0;
}

.approach-image img {
			width    :     100%;
    border-radius :       15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-section {
  padding: 100px 0;
  background     :white;
}


.mission-content {
   text-align: center;
   max-width: 900px;
   margin: 0 auto;
}

.mission-content h2 {
    font-size: 2.8rem;
	  margin-bottom: 30px;
	               color: #2c3e50;
}

.mission-statement {
  font-size: 1.3rem; 
	    line-height: 1.7; 
	  margin-bottom: 60px; 
	    color: #555; 
	    font-style: italic;
}

.mission-goals {
	display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap :     40px;
    margin-top: 50px;
}

.goal-item {
   background: #f8f9fa;
       padding: 30px;
    border-radius: 15px;
       text-align   :     left;
}

.goal-item h4 {
  font-size: 1.3rem;
   margin-bottom    :      15px;
        color:  #2c5aa0;
}

.goal-item p


{
		color: #666;
  line-height: 1.6;
    margin: 0;
}

.thankyou-section {
    min-height : 100vh;

						padding: 120px 0 80px;

	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-section .container {
  display  :   grid; 
  grid-template-columns: 2fr 1fr; 
        gap: 60px; 
   align-items: start;
}

.thankyou-content {
                    background: white;
  padding  : 60px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
   text-align: center;
}  

.success-icon {
   margin-bottom: 30px;
}

.checkmark-circle {
    width: 100px;
   height: 100px;
   background: #28a745;
   border-radius   :    50%;
    display: flex;
   align-items: center;
    justify-content: center;
	margin: 0 auto;
  position: relative;
  animation: checkmarkScale 0.6s ease-in-out;
}@keyframes checkmarkScale {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.checkmark{

    width: 30px;
               height: 15px;
    border: 4px solid white;
    border-top: none;
  border-right: none;
  transform: rotate(-45deg);
	}

.thankyou-content h1 {
    font-size: 2.8rem;
 margin-bottom: 25px;
    color: #2c3e50;
}

.thankyou-message {
  margin-bottom: 50px;
    line-height: 1.7;
   font-size: 1.2rem;
    color: #555;
}

.next-steps {
    margin-bottom: 50px; 
	    text-align: left;
}

.next-steps h2 {
   margin-bottom :        30px;
  font-size: 2rem;
	text-align: center;
   color: #2c3e50;
}

.steps-grid


{
    display: grid;
   gap: 25px;
}

.step-item {
  background: #f8f9fa;
	 border-left: 4px solid #2c5aa0;
          gap: 20px;
  padding: 20px;
    align-items: center;
	display: flex;
   border-radius: 12px;
}

.step-number {

	  width: 40px;

   height: 40px;

               background    :       #2c5aa0;

    color: white;

     border-radius   :        50%;

       display: flex;

    align-items: center;

	 justify-content: center;

   font-weight: bold;

  flex-shrink: 0;


}

.step-content h3 {
  font-size: 1.2rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.step-content p {
   color: #666;
    margin: 0;
}

.contact-info-box {
	 background: #f8f9fa;
   padding: 30px;
   border-radius: 12px;
   margin-bottom  :40px;
  text-align: left;
}

.contact-info-box h3 {
    font-size: 1.4rem;
  margin-bottom: 20px;
   color: #2c5aa0;
    text-align     :center;
}

.contact-row {
   margin-bottom: 12px;
    color: #555;
}

.contact-row strong
{
    color     :#2c3e50;
}

.quick-tips {
   background: #e8f4f8;
  padding: 30px;
    border-radius     :     12px;
    margin-bottom :    40px;
   text-align: left;
}

.quick-tips h3 {
          font-size: 1.4rem;
    margin-bottom: 15px;
	 color: #2c5aa0;
  text-align: center;
}

.quick-tips p{
   margin-bottom: 20px;
    color: #555;
}

.tips-list {
  list-style: none;
    margin: 0;
	 padding: 0;


}

.tips-list li {
                    margin-bottom: 10px;
   padding-left: 25px;
   position    :        relative;
   color: #555;
}

.tips-list li::before {
  content: '▶';
  position: absolute;
	 left: 0;
  color: #2c5aa0;
  font-size: 0.8rem;
}

.thankyou-actions {
  display: flex;
   gap: 20px;
	justify-content: center;
          flex-wrap: wrap;
}

.thankyou-sidebar 
 {
   background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
   padding: 40px;
  height: fit-content;
   position: sticky;
     top :    20px;
}

.sidebar-content img {
	width: 100%;
   border-radius: 12px;
  margin-bottom: 30px;
}

.testimonial-box {
  background: #f8f9fa;
  padding: 25px;
    border-radius: 12px;
                    margin-bottom: 25px;
        border-left: 4px solid #28a745;
}

.testimonial-box h4 {
  margin-bottom: 15px;
   color: #2c5aa0;
    font-size: 1.1rem;
}

.testimonial-box blockquote		{
	 font-style: italic; 
	   margin-bottom: 15px; 
	         color: #555; 
	   line-height: 1.6;
}

.testimonial-box cite

{
   color :   #666;
    font-size: 0.9rem;
}

.guarantee-box {
  background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 25px;
   border-radius: 12px;
   text-align: center;
}

.guarantee-box h4 {

  margin-bottom: 15px;
       font-size: 1.1rem;


}

.guarantee-box p {
   margin: 0;
   line-height: 1.6;
}@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .story-grid,
    .methodology-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid,
    .experience-grid,
    .mission-goals {
        grid-template-columns: 1fr;
    }
    
    .thankyou-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-content {
        padding: 40px 30px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 200px;
        text-align: center;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .reason-item {
        padding: 20px;
    }
    
    .contact-info-box,
    .quick-tips {
        padding: 25px;
    }
    
    .experience-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .story-content h2,
    .methodology-text h2,
    .approach-text h2 {
        font-size: 2rem;
    }
    
    .mission-content h2 {
        font-size: 2.2rem;
    }
    
    .mission-statement {
        font-size: 1.1rem;
    }
    
    .thankyou-sidebar {
        padding: 25px;
    }
    
    .value-card,
    .experience-item {
        padding: 25px 20px;
    }
}.cookies-section,
.privacy-section {
    padding: 120px 0;
    background: white;
}

.cookies-section h1,
.privacy-section h1 {
    font-size: 2.8rem; 
	     color: #2c3e50; 
	   margin-bottom: 30px; 
	   text-align: center;
}

.cookies-section h2,
.privacy-section h2 {

	  font-size: 1.8rem;
    color: #2c3e50;
    margin: 30px 0 15px;


}

.cookies-section p,
.privacy-section p {
    font-size: 1.1rem;
    color: #666;
  line-height : 1.7;
    margin-bottom: 20px;
}

.cookies-section ul,
.privacy-section ul {
               list-style: none;
   margin-bottom: 20px;
}

.cookies-section ul li,
.privacy-section ul li {
  position: relative;

  padding-left: 25px;

    font-size   :     1.1rem;

	color: #555;

    margin-bottom: 10px;
}

.cookies-section ul li::before,
.privacy-section ul li::before {
  content: '•';
   position: absolute;
  left: 0;
  color  :     #2c5aa0;
	 font-size: 1.4rem;
}