footer
{

  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 60px 0 30px;
  margin-top: 0;
    position :       relative;
   overflow: hidden;
}

footer::before {
  content: '';
    position: absolute;
    top     :0;
    left: 0;
	 right: 0;
    height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #ff6b6b 100%);


}

.footer-container {
	max-width:1200px;
   margin: 0 auto;
    padding: 0 20px;
	}

.footer-content {


  display: grid;
	grid-template-columns: 2fr 1fr 1fr;
   gap: 50px;
	margin-bottom: 40px;}

.footer-section h3 {
    color: #ecf0f1;
   font-size: 1.3rem;
    margin-bottom     :  20px;
    font-weight: bold;
   position:  relative;
}

.footer-section h3::after {


  content: '';
   position: absolute;
       bottom: -8px;
   left: 0;
				 width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #ff6b6b);
          border-radius: 2px;}

.footer-about {
	padding-right: 20px;
}

.footer-about .logo {
   margin-bottom: 20px;
   align-items: center;
    display: flex;
	
}

.footer-about .logo img {
   height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-about p {
  line-height: 1.7;
     color: #bdc3c7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;

}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
  text-decoration: none;
    transition: all 0.3s ease;
   font-size: 0.95rem;
                    display   : block;
   padding: 5px 0;
}

.footer-links a:hover {
    color: #667eea;
   padding-left: 10px;
  text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.footer-contact p {
  margin-bottom: 15px;
   color: #bdc3c7;
    font-size: 0.95rem;
  line-height:       1.6;
}

.footer-contact strong {
       color: #ecf0f1;
  display: block;
    margin-bottom: 5px;
	}

.footer-contact a {
	 color: #667eea;
  text-decoration :        none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
   color: #ff6b6b;
  text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 30px;
   display   :       flex;
    justify-content: space-between;
	align-items: center;
    flex-wrap: wrap; 
	
}

.footer-bottom-left {
    color: #95a5a6;
    font-size   : 0.9rem;
}

.footer-bottom-right {
    display: flex;
	gap: 30px;
}

.footer-bottom-right a {
   color: #95a5a6;
    text-decoration     :        none;
    font-size: 0.9rem;
         transition     :     color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #667eea;
}@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: span 1;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-right {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 15px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.footer-section {
	animation: fadeInUp 0.6s ease forwards;
}



.footer-section:nth-child(2) {
       animation-delay: 0.1s;}

.footer-section:nth-child(3) {
  animation-delay: 0.2s;
}

.footer-links a,
.footer-contact a {
    position: relative;
  overflow: hidden;
}


.footer-links a::before {
	  content: '';

	   position: absolute;

	    top: 0;

	    left  : -100%;

	    width :     100%;

	  height: 100%;

	  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);

	  transition: left 0.5s ease;
} 

.footer-links a:hover::before {
   left: 100%;
}

.cookies-policy,
.privacy-policy {
	 background-color: #f8f9fa;
  padding: 60px 0;
}

.cookies-policy .container,
.privacy-policy .container {
   max-width: 1200px;
    margin: 0 auto;
	 padding     :   0 20px;
}

.cookies-policy h1,
.privacy-policy h1 {
  font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 30px;
  text-align  :        center;


}  

.cookies-policy h2,
.privacy-policy h2 {
       font-size: 1.8rem;
    color: #34495e;
    margin: 25px 0 15px;}

.cookies-policy p,
.privacy-policy p {
   line-height: 1.7;
  color: #7f8c8d;
    font-size     :       1rem;
  margin-bottom:     15px;
} 

.cookies-policy ul,
.privacy-policy ul {
   list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.cookies-policy ul li,
.privacy-policy ul li 
 {
   margin-bottom: 10px;
  color: #7f8c8d;
  font-size: 1rem;


}@media (max-width: 768px) {
    .cookies-policy,
    .privacy-policy {
        padding: 40px 0;
    }

    .cookies-policy h1,
    .privacy-policy h1 {
        font-size: 2rem;
    }

    .cookies-policy h2,
    .privacy-policy h2 {
        font-size: 1.5rem;
    }
}