* {
      margin: 0;
	 padding: 0;
	 box-sizing: border-box;
}


html {

	 scroll-behavior: smooth;
     }

body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #2c3e50;
    background: #f8f9fa;
   line-height: 1.6;


}

.navigation-bar {
    background: #fff;
    padding  :   1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   position: sticky;
  top: 0;
   z-index: 1000;

}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
    justify-content:  space-between;
    align-items: center;
  padding: 0 2rem;


}

.nav-logo {


   flex-shrink: 0;
}

.logo-img {
   height: 45px;
          width: auto;


}

.nav-links {
    display: flex;
  list-style: none;
	gap: 2.5rem;
}

.nav-links a {
   text-decoration: none;
    color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color:     #3498db;
}

.burger-menu {
   display   : none;
  flex-direction: column;
  background: none;
         border: none;
    cursor: pointer;
   gap: 6px;
    padding: 0;
}

.burger-menu span {
   width: 25px;
  height: 3px;
          background  :#2c3e50;
   transition  :    all 0.3s ease;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
} 

.hero-section {
  display     : grid;
    grid-template-columns: 1fr 1fr;
  align-items: center;
   gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
      line-height:1.3;
    margin-bottom: 1rem;
	color: #1a252f;
}

.hero-content p {
   font-size: 1.1rem;
  color: #555;
   margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height:auto;
	border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);}

.cta-button {
   display: inline-block;
  background: #3498db;
    color: white;
   padding: 0.9rem 2rem;
  border-radius: 6px;
    text-decoration: none;
	font-weight:   600;
   transition: all 0.3s ease;
  border: 2px solid #3498db;
}

.cta-button:hover {
	background: transparent;
  color:        #3498db;
}

.services-preview{
  padding: 4rem 2rem;
  max-width: 1200px;
   margin: 0 auto;
}

.services-preview h2{
  font-size: 2rem;
  text-align: center;
   margin-bottom     :   3rem;
    color: #1a252f;
}

.services-grid    {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;

	    border-radius: 10px;

	  overflow: hidden;

	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

	    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover     {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-image  {
    width: 100%;
   height: 200px;
     overflow: hidden;
}

.service-image img		{
		 width: 100%; 
	   height: 100%; 
	    object-fit: cover;
}

.service-card h3 {
          font-size: 1.3rem;
   padding: 1.5rem 1.5rem 0.5rem;
  color: #1a252f;


}

.service-card p {
	padding: 0.5rem 1.5rem 1.5rem;
   color: #666;
  font-size: 0.95rem;


}

.expertise-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    color: white;
}

.expertise-section h2 {
    font-size: 2rem; 
	    text-align     : center; 
	   margin-bottom: 3rem;
}

.expertise-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap    :2rem;
    max-width: 1200px;
         margin: 0 auto;
}

.expertise-item {
   text-align: center;
} 

.expertise-icon {
   margin    :0 auto 1rem;
          justify-content: center;
  align-items: center;
  display: flex;
  width   :  60px;
    height: 60px;
}

.expertise-icon img  {
   width: 100%; 
	   height: 100%; 
	  filter: brightness(0) invert(1);
}

.expertise-item h3 {
  font-size: 1.2rem;
   margin-bottom: 0.8rem;
}

.expertise-item p {
      font-size: 0.95rem;

   line-height: 1.5;
}

.offers-section {
    padding: 4rem 2rem;
  max-width: 1200px;
	 margin :        0 auto;
}

.offers-section h2 {
  font-size: 2rem;
   text-align  : center;
   margin-bottom: 3rem;
    color: #1a252f;

}

.offers-container    {
               display   :      grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

   gap: 2rem;
}

