* {


  margin: 0;
    padding: 0;
  box-sizing: border-box;
     }

body		{


   line-height: 1.6;
  font-family: 'Arial', sans-serif;
  color :   #333;
	}

.container {
   max-width: 1200px;

   margin  :       0 auto;

    padding: 0 20px;

}

.main-header {
    background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
   width: 100%;
   top: 0;
   z-index: 1000;
}

.nav-container {
   display: flex;
       justify-content: space-between;
   align-items: center;
  padding: 1rem 2rem;
    max-width :       1200px;
          margin: 0 auto;
}

.logo-img{
  height :        45px;
     width: auto;
}  

.nav-links {
    display: flex;
  gap: 2rem;
}

.nav-link {
    text-decoration: none;
   color: #333;
    font-weight: 500;
          transition: color 0.3s ease;
}

.nav-link:hover {
   color  :     #4f46e5;


}

.burger-menu {
          flex-direction: column;
  gap: 4px;
    cursor: pointer;
  display: none;
}

.burger-line {

	   width: 25px;
  height: 3px;
  background: #333;
   transition: 0.3s;
     }

.hero-section {
	 margin-top: 80px;
          padding     : 80px 20px;
    display: grid;
  grid-template-columns :     1fr 1fr;
      gap: 3rem;
    max-width: 1200px;
  margin-left: auto;
		 margin-right: auto;
    align-items   :       center;
}

.hero-title {
    font-size    : 3.2rem;
   font-weight: 700;
  line-height: 1.2;
    margin-bottom: 1.5rem;
  color: #1e293b;
}

.hero-description {
  font-size: 1.2rem;
   color   :  #64748b;
    margin-bottom: 2rem;
   line-height    :     1.7;
}

.hero-buttons {
   display: flex;
   gap: 1rem;
    flex-wrap: wrap;
}

.btn	{
    padding     :      14px 28px;
   border: none;
  border-radius: 8px;
  text-decoration   :        none;
   font-weight:600;
    transition: all 0.3s ease;
	 display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background: #4f46e5;
  color: white;


}

.btn-primary:hover {
	    background: #3730a3;
  transform: translateY(-2px);


}

.btn-secondary {
  background: transparent;
  color: #4f46e5;
  border  :  2px solid #4f46e5;
}

.btn-secondary:hover {
    background: #4f46e5;
   color: white;
}

.hero-image img

{
      width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.intro-section {
 background: #f8fafc;
    padding: 80px 20px;
}

.intro-section h2 {
  font-size: 2.5rem;
  text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

.intro-section p {
                    font-size: 1.1rem;
   text-align: center;
               max-width: 800px;
    margin: 0 auto 3rem;
   color :       #64748b;
   line-height: 1.8; 

}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap    :       2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
    padding: 2rem;
   background: white;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-item h3 {
   color: #4f46e5;
    font-weight: 700;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
   color: #64748b;
    font-size    :1rem;
	 margin: 0; 
	
}

.services-section {
    padding: 80px 20px;
}

.services-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b; 
	
}


.services-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem; 
	
}

