*


{
		 margin: 0;
    padding: 0;
       box-sizing :  border-box;
}

body 
 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
} 

.content-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);
    z-index: 1000;
	padding: 15px 0;
  border-bottom: 1px solid #ecf0f1;
}

.nav-wrapper {
  max-width: 1200px;
    margin: 0 auto;
   display: flex;
    justify-content: space-between;
    align-items: center;
  padding: 0 20px;
}

.nav-logo {
    height: 45px;
   width   :   auto;
}

.nav-menu {
   display: flex;
   list-style    :        none;
	gap: 35px;
}

.nav-menu a {
    text-decoration: none;
		color: #2c3e50;
   font-weight: 500;
   transition: color 0.3s ease;
    font-size: 16px;
}

.nav-menu a:hover {
  color: #e67e22;
}

.burger-menu {
   display: none;
   flex-direction: column;
  cursor: pointer;
    gap: 4px;
}

.burger-menu span {
  width: 25px;
    height: 3px;
   background: #2c3e50;
  transition     :      0.3s;
}

.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%);
   min-height   : 100vh;
					display: flex;
   align-items: center;
	}

.hero-area .content-container


{
   display: grid;
     grid-template-columns     :       1fr 1fr;
	gap: 60px;
   align-items: center;
}

.hero-text h1 {
    font-size: 3.2em;
  font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
  line-height: 1.2;
}

.hero-subtitle {
	 font-size: 1.3em;
  color: #5d6d7e;
   margin-bottom: 35px;
   line-height   : 1.5;
	
}

.hero-actions {
  display: flex;
    gap: 20px;
   flex-wrap :  wrap;
}

.primary-button, .secondary-button {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight  : 600;
  transition    : all 0.3s ease;
    display: inline-block;
}

.primary-button {
    background: #e67e22;
    color: white;
}

.primary-button:hover {
	background    :       #d35400;
  -ms-transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.secondary-button {
                    background: transparent;
  color: #e67e22;
    border: 2px solid #e67e22;
}

.secondary-button:hover {


	color: white;
    background: #e67e22;
}

.hero-visual img {
   width: 100%;

  height: auto;

  border-radius: 15px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefits-showcase {
  padding: 100px 0;
    background: white;
}

.benefits-showcase h2 {
		 font-size   :    2.5em;
  color: #2c3e50;
  margin-bottom: 60px;
   text-align: center;
}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
	
}

.benefit-card {
  background:#f8f9fa;
    padding: 40px;
  border-radius: 12px;
    text-align: center;
   transition: transform 0.3s ease;
               opacity: 0;
  transform: translateY(20px);
}

.benefit-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
	 font-size: 1.5em;
	margin-bottom: 20px;
     color:#e67e22;
}

.services-overview {
   padding: 100px 0;
    background     :        #f8f9fa;
}

.services-overview h2 {
  text-align: center;
	   font-size: 2.5em;
	  margin-bottom: 70px;
	   color: #2c3e50; 

} 

.services-layout {
	display: flex;
        flex-direction:        column;
					gap: 60px;
}  

.service-item {
  display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
   align-items: center;
   opacity: 0;
  transform: translateX(-30px);
   transition: all 0.6s ease;
}

.service-item:nth-child(even) {
    grid-template-columns: 1fr 400px;
}

.service-item:nth-child(even) .service-content   {
    order: -1;
}

.service-item.animate-in {
  opacity :       1;
  transform: translateX(0);
}

.service-item img {
      width: 100%;
   height: 300px;
    object-fit: cover;
   border-radius   :        12px;

}

.service-content h3 {

    font-size: 1.8em;
   color: #2c3e50;
                    margin-bottom: 20px;
	}

.service-content p {
	 margin-bottom: 25px;

    color: #5d6d7e;

    font-size: 1.1em;
}

.service-content ul {
    list-style: none;
}

.service-content li {
    padding : 8px 0;
  position: relative;
               padding-left: 25px;
}

