.footer {
  background-color: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #0d6efd;
  text-decoration: none;
  transform: translateX(5px);
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  color: #0d6efd !important;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-info i {
  color: #0d6efd;
  width: 20px;
  text-align: center;
}
/* Çerez bildirimi için ek CSS */
#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    border-radius: 0;
    margin: 0;
    max-width: 100%;
}

#cookieConsent a {
    color: #4da6ff;
    text-decoration: underline;
}

#cookieConsent .cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    #cookieConsent {
        flex-direction: column;
        text-align: center;
    }
    
    #cookieConsent .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    #cookieConsent .cookie-text {
        margin-bottom: 10px;
    }
}