.rmcFooter {
  background-color: #f4f5f7; /* Soft neutral */
  color: #2c2c2c;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border-top: 1px solid #dcdcdc;
}

.rmcFooterBrand {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.rmcFooterTagline {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.rmcFooterAddress a {
  text-decoration: none;
  color: #666;
  transition: color 0.3s ease;
}

.rmcFooterAddress a:hover {
  color: #000;
}

.footerLinks a {
  margin: 0 12px;
  color: #444;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footerLinks a:hover {
  color: #000;
}

.footerActions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footerBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background-color: #ff6b6b; /* Flat coral */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footerBtn:hover {
  background-color: #e85c5c;
  transform: scale(1.05);
}

.footerBtn i {
  margin-right: 8px;
}

.rmcSocialLinks .socialIcon {
  font-size: 1.2rem;
  color: #666;
  transition: color 0.3s ease;
}

.rmcSocialLinks .socialIcon:hover {
  color: #000;
}

.rmcCertifications .badge {
  font-size: 0.75rem;
  margin-right: 0.5rem;
}

copyright {
  font-size: 0.9rem;
  color: #666;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .footerLinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .footerActions {
    flex-direction: column;
    align-items: center;
  }
}