* {
  margin: 0;
	   padding: 0;
	    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

   line-height     :        1.6;

         color: #333;

   background-color: #fafafa;
}

.main-navigation {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 1rem 0;
	position: sticky;
    top  :       0;
  z-index :     1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-wrapper {
     max-width: 1200px;
    margin: 0 auto;
		 padding: 0 20px;
         display: flex;
    justify-content     : space-between;
    align-items: center;
     }

.brand-area .company-logo {
   height: 45px;
   width: auto;
}

.nav-links {
 display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
	 font-weight: 500;
   text-decoration: none;
   color: white;
   transition: color 0.3s ease;
  padding: 0.5rem 1rem;
   border-radius: 5px;
}

.nav-links a:hover {
  background-color: rgba(255,255,255,0.1);
    color: #ecf0f1;
}

.burger-toggle {
   display: none;
   flex-direction: column;
    background    :     none;
  border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-toggle span {


          width: 25px;
                    height: 3px;
    background-color: white;
   margin: 3px 0;
         -webkit-transition: 0.3s;
   transition: 0.3s;
	-moz-transition: 0.3s;
       -webkit-border-radius: 2px;
   border-radius: 2px;}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color:       white;
	 padding: 5rem 0;
    display: flex;
    align-items: center;
  min-height: 70vh;
}

.hero-content {
  max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
    display: grid;
  grid-template-columns :    1.2fr 1fr;
    gap :        4rem;
    align-items: center;

}

.hero-content h1 {
    font-size: 3.2rem;
   font-weight: 700;
	margin-bottom: 1.5rem;
               line-height: 1.2;
}

.hero-description   {
                    margin-bottom: 2.5rem;
   font-size: 1.2rem;
       opacity:    0.95;
   line-height: 1.7;
}

.hero-actions {
  display: flex;
	 gap: 1.5rem;
	 flex-wrap: wrap;
}

.primary-button, .secondary-button {
    padding: 1rem 2rem;
    display: inline-block;
        font-weight: 600;
        text-align   :        center;
  border-radius  :        8px;
   text-decoration: none;
	transition: all 0.3s ease;
}

.primary-button {
		 background-color: #e74c3c;
   color   :     white;
   border: 2px solid #e74c3c;
	}

.primary-button:hover {
  background-color: #c0392b;
    border-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.secondary-button {
    background-color: transparent;
   color: white;
  border   :2px solid white;
}

.secondary-button:hover{
	 background-color: white;
    color: #667eea;
  transform: translateY(-2px);
}

.hero-visual img {

	   width: 100%;
       height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
     }

.services-overview {
        padding: 5rem 0;

	background-color  :     white;
}

.section-container	{
    max-width: 1200px;
       margin: 0 auto;
   padding   :    0 20px;
}

.services-overview h2 {
    text-align: center;
     font-size: 2.5rem;
     margin-bottom: 3rem;
      color: #2c3e50;
     font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-item img {
  width: 100%;
		height: 200px;
    object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
    color: #2c3e50;
       font-weight:  600;
}

.service-item p {
   color    :#666;
  line-height: 1.6;
     }

.approach-methodology    {
   padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.approach-content {
   display: grid;
      grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}



.approach-content h2 {
	   font-size: 2.5rem;
       margin-bottom: 1.5rem;
       color: #2c3e50;
       font-weight: 700;}

.approach-content > p {
   font-size: 1.1rem;
   margin-bottom     : 2.5rem;
    color: #555;
   line-height: 1.7;
}

.methodology-steps {
   display    :       flex;
    flex-direction: column;
    gap: 1.5rem;
	
} 

.step-item {
   background: white;
    padding: 1.5rem;
    border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}


.step-item h4 {
   font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #e74c3c;
    font-weight: 600;
}

.step-item p {
   color:  #666;
  line-height: 1.6;
}

.approach-visual img {
   width: 100%; 
	  height: auto; 
	  border-radius: 12px; 
	  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.call-to-action {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   text-align: center;
}

.cta-container {
   max-width: 800px;
   margin: 0 auto;
   padding: 0 20px;
}

.call-to-action h2 {
      margin-bottom   :1.5rem;
    font-size: 2.5rem;
    font-weight: 700;}


.call-to-action p {

	    font-size: 1.2rem;
   margin-bottom: 2.5rem;
  opacity: 0.95;
   line-height: 1.7;
     }

.cta-button {
   color: white;
	background-color: #e74c3c;
  font-weight: 600;
    display: inline-block;
   text-decoration     :     none;
   transition    : all 0.3s ease;
					padding: 1.2rem 2.5rem;
    border-radius: 8px;
    border     :   2px solid #e74c3c; 
	
}

.cta-button:hover {
  background-color: #c0392b;
    border-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.contact-section {
   padding: 5rem 0;
    background-color: white;
}

.contact-section h2 {
  text-align: center;

	    font-size: 2.5rem;

	   margin-bottom: 3rem;

	   color: #2c3e50;

	    font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
   align-items: start;
}

.contact-info h3 {
	 font-size: 1.5rem;
   margin-bottom: 2rem;
  color: #2c3e50;
   font-weight: 600;
}

.contact-item {
   margin-bottom :       1.5rem;
}

.contact-item strong {
  color: #e74c3c;
          display: block;
        margin-bottom   :0.5rem;
    font-weight: 600;


}

.contact-item p {
    color: #666;
    line-height     :       1.6;
}

.contact-form {
         background: #f8f9fa;
    padding: 2.5rem;
	 border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label     {
    margin-bottom: 0.5rem;
	display: block;
    color     :    #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
  border-radius: 6px;
	 font-size: 1rem;
    transition: border-color 0.3s ease;
   background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :    white;
   padding: 1rem 2rem;
    border: none;
  border-radius: 6px;
		font-size: 1rem;
       font-weight: 600;
   cursor: pointer;
	 transition: all 0.3s ease;
  width: 100%;}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.site-footer {
  color    :white;
   padding  :  3rem 0 1rem;
   background-color     : #2c3e50;
}

.footer-content {
	max-width: 1200px;
   margin: 0 auto;
		 padding: 0 20px;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {

    margin-bottom: 1rem;
          color: #ecf0f1;
  font-weight: 600;
}

.footer-section ul {
   list-style: none;


}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
	   color: #bdc3c7;

	  text-decoration: none;

	   transition: color 0.3s ease;
     }

.footer-section ul li a:hover {
   color: #ecf0f1;
}

.footer-section p {
  color   : #bdc3c7;
    line-height  :     1.6;
}

.footer-logo {
    height: 40px;
	 width: auto;
  filter: brightness(0) invert(1);
}

.footer-bottom {
      border-top: 1px solid #34495e;
  margin-top: 2rem;
  padding-top: 1rem;
   text-align: center;
  max-width: 1200px;
    margin-left: auto;
   margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
       color: #95a5a6;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-overview h2,
    .approach-content h2,
    .call-to-action h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }
}.about-hero {
  background: linear-gradient(135deg, #3742fa 0%, #2f3542 100%);
   color: white;
    padding: 4rem 0;
   text-align: center;
}

.about-hero-content {
  max-width: 900px;
 margin: 0 auto;
   padding: 0 20px;
}

.about-hero h1 {
    font-size: 3rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
}

.about-intro {
	 font-size: 1.3rem;
   opacity: 0.95;
   line-height: 1.7;
  max-width: 700px;
	 margin: 0 auto;
}

.company-story {
  padding: 5rem 0;
	background-color: white;

}

.story-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
   align-items: center;
}

.story-content h2 {
  font-size :        2.4rem;
   margin-bottom: 2rem;
    color: #2c3e50;
   font-weight: 700;
}

.story-content p {
  margin-bottom:        1.5rem;
    color: #555;
	line-height: 1.7;
   font-size: 1.1rem;
}

.mission-points {
    margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
	gap: 1.5rem;
}  

.mission-item {
    background: #f8f9fa;
  padding: 1.5rem;
					border-radius: 8px;
 border-left: 4px solid #3742fa;
}

.mission-item h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
   font-weight: 600;
 font-size     :      1.2rem;
}

.mission-item p	{
  color: #666;
  margin-bottom: 0;
       line-height: 1.6;
}

.story-visual img {
   width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-expertise {
    padding: 5rem 0;
  background: linear-gradient(135deg, #f1f2f6 0%, #ddd6fe 100%);
}

.team-expertise h2 {
   text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
    color: #2c3e50;
   font-weight: 700;
	
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;


}

.expertise-area {
    background: white;
    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.expertise-area:hover {
  transform: translateY(-5px);
} 

.expertise-area h3 {
   color: #3742fa;
  font-size:        1.5rem;
  margin-bottom: 1.2rem;
   font-weight: 600;
}

.expertise-area p {
  color :        #666;
   margin-bottom: 1.5rem;
   line-height: 1.6;
}

.expertise-area ul {
    list-style: none;
   padding: 0;
}

.expertise-area ul li {

	   padding: 0.5rem 0;
    color: #555;
    position: relative;
   padding-left: 1.5rem;
	}

.expertise-area ul li::before {
  content: "▸";
	 color: #3742fa;
   position: absolute;
	left: 0;
     font-weight: bold;
}

.methodology-approach {
    padding: 5rem 0;
  background-color: white;
}

.methodology-layout {

    display: grid;
    grid-template-columns: 1fr 1.2fr;
   gap   :      4rem;
  align-items: center;
     }

.methodology-visual img {


   width: 100%;
   height: auto;
  border-radius :  12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); 

	}

.methodology-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  color    :#2c3e50;
	font-weight: 700;
}

.methodology-content > p {
   font-size: 1.1rem;
  color   :     #555;
   line-height: 1.7;
    margin-bottom: 2.5rem;
}

.methodology-stages {
    display: flex;
   flex-direction: column;
    gap: 2rem;
}

.stage-item {
  display: flex;
  align-items: flex-start;
   gap   :        1.5rem;
}

.stage-number {
  background: linear-gradient(135deg, #3742fa 0%, #5352ed 100%);
      color: white;
   font-size: 1.2rem;
  font-weight: bold;
    width: 45px;
  height     :        45px;
  border-radius: 50%;
   display: flex;
	align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.stage-details h4     {
   color   :   #2c3e50;

	 margin-bottom: 0.8rem;

  font-weight: 600;

  font-size: 1.2rem;
}

.stage-details p {
   color: #666;
   line-height: 1.6;
	
}

.values-commitment {
  padding  : 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.values-commitment h2
	{
     text-align: center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
  font-weight: 700;
     }

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap :        2rem;
}

.value-card {


  background: rgba(255,255,255,0.1);
   padding: 2rem;
   border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;


     }

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.value-card h3 {
   font-size: 1.4rem;
  margin-bottom: 1rem;
          font-weight     :   600;


}

.value-card p {

         opacity: 0.95;
       line-height: 1.6;
	}

.success-approach {
    padding: 5rem 0;
    background-color     :white;
}


.success-content h2 {
    text-align: center;
    font-size: 2.5rem;
	margin-bottom: 2rem;
   color: #2c3e50;
	font-weight: 700;
}

.success-content > p {
 text-align: center;
			font-size: 1.2rem;
   margin-bottom: 3rem;
         color: #555;
         max-width  :   800px;
    margin-left: auto;
   margin-right: auto;
   line-height: 1.7;
}

.success-metrics {
  display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap  :       2rem;
   margin-top: 3rem;

}

.metric-item {
	     text-align: center;
     padding: 2rem;
     background: #f8f9fa;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0,0,0,0.05);

}

.metric-number {
	font-weight: 700;
  color: #3742fa;
   margin-bottom: 1rem;
    font-size: 3rem;
}

.metric-item p {
   color: #666;
   line-height: 1.6;
   font-size: 1rem;
}

.thankyou-hero {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
     padding: 4rem 0;
  min-height: 80vh;
    display: flex;
   align-items: center;

}

.thankyou-container {
  max-width: 1200px;
    margin   : 0 auto;
    padding: 0 20px;
}  

.thankyou-content {
  display: grid;
					grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
    align-items: center;
}

.success-visual img {
   width: 100%;
   height: auto;
                    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.success-message
	{
   color: white;
	
}

.success-message h1 {
  font-size: 3rem;
	font-weight:    700;
   margin-bottom: 1.5rem;

}

.confirmation-text{


		 font-size:        1.3rem;
   margin-bottom: 3rem;
   opacity:      0.95;
   line-height: 1.7;
	}

.next-steps h2 {
    font-weight: 600;
          margin-bottom   :        2rem;
   font-size: 2rem;
	}

.steps-timeline {
	margin-bottom: 3rem;
}

.timeline-item {
  display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  align-items:     flex-start;
}

.timeline-marker {
	  background: rgba(255,255,255,0.2);
       color: white;
   	 width: 40px;
    height     :40px;
     border-radius: 50%;
     display: flex;
       align-items: center;
       justify-content: center;
     font-weight: bold;
       flex-shrink    :      0;
     border: 2px solid rgba(255,255,255,0.3);
}

.timeline-content h3 {
    font-weight: 600;
    margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.timeline-content p {
   opacity: 0.9;
   line-height: 1.6;
}

.additional-resources {
   margin-bottom :3rem;


}

.additional-resources h2 {
    font-size: 1.8rem;
   margin-bottom: 1.5rem;
   font-weight: 600;
}

.additional-resources p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.preparation-list {
   list-style: none;
	padding: 0;
}

.preparation-list li {
      position   :     relative;
  line-height: 1.6;
   padding-left: 2rem;
   opacity: 0.9;
    padding: 0.8rem 0;
}

.preparation-list li::before 
 {
  content: "✓";
    position: absolute;
  left: 0;
  color: rgba(255,255,255,0.8);
	 font-weight: bold;
	font-size: 1.2rem;
}

.action-buttons {


   display: flex; 
	   gap: 1.5rem; 
	    flex-wrap: wrap;}

.contact-confirmation {
  background-color: white;
     padding: 5rem 0;
}

.confirmation-details h2 {
   text-align    :    center;
    font-size: 2.5rem;
   margin-bottom: 2rem;
   color: #2c3e50;
  font-weight: 700;
}

.confirmation-details > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
  max-width: 800px;
    margin-left: auto;
  margin-right: auto;
   line-height: 1.7;
}

.contact-info-grid	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {

	      background: #f8f9fa;
    padding: 2rem;
        border-radius     :12px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
     }

.contact-method h3 {
    color: #00b894;
    font-size: 1.4rem;
    margin-bottom: 1rem;
   font-weight: 600;
}

.contact-method p {

   color: #2c3e50;
    font-size: 1.1rem;
   font-weight: 500;
   margin-bottom: 0.5rem;
     }

.contact-method span {
    font-size: 0.9rem;
    color: #666;
}

.urgent-notice {
  background: linear-gradient(135deg, #fdcb6e 0%, #e84393 100%);
	 color: white;
   padding: 2rem;
    border-radius: 12px;
	text-align    :center;
}

.urgent-notice h3 {
  margin-bottom: 1rem;
   font-size: 1.4rem;
  font-weight   :  600;
}

.urgent-notice p		{
  opacity: 0.95;
    line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .story-layout,
    .methodology-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .methodology-layout {
        grid-template-columns: 1fr;
    }
    
    .methodology-visual {
        order: -1;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .success-message h1 {
        font-size: 2.5rem;
    }
    
    .confirmation-text {
        font-size: 1.1rem;
    }
    
    .action-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .stage-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .success-message h1 {
        font-size: 2rem;
    }
    
    .story-content h2,
    .methodology-content h2,
    .team-expertise h2,
    .values-commitment h2,
    .success-content h2,
    .confirmation-details h2 {
        font-size: 2rem;
    }
    
    .next-steps h2 {
        font-size: 1.6rem;
    }
    
    .additional-resources h2 {
        font-size: 1.4rem;
    }
}.cookies-policy,
.privacy-policy {
   padding: 5rem 0;
   background-color: white;
}

.cookies-policy h1,
.privacy-policy h1 {
 text-align: center;
   font-size: 2.5rem;
	margin-bottom: 2rem;
   color: #2c3e50;
          font-weight: 700;
}

.cookies-policy h2,
.privacy-policy h2 {
    font-size: 1.8rem;
	margin-bottom: 1rem;
  color: #2c3e50;
	 font-weight: 600;
}

.cookies-policy p,
.privacy-policy p {
  font-size: 1.1rem;

	   color: #666;

	  line-height: 1.7;

	    margin-bottom: 1.5rem;
}

.cookies-policy ul,
.privacy-policy ul {
		list-style: disc;
  margin-left: 2rem;
   margin-bottom: 1.5rem;
     }

.cookies-policy ul li,
.privacy-policy ul li

{

   font-size: 1.1rem;
   color: #666;
   line-height   : 1.7;
    margin-bottom: 0.5rem;
	}@media (max-width: 768px) {
    .cookies-policy h1,
    .privacy-policy h1 {
        font-size: 2rem;
    }

    .cookies-policy h2,
    .privacy-policy h2 {
        font-size: 1.5rem;
    }

    .cookies-policy p,
    .privacy-policy p,
    .cookies-policy ul li,
    .privacy-policy ul li {
        font-size: 1rem;
    }
}