.offer-item {
  background: white;
                    padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #3498db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.offer-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.offer-item h3 {

  font-size: 1.3rem;
		 margin-bottom: 1rem;
	   color: #1a252f;}

.offer-item p {
   color: #666;
   margin-bottom: 1.5rem;
}

.offer-features {

	         list-style: none; 

	}

.offer-features li {
	padding: 0.5rem 0;
   padding-left: 1.5rem;
               color: #555;
    position: relative;
}

.offer-features li:before {
  content: "✓";
   position    : absolute;
	 left: 0;
  color     : #3498db;
  font-weight   :    bold;

}

.cta-section {
    background: #2c3e50;
    color: white;
  padding: 3rem 2rem;
	text-align: center;
   margin: 2rem 0;
}

.cta-section h2 {

		margin-bottom: 1rem;
	 font-size: 2rem;
}

.cta-section p {
	font-size: 1.1rem;
  margin-bottom: 2rem;
	opacity: 0.95;
}

.cta-button-secondary {
	  display: inline-block;
   background:      white;
	color: #2c3e50;
  padding    : 0.9rem 2rem;
    border-radius     :6px;
   text-decoration: none;
  font-weight  :     600;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {


  background: #ecf0f1;
  transform: scale(1.05);}

.contact-section {
     padding: 4rem 2rem;
   max-width: 600px;
	 margin: 0 auto;
}

.contact-section h2 {
		font-size: 1.8rem;
  text-align: center;
	margin-bottom: 2rem;
   color  :       #1a252f;
}

.contact-form {
		 background: white;
  padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);


} 

.form-group
	{
	margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
    margin-bottom: 0.5rem;
	font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 0.8rem;
	 border: 1px solid #ddd;
    border-radius   :       6px;
	 font-family: inherit;
   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;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
  width: 100%;
	padding: 0.9rem;
	 background: #3498db;
   color: white;
  border: none;
   border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover  
  {
	background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer {
    background: #1a252f;
  color     :        white;
   padding: 3rem 2rem 1rem;
   margin-top: 3rem;
}

.footer-container {
    display: grid;
    grid-template-columns     :      200px 1fr;
   gap: 3rem;
   max-width: 1200px;
   margin: 0 auto;
   align-items  :      start;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
               margin-bottom: 1rem;
}

.footer-info {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap :      2rem;
}

.footer-section h4 {

   font-size: 1rem;
   margin-bottom: 1rem;
}

.footer-section ul  {
	list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    transition: color 0.3s ease;
  color: #bbb;
    text-decoration   :   none;
}

.footer-section ul a:hover {
  color: #3498db;
}

.footer-section p

{
  color: #bbb;
   font-size: 0.9rem;
  margin-bottom: 0.5rem;
    line-height :        1.6;
}

.footer-bottom {
   text-align: center;
  padding-top: 2rem;
	margin-top: 2rem;
    border-top: 1px solid #333;
    color:       #999;
    font-size: 0.85rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-container {
        grid-template-columns: 1fr;
    }

    .offers-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .services-preview h2,
    .expertise-section h2,
    .offers-section h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 4rem 2rem;
    text-align: center;
        min-height: 300px;
    display: flex;
               align-items: center;
  justify-content: center;
}

.services-hero-content h1 {
   font-size   :       2.3rem;
   margin-bottom: 1rem;
    line-height: 1.3;
}

.services-hero-content p {

	   font-size: 1.2rem;
   opacity: 0.95;
     }

.service-details {
   padding    :        4rem 2rem;
	max-width  :1200px;
  margin: 0 auto;
}

.service-detail-item {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
	margin-bottom: 5rem;
    padding: 2rem;
   background: white;
   border-radius     : 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-reverse {


    direction: rtl;

}

.service-detail-reverse > *     {
  direction: ltr;
}

.service-detail-image {
	  width: 100%;
   height: 100%;
   min-height   :      400px;
    overflow: hidden;
  border-radius: 8px;
}

.service-detail-image img		{
  width: 100%;

	   height: 100%;

	    object-fit: cover;

	    display: block;
}

.service-detail-content h2 {

				 margin-bottom:      1rem;
      font-size: 1.8rem;
      color    :       #1a252f;
	}

.service-detail-content p {
       margin-bottom: 1.5rem;
  color  :    #666;
    line-height: 1.7;
}

.service-detail-features {
  background     :       #f8f9fa;
    padding: 1.5rem;
  border-radius: 8px;
				 margin: 1.5rem 0;
}

.service-detail-features h3 {
    font-size: 1.1rem;
    color: #2c3e50;
   margin-bottom: 1rem;

}

.service-detail-features ul  
  {
   list-style   :   none;
   padding: 0;
}

.service-detail-features li {
   color: #555;
  padding-left  : 1.8rem;
  padding: 0.6rem 0;
   position: relative;
}

.service-detail-features li:before {
     content: "→";
    position :  absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
	}

.service-duration,
.service-group
{

   color :#2c3e50;
    font-size: 0.95rem;
   margin-top: 1rem;
     }

.service-packages {
    margin   :0 auto;
	    border-radius: 10px;
	     background: #f8f9fa;
	  max-width: 1200px;
	   padding: 4rem 2rem;
}  

.service-packages h2

{
   	font-size: 2rem;
               text-align: center;
   margin-bottom: 3rem;
   color: #1a252f;
}

.packages-grid {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	   gap: 2rem;
}

.package-card {
  background    :    white;
  padding: 2rem;
   border-radius: 10px;
   border-top: 4px solid #3498db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition   :      all 0.3s ease;
  display: flex;
    flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
  border-top: 4px solid #e74c3c;
  transform: scale(1.05);
}

.package-card h3   {
    font-size: 1.3rem;
   color: #1a252f;
  margin-bottom: 0.5rem;}

.package-card > p:first-of-type {
   color: #999;
    font-size:        0.95rem;
  margin-bottom: 1.5rem;
   flex-grow: 1;
}

.package-features {
    list-style: none;
   padding: 0;
  margin: 1.5rem 0;
}

.package-features li {
   padding: 0.5rem 0;
  padding-left: 1.5rem;
	position  : relative;
  color: #666;
	font-size: 0.9rem;
}

.package-features li:before {
  content: "✓";
    position: absolute;
   left:       0;
  color: #3498db;
   font-weight  :        bold;
}

.package-price {
  font-size: 1.2rem;
    font-weight: 600;
  color: #3498db;
   margin-top: auto;
  padding-top: 1rem;
    border-top: 1px solid #eee;
}

.methodology-section {
    padding: 4rem 2rem;
	max-width: 1200px;
    margin: 0 auto;
}

.methodology-section h2 {
   font-size: 2rem;
  text-align: center;
    margin-bottom: 3rem;
    color:     #1a252f;
}


.methodology-steps {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
}

.methodology-step		{


   text-align: center;
  padding: 2rem 1.5rem;
    background: white;
   border-radius    :        10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;}

.methodology-step:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.step-number {
    width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
 border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content: center;
   font-size: 1.5rem;
  font-weight     :  bold;
   margin: 0 auto 1rem;

}

.methodology-step h3 {
	 font-size: 1.1rem;
	 color:  #1a252f;
	 margin-bottom   : 0.8rem;
}

.methodology-step p {

    color: #666;
   font-size: 0.9rem;
  line-height: 1.6;
     }

.testimonials-section {
         padding: 4rem 2rem;
    max-width: 1200px;
   margin:     0 auto;
}

.testimonials-section h2 {
               font-size: 2rem;

	text-align: center;

    margin-bottom  :        3rem;

	color: #1a252f;
}

.testimonials-grid     {
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem; 
	
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
   padding: 2rem;
   border-radius: 10px;
    border-left: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);


}

.testimonial-text {
   font-size: 1rem;
   color:      #2c3e50;
	line-height: 1.8;
    margin-bottom: 1rem;
  font-style:   italic;
}

.testimonial-author {
  color: #999;

	   font-size: 0.85rem;

	    font-weight   : 600;
}

.thank-you-section {
	 padding: 4rem 2rem;
  min-height: calc(100vh - 250px);
  display: flex;
    align-items: center;
   justify-content: center;
}

.thank-you-container {
    max-width   :    700px;
   text-align: center;
  background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
  overflow: hidden;
	}

.thank-you-icon {
   width: 80px;
   height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
   border-radius: 50%;
  display: flex;
   align-items   :        center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.thank-you-icon img {
	 width: 50px;
   height: 50px;
  filter: brightness(0) invert(1);
}

.thank-you-section h1 {

  font-size: 2rem;
   color: #1a252f;
   margin-bottom: 0.5rem;


}

.thank-you-subtitle  {
  font-size  :     1.1rem;
    color: #2ecc71;
   margin-bottom: 2rem;
    font-weight: 600;

}

.thank-you-content {
    text-align: left;
}

.thank-you-content > p:first-of-type {
	 color: #666;
   font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
	
}

.confirmation-box {
  background: #f8f9fa;
	padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left  :  4px solid #3498db;
}

.confirmation-box h2 {
  font-size: 1.2rem;
    color :       #1a252f;
    margin-bottom: 1.5rem;
}

.confirmation-steps {
	 list-style: none;
   padding: 0;
   counter-reset: steps;
}

.confirmation-steps li  
  {
   padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
   counter-increment   :  steps;
  padding-left: 2rem;
   position: relative;
	
}

.confirmation-steps li:last-child {
   border-bottom: none;
}

.confirmation-steps li:before {

	  content: counter(steps);
    position: absolute;
  left: 0;
   width: 24px;
   height: 24px;
   background: #3498db;
   color: white;
  border-radius: 50%;
   display: flex;
	align-items: center;
   justify-content: center;
   font-size: 0.8rem;
    font-weight: bold;}

.confirmation-steps strong {
   color: #1a252f;
}

.confirmation-steps span {

	  color: #666;
  display: block;
   font-size: 0.9rem;
	}

.info-box {


  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
   padding: 1.5rem;
   border-radius: 8px;
    margin-bottom: 2rem;


}

.info-box h3 {
          font-size: 1.1rem;
  color: #1a252f;
    margin-bottom: 0.5rem;
}

.info-box p {
  color: #666;
   font-size: 0.95rem;
         line-height: 1.6;
}



.quick-links {
  margin-bottom     :       2rem;
}

.quick-links h3 {
	    font-size: 1.1rem;
   color: #1a252f;
   margin-bottom    :        1rem;


}

.links-grid {
  display    :  grid;
    grid-template-columns: 1fr 1fr;
  gap: 1rem;
	}

.link-button {
  background: #3498db;
   display: inline-block;
   border-radius: 6px;
	color: white;
  padding   :       0.9rem 1.5rem;
	font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
	
}

.link-button:hover {
	background: #2980b9;
  transform: translateY(-2px);
}

.contact-info-box {

	  background: #fff3cd;
    padding: 1.5rem;
   border-radius: 8px;
  border-left: 4px solid #f39c12;
}

.contact-info-box h3 {
  color: #1a252f;
    margin-bottom  :       0.8rem;
	 font-size: 1rem;
}

.contact-info-box p{
      color: #666;
    font-size: 0.9rem;
   margin: 0.5rem 0;


}

.direct-contact {
   font-size: 1rem !important;
}

.celebration-animation {
    top: 0;
   left: 0;
    overflow: hidden;
  height: 100%;
   position    :absolute;
   pointer-events: none;
  width: 100%;
}

.confetti {

	   position: absolute;
    width: 10px;
	 height: 10px;
   background:     #3498db;
   animation: confetti-fall 3s linear forwards;}@keyframes confetti-fall {
    to {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-detail-reverse {
        direction: ltr;
    }

    .service-detail-image {
        min-height: 250px;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .thank-you-container {
        padding: 2rem 1.5rem;
    }

    .thank-you-section h1 {
        font-size: 1.5rem;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }
}.policy-section {
  padding: 4rem 2rem;
  background     :       #f8f9fa;
  min-height: calc(100vh - 250px);
}  

.policy-container {
  max-width: 850px;

    margin: 0 auto;

    text-align: left;

      background: white;

   padding: 3rem;

    border-radius  :10px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 

}

.policy-container h1 {
  font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 2rem;
    font-weight    :        700;
      line-height  :    1.3; 

}

.policy-container h2

{
   font-size: 1.6rem;
	 color: #2c3e50;
   margin-top: 2rem;
      margin-bottom: 1rem;
    font-weight: 600;
    border-bottom :     2px solid #3498db;
		padding-bottom :    0.5rem;
}

.policy-content h2:first-child
	{
   margin-top: 0;
}

.policy-container p {
   color     :#555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
  font-size: 0.95rem;

}

.cookies-list {
    list-style: none;
        padding   :     0;
      margin: 1.5rem 0;
}

.cookies-list li {
    padding: 1rem;
               margin-bottom: 1rem;
    background: #f8f9fa;
  border-left: 4px solid #3498db;
  border-radius: 4px;
  color: #555;
    line-height: 1.7; 
	
}

.cookies-list strong {
   color: #1a252f;
}

.policy-footer {
    margin-top: 3rem;
	padding-top   :  2rem;
    border-top: 1px solid #e0e0e0;
			color: #999;
   font-size: 0.85rem;
   text-align: center;
}@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .policy-container h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .cookies-list li {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1rem;
    }

    .policy-container {
        padding: 1.5rem;
    }

    .policy-container h1 {
        font-size: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
    }

    .policy-container p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}