/* Główne style dla stopki */
.footer {
  background-color: rgba(0, 123, 255, 0.1);
  color: #333333;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 5px;
}

.footer-logo p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007bff;
}

.footer-links {
  margin: 20px 0;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  text-decoration: none;
  color: #333333;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s ease;
  position: relative;
}

/* Stylizacja dropdown dla Specification */
.footer .dropdown {
  position: relative;
  display: inline-block;
  width: max-content;
}

.footer .dropdown-content {
  display: none;
  background-color: rgba(0, 123, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  width: max-content;
  margin-top: 10px;
}

.footer .dropdown:hover .dropdown-content,
.footer .dropdown:focus-within .dropdown-content {
  display: block;
}

/* Stylizacja linków w dropdownie */
.footer .dropdown-content a {
  display: block;
  padding: 8px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.footer .dropdown-content a:hover {
  background-color: #007bff;
  color: #ffffff;
}

.phone-icon-footer {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

.footer-bottom {
  font-size: 0.9rem;
  color: #666666;
  margin-top: 20px;
}

/* Responsywność */
@media (max-width: 768px) {
  .footer-links ul {
      flex-direction: column;
      gap: 15px;
  }

  .footer .dropdown-content {
      position: static;
      width: 100%;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
      height: 50px;
  }

  .footer-links ul {
      gap: 10px;
  }

  .footer-links a {
      font-size: 0.9rem;
  }

  .footer-bottom {
      font-size: 0.8rem;
  }
}
