* {
   margin: 0;
    padding: 0;
   box-sizing: border-box;
}

body {

	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
               background-color: #ffffff;

}

.primary-navigation {

	  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
   padding: 0;
   position: fixed;
  top:    0;
	 width: 100%;
   z-index: 1000;
  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 :   1rem 2rem;
}

.brand-section {
   display: flex;
   align-items: center;
   gap: 12px;
}

.company-logo {
   height: 40px; 
	   width: auto;
}

.brand-text {
	   color: #ffffff;
   font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.5px;

	}

.desktop-menu{
   display: flex;
   gap   :   2rem;
}

.nav-item	{
   color: #ffffff;
    text-decoration: none;
   font-weight: 500;
	padding   :      0.5rem 1rem;
        border-radius: 8px;
   transition: all 0.3s ease;
}

.nav-item:hover, .nav-item.active {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.mobile-toggle {
   display: none;
    flex-direction    :    column;
  background: none;
  border: none;
    cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
      width: 25px;

	  height :     3px;

	   background-color: #ffffff;

	    margin: 3px 0;

	   border-radius: 2px;

	    transition: 0.3s;


}

.mobile-menu {
  padding: 1rem;
 display: none;
   background-color: #34495e;

}

.mobile-nav-item {
  display: block;
    color: #ffffff;
	text-decoration: none;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-banner     {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 140px 2rem 80px;
  min-height: 100vh;
    display: flex;
   align-items: center;
}

.hero-content {
       max-width: 1200px;
    margin: 0 auto;
    display : grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
	}

.hero-text h1 {
  font-size: 3.2rem;

	   font-weight: 700;

	    color   :     #2c3e50;

	   margin-bottom: 1.5rem;

	  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
                    color: #5a6c7d;
  margin-bottom: 2.5rem;
   line-height:        1.7;
}

.hero-actions {
   display: flex;
	 gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  padding: 1rem 2rem;
  border-radius: 12px;
    text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
        display: inline-block;
}

.cta-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #ffffff;
  box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}

.cta-primary:hover {
  transform: translateY(-3px); 
	  box-shadow: 0 8px 25px rgba(52,152,219,0.4);
}

.cta-secondary {
	    background-color: transparent;
   color: #3498db;
  border: 2px solid #3498db;

}

.cta-secondary:hover {
    background-color: #3498db;
   color: #ffffff;
  transform: translateY(-2px);
}

.hero-image {
  width :100%;
    height: auto;
    border-radius     :        20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-overview {
  padding: 100px 2rem;
   background-color: #ffffff;
}  

.section-container {

	    max-width: 1200px;
   margin: 0 auto;
}

.services-overview h2 {
  text-align: center;
    font-size: 2.8rem;
  color: #2c3e50;
         margin-bottom: 3rem;
	 font-weight: 700;
}  

.services-grid	{
  display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
	margin-top: 3rem;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 16px;
   padding: 2rem;
	 text-align: center;
    transition: all 0.3s ease;
   border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background-color: #ffffff;
}

.service-image {
   width: 100%;
    height: 200px;
	 object-fit: cover;
   border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
   font-size: 1.5rem;
  color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
   color: #5a6c7d;
   line-height: 1.6;
}

.expertise-showcase {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 100px 2rem;
   color: #ffffff;
}

.expertise-content {
   max-width: 1200px;
 margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.expertise-text h2 {
  font-size: 2.5rem;
    margin-bottom: 2rem;
  font-weight: 700;
}

.expertise-item {
  margin-bottom: 2rem;
}

.expertise-item h4     {
   font-size    :  1.3rem;
    margin-bottom:       0.5rem;
    color: #3498db;
   font-weight     :    600;
}

.expertise-item p {
   color     :       #bdc3c7;

	   line-height: 1.6;


}

.expertise-image {
   width: 100%;
	height: auto;
   border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  padding: 80px 2rem;
    text-align: center;
  color: #ffffff;
}

.cta-container {
   max-width: 800px;
  margin:      0 auto;
}



.cta-section h2 {
   font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
	
}

.cta-section p {


    font-size: 1.2rem;
               margin-bottom: 2.5rem;
    opacity: 0.9;
     }

.cta-button-large {
    background-color: #ffffff;
  color: #3498db;
    padding: 1.2rem 3rem;
  border-radius: 12px;
        text-decoration    :      none;
   font-weight: 600;
  font-size  :    1.1rem;
  transition: all 0.3s ease;
   display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-section {
   padding: 100px 2rem;
    background-color: #f8f9fa;
}

.contact-container {
  max-width     :1200px;
    margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
	font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 3rem;
   font-weight: 700;
}

.contact-content {
   display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem; 

}

.contact-info h3 {
    color: #2c3e50; 
	    margin-bottom: 2rem; 
	  font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
  color: #3498db;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper	{
    background-color: #ffffff;
    padding: 2.5rem;
   border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label     {
  display: block;
          margin-bottom :0.5rem;
   color: #2c3e50;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 0.75rem;
    border: 2px solid #e9ecef;
   border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
   border-color: #3498db;
}

.submit-button {
	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
     color: #ffffff;
    padding: 1rem 2rem;
    border: none;
   border-radius: 8px;
  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(52,152,219,0.3);
}

.site-footer {
   background-color: #2c3e50;
   color: #ffffff;
	padding: 60px 2rem 20px;
}

.footer-content		{
  max-width: 1200px;
   margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
    height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-description {
  color: #bdc3c7;
    line-height: 1.6;
}

.footer-section h4 {
	   margin-bottom: 1rem; 
   color: #3498db; 
  font-size: 1.2rem;
	}

.footer-links {
	list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}


.footer-links a {
  color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
   color: #3498db;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 2rem;
   padding-top: 1rem;
		text-align: center;
    color: #95a5a6;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }

    .hero-banner {
        padding: 120px 1rem 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}.page-hero {

  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  padding: 140px 2rem 80px;
    color: #ffffff;
   text-align: center;
	}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
	
}

.page-hero h1 {
    font-size     :3rem;
  font-weight: 700;
   margin-bottom:     1.5rem;
  line-height :1.2;
}



.hero-subtitle {
   font-size: 1.3rem;
   opacity    :  0.9;
 line-height: 1.6;
}

.company-story {
	padding: 100px 2rem;
   background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
   margin: 0 auto;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
    font-size: 2.5rem; 
	   color: #2c3e50; 
	   margin-bottom: 2rem; 
		font-weight: 700;
}

.story-text p {
    color: #5a6c7d;
          line-height: 1.7;
  margin-bottom: 1.5rem;
          font-size     :    1.1rem;
}

.story-image {
   width: 100%;
	height: auto;
   border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-values {
               padding: 100px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-container {

	   max-width: 1200px;
  margin: 0 auto;

}

.mission-values h2 {
	text-align: center;
	 font-size: 2.8rem;
    color: #2c3e50;
	margin-bottom: 3rem;
  font-weight:  700;}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
    border-left: 4px solid #3498db;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
    color: #2c3e50;
  font-size: 1.4rem;
         margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
       color: #5a6c7d;
   line-height: 1.6;

}

.expertise-areas {
   padding: 100px 2rem;
  background-color: #ffffff;
}

.expertise-container {
    max-width  :   1200px;
   margin: 0 auto;
}

.expertise-header {
       text-align: center;
  margin-bottom     :   4rem;

}

.expertise-header h2 {
    font-size: 2.5rem; 
	    color: #2c3e50; 
	   margin-bottom: 1rem; 
	       font-weight     :    700;
}

.expertise-header p {
	font-size: 1.2rem;
   color: #5a6c7d;
    max-width: 600px;
   margin: 0 auto;
}

.expertise-layout {
	 display:      grid;
   grid-template-columns: 1fr 1fr;
    gap :       4rem;
	align-items: center;
}

.expertise-item {
    margin-bottom: 2.5rem;
}

.expertise-item h4 {
   color: #3498db;
                    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  font-weight: 600;
}

.expertise-item p


{
	    color :#5a6c7d;
    line-height: 1.6;

}

.expertise-img {
   width: 100%;
  height: auto;
   border-radius  : 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-approach {
   padding: 100px 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     color: #ffffff;
}

.approach-container {
    max-width: 1200px;
	margin: 0 auto;
     } 

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
 gap: 4rem;
    align-items: center;
}

.approach-text h2 {
    font-size: 2.5rem;
   margin-bottom: 2rem;
  font-weight: 700;
}

.approach-text > p	{
  font-size: 1.1rem;
   line-height: 1.7;
    margin-bottom: 2rem;
  opacity: 0.9; 
	
}

.feature-point {
       margin-bottom: 2rem;
}

.feature-point strong {
   color: #3498db;
  display: block;
   margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-point p {
   color: #bdc3c7;
   line-height: 1.6;
}

.approach-image {
    width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.company-achievements {
  padding: 80px 2rem;
  background-color     :    #3498db;
    color: #ffffff;
  text-align    :     center;
}

.achievements-container{
   max-width    :     1000px;
	  margin: 0 auto;
}

.achievements-container h2  
  {
    font-size: 2.5rem;
    margin-bottom: 3rem;
   font-weight   :       700; 

}

.stats-grid {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	    gap: 2rem;
}

.stat-item {
  text-align    :     center;
}

.stat-number {
 font-size: 3rem;
    font-weight: 700;
   display: block;
   margin-bottom: 0.5rem;
}

.stat-label {


   font-size: 1.1rem;
    opacity: 0.9;


}

.training-methodology {


  padding: 100px 2rem;
    background-color: #f8f9fa;
     }



.methodology-container {

	   margin: 0 auto;

	    max-width: 1200px;


}

.methodology-content {
		display :    grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: flex-start;
}

.methodology-text h2 {
  font-size: 2.5rem;
	 color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 700;
}

.methodology-text > p {
   color: #5a6c7d;
   line-height: 1.7;
  margin-bottom: 3rem;
    font-size: 1.1rem;
}

.method-step {
  display: flex;
   align-items: flex-start;
  margin-bottom: 2rem;
    gap: 1.5rem;
}



.step-number {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
			color     :  #ffffff;
  width:    40px;
   height: 40px;
     border-radius     :50%;
   display: flex;
   align-items: center;
     justify-content: center;
   font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
   margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p{
   color: #5a6c7d; 
	    line-height: 1.6;
}

.methodology-image {
    width: 100%;
   height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.commitment-section {

	padding: 100px 2rem;
  background-color: #ffffff;}

.commitment-container {
      max-width: 1000px;
  margin: 0 auto;
    text-align: center;
}

.commitment-container h2{
      font-size   :      2.5rem;
    color: #2c3e50;
         margin-bottom: 2rem;
   font-weight: 700;
	}

.commitment-intro		{
    font-size    :1.2rem; 
	    color    :        #5a6c7d; 
	               line-height: 1.7; 
	  margin-bottom: 3rem;
}

.commitment-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap :        2rem;
 text-align: left;
}



.commitment-item {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #3498db;
}

.commitment-item h4 {
    color: #2c3e50;
   margin-bottom: 1rem;
  font-weight: 600;
}

.commitment-item p {
  color: #5a6c7d;
	line-height: 1.6;


}

.thankyou-hero {

  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   padding: 140px 2rem 80px;
	 color: #ffffff;
    min-height: 80vh;
   display: flex;
  align-items: center;
	
     }


.thankyou-container {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;

}


.success-icon {
   color   : #ffffff;
               text-align: center;
    margin-bottom: 2rem;
}

.success-content h1 {
    text-align: center;
    font-weight: 700;
   margin-bottom: 1.5rem;
  font-size: 3rem;
}

.success-message  
  {
	   font-size  :  1.2rem;
   line-height :       1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
   text-align: center; 
}

.next-steps {
     background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
   margin-bottom: 3rem;
	}

.next-steps h3 {
      font-size :        1.5rem;
   margin-bottom: 2rem;
  text-align: center;


}

.step-item {
   display: flex;
  align-items: flex-start;
   margin-bottom:       1.5rem;
  gap    :      1rem;
}

.step-number {
   background-color: #ffffff;
 color: #27ae60;
    width :        30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
   align-items: center;
   justify-content: center;
    font-weight: 600;
   flex-shrink: 0;
}

.step-text h4 {
    margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-text p {
    opacity: 0.9;
  line-height: 1.5;
}

.contact-reminder {
  background-color: rgba(255,255,255,0.1);
   padding: 2rem;
   border-radius    :       16px;
   margin-bottom:  3rem;
  text-align: center;
}

.contact-reminder h3 {
   font-size    :1.3rem;
	margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-detail  
  {
  margin-bottom: 0.5rem;
}

.contact-detail strong {
    color: #ffffff;
}

.action-buttons {
  gap: 1rem;
		display: flex;
  justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
    border-radius:      8px;
    text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
      background-color: #ffffff;
  color: #27ae60;
}

.btn-primary:hover 
 {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: transparent;
    color: #ffffff;
  border: 2px solid #ffffff;
}



.btn-secondary:hover {
    background-color: #ffffff;
    color: #27ae60;
}

.thankyou-image {
    width: 100%;
   height: auto;
   border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.additional-resources {
    padding: 100px 2rem;
    background-color: #f8f9fa;
}

.resources-container {
  max-width: 1200px;
	 margin: 0 auto;
}

.resources-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.resources-intro {
               text-align: center;
    font-size: 1.2rem;
   color: #5a6c7d;
   margin-bottom: 3rem;
    max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.resources-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px); 

}

.resource-image {
	  width: 100%;
   height: 200px;
     object-fit: cover;
   border-radius  :12px;
	margin-bottom: 1.5rem;
	}

.resource-card h4 {


   color:    #2c3e50;
  margin-bottom: 1rem;
    font-weight: 600;}

.resource-card p {
	  color :     #5a6c7d;
     line-height: 1.6;


}

.trust-indicators		{
   padding: 80px 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; 

}

.trust-container h2 {
   font-size  :     2.5rem;
      margin-bottom: 3rem;
      font-weight: 700;
}

.trust-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-item {
        text-align: center;
}

.trust-stat {
	 display: block;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  opacity: 0.9;
  font-size: 1.1rem;
}@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expertise-layout {
        grid-template-columns: 1fr;
    }

    .approach-content {
        grid-template-columns: 1fr;
    }

    .methodology-content {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .success-content h1 {
        font-size: 2.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 120px 1rem 60px;
    }

    .thankyou-hero {
        padding: 120px 1rem 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}.cookies-privacy-content {


    max-width: 1200px;
  margin: 0 auto;
					padding: 2rem;
}

.cookies-privacy-content h2 {


    font-size: 2.5rem;
	color: #2c3e50;
     margin-bottom: 1.5rem;
	font-weight: 700;
}

.cookies-privacy-content p	{
   font-size: 1.1rem;
  color: #5a6c7d;
  line-height: 1.7;
    margin-bottom: 1.5rem;
}@media (max-width: 768px) {
    .cookies-privacy-content {
        padding: 1.5rem;
    }

    .cookies-privacy-content h2 {
        font-size: 2rem;
    }

    .cookies-privacy-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cookies-privacy-content {
        padding: 1rem;
    }

    .cookies-privacy-content h2 {
        font-size: 1.8rem;
    }
}