.service-content li:before {
  content: "→";
    position: absolute;
  left: 0;
  color: #e67e22;
   font-weight: bold;
}

.transformation-process    {
	padding: 100px 0;
    background: white;

}

.transformation-process h2 {
  text-align: center;
  font-size : 2.5em;
  margin-bottom: 70px;
		 color: #2c3e50;
}

.process-timeline {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
}

.process-step {
    text-align    :    center;
    padding:   30px;
   opacity: 0;
  transform: translateY(30px);
    transition    :       all 0.5s ease;
}

.process-step.animate-in {
   opacity: 1;
  -moz-transform: translateY(0);
  transform: translateY(0);
}

.step-number {
   width: 60px;
    height: 60px;
  background: #e67e22;
  color: white;
  border-radius: 50%;
   display: flex;
    align-items: center;
  justify-content: center;
    margin  :      0 auto 25px;
   font-size: 1.2em;
  font-weight: bold;
}

.process-step h3
	{
    font-size: 1.4em;
   margin-bottom: 15px;
  color: #2c3e50;
}


.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.cta-section .content-container {
  display: grid;
    grid-template-columns: 1fr 400px;
  gap: 60px;
    align-items: center;

}

.cta-content h2 {


   font-size: 2.5em;
   margin-bottom: 25px;
	}


.cta-content p

{
    font-size: 1.2em;
	margin-bottom: 40px;
    opacity: 0.9;
	}

.cta-stats {
   display: flex;
	gap: 40px;
	margin-bottom: 40px;
}

.stat-item {


    text-align   :      center;}

.stat-number {
   display: block; 
  font-size: 2.5em; 
   font-weight: bold; 
   color    :    #e67e22;
}

.stat-label {
    font-size: 0.9em;

	   opacity: 0.8;
}

.cta-button	{
  background: #e67e22;
    color :    white;
	padding: 18px 35px;
    text-decoration: none;
	border-radius  :  8px;
    font-weight :   600;
   display     :  inline-block;
   transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d35400;
  transform: translateY(-2px);
}

.cta-visual img {
   width: 100%;
	height: auto;
	 border-radius: 12px;
}

.testimonials-area {
   padding: 100px 0;
   background: #f8f9fa;
}

.testimonials-area h2 {
  text-align  :center;
   font-size: 2.5em;
   margin-bottom: 70px;
  color: #2c3e50;
}

.testimonials-grid {
    display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}


.testimonial-card


{
   background: white;
  padding: 40px;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card p   {
  font-style: italic;
    margin-bottom: 25px;
    font-size: 1.1em;
   line-height: 1.6;
}

.testimonial-author strong {
   display: block;
	 color: #2c3e50;
   margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9em;
   color: #5d6d7e;
}

.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-intro {
   text-align: center;
 margin-bottom    :       60px;
}

.contact-intro h2 {
	font-size: 2.5em;
    margin-bottom: 20px;
   color: #2c3e50;
}

.contact-intro p {
  font-size    :1.2em;
    color: #5d6d7e;
}

.contact-form-wrapper {
   max-width: 600px; 
   margin   :   0 auto;
	}

.contact-form {

	   background: #f8f9fa;
  border-radius: 15px;
  padding: 50px;
	}

.form-group {
    margin-bottom: 25px;
}

.form-row {
  display: grid;
	grid-template-columns: 1fr 1fr;
  gap  :  20px;
}

.form-group label {

	  display: block;
	margin-bottom: 8px;
  font-weight: 600;
   color: #2c3e50; 
	
     }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding    :       15px;
  border: 2px solid #ecf0f1;
  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  :        #e67e22;
}

.submit-button 
 {
	background: #e67e22;
   color    :        white;
   padding: 18px 40px;
   border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight  :       600;
	cursor: pointer;
       transition    :all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background :       #d35400;
  transform: translateY(-2px);
}

