.main-footer {
  background: #fff;
  padding: 20px 0 10px 0;
  border-top: 1px solid #eee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 160px;
  margin-bottom: 16px;
}

.footer-section h4 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 12px;
  color: #764ba2;
}

.footer-section button {
  background: none;
  border: none;
  color: #333;
  font-size: 1em;
  text-align: left;
  margin: 2px 0;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.footer-section button:hover {
  color: #764ba2;
  text-decoration: underline;
}

.footer-section div {
  margin: 2px 0;
  color: #555;
  font-size: 0.98em;
}

/* Styles pour les éléments cliquables de contact */
.contact-item.clickable {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 4px 0;
  border: 1px solid transparent;
  background: rgba(118, 75, 162, 0.05);
}

.contact-item.clickable:hover {
  background: rgba(118, 75, 162, 0.1);
  border-color: rgba(118, 75, 162, 0.2);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(118, 75, 162, 0.15);
}

.contact-item.clickable:active {
  transform: scale(0.98);
}

@media (max-width: 900px) {
  .footer-sections {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .footer-section {
    min-width: 0;
    margin-bottom: 24px;
  }
}

.footer-nocopyright {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  color: #888;
  font-size: 0.98em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-section {
    background: linear-gradient(90deg, #f5f2fa 0%, #e0e7ff 100%);
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(120, 80, 180, 0.08);
    padding: 24px 18px;
    margin-bottom: 18px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
}

.newsletter-input {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #c3b6e6;
    font-size: 1em;
    width: 220px;
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(90deg, #b63cab 0%, #667eea 100%);
    color: #764ba2;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-btn:hover {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    padding: 8px 12px;
    color: white;
}

.social-icon.one {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin: 2px;
}

.social-icon.one:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
    background: rgba(118, 75, 162, 0.1);
    color: #764ba2;
}

.social-links-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

/* Animation pour les notifications */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}