.service-card {
    background: white; 
	  border-radius: 16px; 
		overflow: hidden; 
	  box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
	  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img  {
      width: 100%;
  height: 220px;
   object-fit: cover;
}

.service-card h3 {
   font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1e293b;
}

.service-card p {
   padding: 0 1.5rem;
       color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card ul {


    padding: 0 1.5rem 1.5rem;
	list-style: none;

}

.service-card li {
    padding: 0.3rem 0;
  color: #64748b;
  position: relative;
	padding-left: 1.2rem;
}

.service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
   color: #4f46e5;
    font-weight   :        bold;
}

.cta-section {
  background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: white;
    padding: 80px 20px;
  text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom  :       1rem;
}

.cta-content p {
   font-size  :     1.2rem; 
  margin-bottom: 3rem; 
  opacity: 0.9; 
  max-width: 600px; 
          margin-left:      auto; 
    margin-right: auto;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
   margin-bottom: 3rem;
}

.benefit-item {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
	border-radius     :      12px;
  backdrop-filter: blur(10px);
}

.benefit-item h4 {
	 font-size: 1.2rem;
   margin-bottom: 0.5rem;
}

.benefit-item p {
    opacity: 0.8;
        margin  :      0;
   font-size: 0.95rem;
}

.btn-cta {
   background: white;
  color: #4f46e5;
   padding: 16px 32px;
     font-size: 1.1rem; 
	
}

.btn-cta:hover {
    background: #f8fafc;
  transform: translateY(-2px);
}

.contact-section {
  padding     :        80px 20px;
       background: #f8fafc;
}

.contact-section h2 {
    font-size: 2.5rem; 
	  text-align: center; 
	    margin-bottom: 1rem; 
	   color: #1e293b;
}

.contact-section > p {
   text-align: center;
   max-width: 600px;
   margin-bottom: 3rem;
    margin-left: auto;
  margin-right: auto;
   color: #64748b;
	
}

.contact-form {
      max-width: 800px;
  margin: 0 auto;
   background: white;
    padding: 3rem;
	border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
 grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 12px 16px;
    border: 2px solid #e5e7eb;
    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: #4f46e5;
}

.form-group textarea {
   resize: vertical; 
	   min-height: 120px;
}

.btn-submit {
  background: #4f46e5;
  color: white;
    width: 100%;
    padding: 16px;
   font-size: 1.1rem;
		border: none;
          border-radius: 8px;
    cursor: pointer;
   transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #3730a3;
  transform: translateY(-2px); 

}

.main-footer {
  background: #1e293b;
   color  :   white;
   padding:       3rem 0 1rem;
}

.footer-content {


  max-width    :   1200px;
   margin: 0 auto;
    padding: 0 20px;
   display   : grid;
   grid-template-columns: 2fr 1fr 1fr;
   gap     :  3rem;
}

.footer-logo img {
	 height : 40px;
  margin-bottom:        1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
	color: #94a3b8;
}

.footer-section h4 {
   margin-bottom: 1rem;
   color :     white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
   margin-bottom: 0.5rem;
}

.footer-links a {
   color: #94a3b8;
   	 text-decoration: none;
   	 transition:  color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
   text-align: center;
   border-top: 1px solid #334155;
   margin-top: 2rem;
               padding-top: 1rem;
	color: #94a3b8;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}.nav-link.active {
    color: #4f46e5;
   font-weight: 600;
}

.about-hero {
   margin-top: 80px;
   padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-hero .container {
   max-width: 1200px;
    margin   :    0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-hero h1 {
	font-size: 3rem;
       color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero p {
  color: #64748b;
   font-size   :       1.2rem;
    line-height: 1.7;
}

.about-hero-image img {
    width: 100%;
    height: auto;
   border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-section {
  padding: 80px 20px;
  background: white;
}

.story-section h2 {


    font-size: 2.5rem;
    text-align: center;
   margin-bottom :     3rem;
    color: #1e293b;}

.story-content {
    max-width: 1200px;
   margin: 0 auto;
  display   :     grid;
   grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.story-text p {

   font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
  margin-bottom: 1.5rem;
}

.story-highlights {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
}

.highlight-item {
    padding: 1.5rem;
    border-radius: 12px;
  border: 2px solid #e2e8f0;
  text-align: center;
   background: #f8fafc;
}

.highlight-item h3 {
   font-size   :        2rem;
  color: #4f46e5;
        margin-bottom: 0.5rem;
  font-weight: 700;
}

.highlight-item p {
   color: #64748b;
  font-size: 0.9rem;
    margin: 0;
}

.team-section {
    padding: 80px 20px;
  background: #f8fafc;
}

.team-section h2 {
	   font-size    :   2.5rem;
  text-align: center;
   margin-bottom: 3rem;
    color: #1e293b;
     }

.team-grid {
       max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.team-member {
   background: white;
     border-radius: 16px;
	 overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
               transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo img {
   width: 100%;
    height: 250px;
	object-fit: cover;


}

.member-info    {

   padding: 1.5rem;
     }


.member-info h3 {
    font-size: 1.4rem;
  color: #1e293b;
  margin-bottom: 0.3rem;
}

.member-role {
  color: #4f46e5;
   font-weight: 600;
  margin-bottom: 1rem;
   font-size    :   1rem;
}

.member-description {
    color:  #64748b;
   line-height: 1.6;
   margin-bottom: 1rem;
    font-size: 0.95rem;
} 

.member-expertise {
   display: flex;
   flex-wrap     :  wrap;
  gap: 0.5rem; 

}

.member-expertise span {
  background: #e0e7ff;
  color: #4f46e5;
  padding: 0.3rem 0.8rem;
	border-radius: 20px;
    font-size: 0.8rem;
   font-weight: 500;
}

.approach-section {

   padding: 80px 20px;

	   background: white;


}

.approach-section h2 {
  font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
    color: #1e293b;

}

.approach-content {


  max-width: 1000px;

	    margin :      0 auto;
     }


.approach-text h3   {
    font-size  :       1.8rem;
  color: #1e293b;
   margin-bottom: 1rem;
   text-align: center;
}

.approach-text p{
        font-size: 1.1rem;
  color: #64748b;
    line-height: 1.7;
  text-align: center;
    margin-bottom: 3rem;
}

.framework-steps {
		display: flex;
    flex-direction: column;
 gap: 1.5rem;
}

.step-item {
    display: flex; 
	   align-items: flex-start; 
	   gap: 1.5rem; 
	    padding: 1.5rem; 
	 background: #f8fafc; 
	    border-radius: 12px; 
	  border-left: 4px solid #4f46e5;
}

.step-number {
	   background: #4f46e5;
  color: white;
   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: #1e293b;

	  margin-bottom: 0.5rem;

	         font-size: 1.1rem;
}

.step-content p {
  color: #64748b;
   margin: 0;
    line-height: 1.6;
}

.values-section {
   padding: 80px 20px;
  background: #f8fafc;
}


.values-section h2 {
   color: #1e293b;
    font-size    :       2.5rem;
   margin-bottom: 3rem;
   text-align: center;
}

.values-grid {
  max-width     :        1200px; 
    margin    :      0 auto; 
   display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem;}

.value-card {
  background: white;
    padding: 2rem;
    border-radius: 12px;
   text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.value-card h3 {
    color: #1e293b;
   margin-bottom: 1rem;
   font-size: 1.3rem;
}

.value-card p {
   color: #64748b;
    line-height:    1.6;
    margin: 0;
}

.credentials-section {
    padding     :     80px 20px;
   background: white;
}

.credentials-section h2 {
   font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
   color: #1e293b;
}

.credentials-content {
    max-width: 1000px;
  margin: 0 auto;
}

.credentials-grid {
  display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.credential-item {
   padding: 1.5rem;
  border: 2px solid #e2e8f0;
    border-radius: 12px;
   background  :       #f8fafc;
}



.credential-item h4 {
    color: #1e293b;
	margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.credential-item p {
  color: #64748b;
    line-height: 1.6;
    margin: 0;
   font-size: 0.95rem;
}

.thankyou-hero {
  margin-top: 80px;
          padding: 80px 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	min-height: 70vh;
  display: flex;
    align-items: center;
}  

.thankyou-content     {
          max-width: 800px;
                  margin: 0 auto;
       text-align: center;
}

.success-icon  {
  margin-bottom    :    2rem;
}

.checkmark-circle
	{
   width: 80px;
  height: 80px;
   border-radius:       50%;
    background: #22c55e;
     display: flex;
                    align-items: center;
   justify-content: center;
    margin: 0 auto;
   animation  :   pulse 2s infinite; 

} 

.checkmark {
    width: 30px;
   height  :    15px;
  border     :   3px solid white;
  border-top: none;
   border-right: none;
  transform: rotate(-45deg);
   margin-top: -5px;

}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-content h1 {
	         font-size     :        2.8rem;
   color: #1e293b;
    margin-bottom: 1rem;
       font-weight: 700;
}

.thankyou-subtitle{
  font-size: 1.2rem;
  color: #64748b;
   margin-bottom     :3rem;
   line-height: 1.6;
}

.next-steps {
   margin-bottom: 3rem;
}

.next-steps h2 {
   font-size: 2rem;
    color     :      #1e293b;
    margin-bottom: 2rem;
}

.steps-grid
	{
   display     :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap :1.5rem;
  margin-bottom     :    2rem;


}

.step-card {
   background  :white;
    padding:      1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	text-align: center;
}

.step-icon {
    width: 50px;
	height: 50px;
	background: #4f46e5;
   color:        white;
    border-radius:      50%;
    display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   font-weight: 600;
  margin: 0 auto 1rem;
}

.step-card h3{


    color :     #1e293b;
               margin-bottom: 0.8rem;
   font-size: 1.1rem;


}

.step-card p {
    font-size: 0.9rem;
    margin: 0;
  color: #64748b;
   line-height   : 1.6;



}

.additional-info {
    margin-bottom: 3rem;
}

.additional-info h2 {
  font-size: 1.8rem;
   color: #1e293b;
   margin-bottom: 1.5rem;
}

.info-cards {
  display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-card  {


   background: white;
    padding  :1.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
   text-align: left; 



}

.info-card h3 {
    color    :    #1e293b;
  margin-bottom: 0.8rem;
    font-size  :  1.1rem;
}

.info-card p {
   margin: 0;

	  color: #64748b;

	          line-height: 1.6;
}

.contact-reminder {
  background: white;
  padding   :     2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
       margin-bottom: 3rem;
}  

.contact-reminder h3 {
	color: #1e293b;
  margin-bottom: 0.8rem;
     font-size: 1.3rem;
}

.phone-link {
 display: block;
  margin: 1rem 0;
	text-decoration     : none;
    font-size: 1.5rem;
   color  :    #4f46e5;
    font-weight: 600;

}

.phone-link:hover {
   color: #3730a3;
}

.contact-hours {
  color: #64748b; 
	    font-size: 0.9rem; 
		margin: 0;


}

.return-buttons {

  display: flex;
   gap: 1rem;
   justify-content: center;
    flex-wrap :      wrap;

}

.testimonial-preview {
  padding: 80px 20px;
  background: #f8fafc;
}

.testimonial-preview h2 {
    font-size: 2.5rem;
    text-align: center;
   margin-bottom: 3rem;
   color     :      #1e293b;
}

.testimonials-grid {
   max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
}

.testimonial-card {
    background:     white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-card p {
   color: #64748b;
   line-height: 1.6;
                    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
   color: #1e293b;
  display: block;
   margin-bottom: 0.3rem;
}

.testimonial-author span {
   color: #64748b;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-steps {
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .return-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.6rem;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
    
    .checkmark {
        width: 20px;
        height: 10px;
    }
}.cookies-hero,
.privacy-hero {
    margin-top: 80px;
    padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
} 

.cookies-hero .container,
.privacy-hero .container {
  max-width: 1000px;
         margin: 0 auto;
  text-align: center;
}

.cookies-hero h1,
.privacy-hero h1{
   font-size: 2.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
   font-weight   : 700;
}

.cookies-hero p,
.privacy-hero p {

	font-size: 1.2rem;
    color   :     #64748b;
    line-height: 1.6;
   max-width: 800px;
         margin: 0 auto;
}

.cookies-section,
.privacy-section {
          padding: 80px 20px;
      background   :     white;
}

.cookies-section h2,
.privacy-section h2 {
  font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookies-section p,
.privacy-section p {
       font-size: 1.1rem;
    color  :     #64748b;
				 line-height: 1.7;
      margin-bottom: 1.5rem;
}

.cookies-section ul,
.privacy-section ul {
  list-style :    none;
  padding: 0 1.5rem 1.5rem;
}

.cookies-section li,
.privacy-section li {
  position: relative;
  color: #64748b;
   padding-left: 1.5rem;
  padding: 0.5rem 0;

}

.cookies-section li:before,
.privacy-section li:before {
  content: "✓";
	 position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold; 

}@media (max-width: 768px) {
    .cookies-hero h1,
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .cookies-section h2,
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cookies-hero h1,
    .privacy-hero h1 {
        font-size: 1.6rem;
    }

    .cookies-hero p,
    .privacy-hero p {
        font-size: 1rem;
    }
}