.site-footer {
	background: #2c3e50;
  color: white;
   padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
   margin: 0 auto;
  padding :0 20px;
  display     :     grid;
   grid-template-columns: 300px 1fr;
   gap: 60px;
   margin-bottom: 40px;
}

.footer-logo {
  height: 50px;
    width :auto;
  filter: brightness(0) invert(1);
}

.footer-info  {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
}

.footer-section h4 {
      margin-bottom: 20px;
   color: #e67e22;
	font-size: 1.2em;
     }

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
  margin-bottom  :     10px;
}

.footer-section ul li a {
   color: #bdc3c7;
    text-decoration: none;
               transition: color 0.3s ease;
}

.footer-section ul li a:hover {
          color: #e67e22;
}

.contact-details p {
	   margin-bottom: 10px;
  color: #bdc3c7;
	}



.footer-bottom {
   border-top   :  1px solid #34495e;
   padding-top: 20px;
    text-align: center;
}

.footer-bottom p		{
   color: #95a5a6;
   font-size: 0.9em;
}  @media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: 0.3s;
        gap: 30px;
    }
    
    .nav-menu.mobile-active {
        left: 0;
    }
    
    .hero-area .content-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-item:nth-child(even) .service-content {
        order: 0;
    }
    
    .cta-section .content-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2em;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  padding   :       120px 0 80px;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  min-height: 80vh;
   display: flex;
  align-items     :       center;
}

.about-hero .content-container {
  display   :        grid;
 grid-template-columns: 1fr 500px;
   gap: 60px;
    align-items: center;
}

.about-hero-content h1 {

	    font-size:       3.5em;
   font-weight: 700;
   color: #2c3e50;
	 margin-bottom: 30px;
    line-height: 1.1;



}

.about-subtitle    {
      font-size: 1.4em;
  color: #5d6d7e;
                    line-height: 1.6;
}

.about-hero-visual img {
    width: 100%;
   height: 400px;
   object-fit :     cover;
      border-radius :    15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-vision {
    padding: 100px 0;
   background   :   white;
}

.mission-content		{
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.mission-block h2,
.vision-block h2{
   font-size: 2.2em;
  color     :    #e67e22;
    margin-bottom: 25px;
}


.mission-block p,
.vision-block p {

	    font-size: 1.1em;
  line-height: 1.7;
  color: #2c3e50;
	}


.our-approach {
  padding: 100px 0;
    background: #f8f9fa;
}

.our-approach h2
{
   text-align: center;
                    font-size: 2.5em;
  margin-bottom: 70px;
	color    :    #2c3e50;
}

.approach-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.approach-card {

   background: white;
    padding: 40px;
  border-radius: 15px;
   text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;

}

.approach-card:hover  
  {

	  transform: translateY(-8px);

}

.approach-icon img {
    width: 100%;
  margin-bottom: 25px;
   height:       200px;
    border-radius: 12px;
    object-fit: cover;
}

.approach-card h3 {
    font-size   :      1.6em;
    color: #2c3e50;
  margin-bottom: 20px;
}

.approach-card p {
   font-size: 1em;
    line-height: 1.6;
    color: #5d6d7e;
}

.expertise-areas {
    padding  :       100px 0;
    background: white;
}

.expertise-areas h2 {
      margin-bottom: 70px;
  font-size: 2.5em;
    text-align: center;
   color: #2c3e50;
}

.expertise-content	{
  display: grid; 
	    grid-template-columns: 1fr 450px; 
	    gap: 60px; 
	        align-items: center;
}

.expertise-item {
    margin-bottom : 40px;
}

.expertise-item h3 {
  font-size: 1.4em;
    color: #e67e22;
    margin-bottom: 15px;
}

.expertise-item p {


          font-size: 1em;
   line-height: 1.6;
  color: #2c3e50;
     }

.expertise-visual img {
   width   :       100%;
  height: 350px;
    -moz-border-radius: 15px;
    object-fit: cover;
   -webkit-border-radius: 15px;
  border-radius: 15px;
}

.why-choose-us {
       padding: 100px 0;
  background: #34495e;
    color: white;
}

.why-choose-us h2 {
    text-align: center;
  font-size  :  2.5em;
   margin-bottom: 70px;
    color: white;
}

.reasons-grid {
   display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
}

.reason-item {
   text-align: center;
   padding  :  30px;
}

.reason-number {
   font-size    :3em;

    font-weight   :     bold;

    color: #e67e22;

  display: block;

  margin-bottom: 15px;
}

.reason-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color:        white;
}

.reason-item p {
    font-size: 0.95em;
  line-height: 1.5;
   color :       #bdc3c7;
	
}

.our-philosophy {
    padding   :        100px 0; 
    background: #f8f9fa;
}

.philosophy-content {
	   max-width: 800px;
    margin: 0 auto;

}

.philosophy-text h2 {
  font-size  :    2.3em;
    color: #2c3e50;
    text-align   :   center;
   margin-bottom: 30px;


}


.philosophy-text p {
  font-size: 1.1em;
  line-height: 1.7;
    color    :      #2c3e50;
    margin-bottom: 25px;
}

.philosophy-values {
  margin-top: 40px;
}

.value-point {
	 background     :     white; 
    padding    :20px; 
    border-radius: 8px; 
  margin-bottom: 15px; 
  border-left: 4px solid #e67e22;
}

.value-point strong {
   color: #e67e22;
}

.next-steps {
    padding: 80px 0;
    background: white;
  text-align: center;
}

.next-steps h2 {
	font-size: 2.3em;
   color: #2c3e50;
   margin-bottom: 20px;
}

.next-steps p {
   font-size: 1.2em;
  color: #5d6d7e;
    margin-bottom:   40px;
   max-width:600px;
  margin-left: auto;
   margin-right: auto;
}

.next-steps-actions {
    display    : flex;
	gap: 20px;
  justify-content: center;
    flex-wrap: wrap; 
	
}

.secondary-cta {
    background: transparent;
  color: #e67e22;
        padding: 15px 30px;
    text-decoration  :none;
    border: 2px solid #e67e22;
    border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
}

.secondary-cta:hover{
  background: #e67e22;
   color: white;

}

.thankyou-hero {
    padding:       120px 0 80px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
      min-height: 80vh;
   display: flex;
  align-items   :       center;
    color: white;
  text-align   :  center;
}

.success-icon {
	 margin-bottom: 40px; 
	
}

.checkmark-circle {
    width: 120px;
        height: 120px;
  background: rgba(255,255,255,0.2);
   border-radius: 50%;
  display: flex;
	align-items: center;
         justify-content: center;
    margin: 0 auto;
   animation: scaleIn 0.6s ease-out;
}

.checkmark {
       position: relative;
    height: 60px;
   width: 60px;
}

.checkmark:before {
  content: "✓";
      font-size: 3em;
   color: white;
  font-weight: bold;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-content h1 {
   font-size: 3.2em;
   font-weight: 700;
   margin-bottom: 25px;
}

.thankyou-subtitle {
    font-size: 1.3em;
   line-height: 1.6;
	opacity: 0.95;
  margin: 0 auto;
  max-width: 700px;
}

.next-actions {
    padding: 100px 0;
   background: white;
}

.next-actions h2
	{
	color: #2c3e50;
    font-size: 2.5em;
    text-align: center;
         margin-bottom: 70px;
}

.timeline-steps {
   max-width: 800px;
   margin: 0 auto;
}

.timeline-item     {
	align-items: flex-start;
	      display: flex;
	    gap: 30px;
	    margin-bottom: 50px;
}

.timeline-number {
	width: 50px;
  height: 50px;
	background: #e67e22;
   color: white;
    border-radius:  50%;
   display: flex;
  align-items: center;
   justify-content: center;
 font-weight: bold;
    font-size :    1.2em;
   flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.4em;
  color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-content p {
  color    :        #5d6d7e;
   line-height: 1.6;
  margin-bottom: 10px;
}

.timeline-duration {
      color     :        #e67e22;
    font-weight: 600;
   font-size: 0.9em;
     }

.while-you-wait {
   padding: 100px 0;
	background: #f8f9fa;
}

.while-you-wait h2 {
   color: #2c3e50;
	 font-size: 2.3em;
    margin-bottom: 60px;
   text-align:       center;
}  

.suggestions-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.suggestion-card {
  background: white;
                    padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.suggestion-card h3 {
    font-size: 1.3em;
  color: #e67e22;
  margin-bottom: 15px;
}

.suggestion-card p {
	color: #5d6d7e;
    line-height  :   1.6;
}

.reassurance-section


{
  padding: 80px 0;

	  background: white;
}

.reassurance-content {

	 display: grid; 
    grid-template-columns: 1fr 300px; 
    gap: 60px; 
    align-items: center;

}

.reassurance-text h2  
  {
   margin-bottom: 25px;
   font-size  :    2.2em;
			color: #2c3e50;
}

.reassurance-text p {
    color: #5d6d7e;
	 line-height: 1.6;
  margin-bottom: 20px;


}

.reassurance-stats {

	    display: flex;
   flex-direction  :column;
   gap: 20px;
}

.stat-box {
  background: #f8f9fa;
  padding:  20px;
    border-radius: 8px;
  text-align   :       center;
  border: 2px solid #ecf0f1; 
	
}

.stat-box .stat-number {
   display: block;
	 font-size: 1.8em;
   font-weight: bold;
   color: #e67e22;
    margin-bottom: 5px;
}

.stat-box .stat-label {
    color     :       #5d6d7e;
   font-size: 0.9em;
}

.return-navigation


{
   padding: 80px 0;
	background: #34495e;
   color: white;
   text-align: center;
}

.return-content h2 {
   font-size: 2.3em; 
  margin-bottom: 20px;
}

.return-content p {
    font-size: 1.1em;
 margin-bottom   :       40px;
   max-width: 600px;
  margin-left: auto;
    margin-right: auto;
    opacity  : 0.9;
}

.return-actions		{
   display: flex;
  gap     : 20px;
       justify-content: center;
   flex-wrap: wrap;
}@media (max-width: 768px) {
    .about-hero .content-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.5em;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .next-steps-actions,
    .return-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button,
    .secondary-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.5em;
    }
    
    .reassurance-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reassurance-stats {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content h1 {
        font-size: 2em;
    }
    
    .thankyou-content h1 {
        font-size: 2em;
    }
    
    .reassurance-stats {
        flex-direction: column;
    }
}.cookies-policy,
.privacy-policy {
  padding: 120px 0;
  background: #f8f9fa;
}

.cookies-policy h1,
.privacy-policy h1 {
   font-size: 2.5em; 
  color: #2c3e50; 
    margin-bottom: 30px; 
   text-align: center;
}

.cookies-policy h2,
.privacy-policy h2 {
  font-size: 1.8em;
   color  :      #e67e22;
  margin: 30px 0 15px;
}

.cookies-policy p,
.privacy-policy p {
   font-size: 1.1em;
    color: #5d6d7e;
       line-height: 1.6;
   margin-bottom: 20px;
}



.cookies-policy ul,
.privacy-policy ul {
  list-style: none;
   margin-bottom: 20px;
}

.cookies-policy ul li,
.privacy-policy ul li {
   position: relative;
       padding-left: 25px;
  margin-bottom    :     10px;
    font-size: 1.1em;
   color: #5d6d7e;
}

.cookies-policy ul li:before,
.privacy-policy ul li:before {
  content: "→";
  position: absolute;
  left   :     0;
    color   :    #e67e22;
    font-weight: bold;
}